Merge branch 'master' of https://git.gnus.org/gnus
[gnus] / lisp / ChangeLog
1 2010-09-21  Julien Danjou  <julien@danjou.info>
2
3         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
4         (gnus-html-cache-expired): Add new function.
5         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
6         wethever we should display image for fetch it.
7         Compute alt-text earlier to pass it to the fetching function too.
8         (gnus-html-schedule-image-fetching): Change function argument to only
9         get one image at a time, not a list.
10         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
11         cache.
12         (gnus-html-get-image-data): New function to retrieve image data from
13         cache.
14         (gnus-html-put-image): Change buffer argument to use image data rather
15         than file, and place image above region rather than inserting a new
16         one. Do not take alt-text as argument, since it's useless now: we place
17         the image above alt-text.
18         (gnus-html-prune-cache): Remove.
19         (gnus-html-show-images): Start to fetch image when we find one, do not
20         push into a temporary list.
21         (gnus-html-prefetch-images): Only fetch image if they have expired.
22         (gnus-html-browse-image): Fix, use 'gnus-image-url.
23         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
24
25 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
26
27         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
28
29 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
30
31         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
32         spec inser "*" if the group isn't active instead of 0.
33
34         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
35         opening the server.
36         (nnimap-request-delete-group): Implement group deletion.
37         (nnimap-transform-headers): Return the size of the entire message in
38         the Bytes header, not just the size of the first part.
39         (nnimap-request-move-article): When moving an article from nnimap,
40         request the article first so the accepting form has an article to
41         accept.  Reported by Dan Christensen.
42         (nnimap-command): Make sure that the error message doesn't error out.
43
44 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
45
46         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
47         we haven't requested anything.
48
49 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
50
51         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
52         "".  Fix found by Andrew Cohen.
53
54         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
55         instead of -encode-string.
56
57 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
58
59         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
60
61         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
62         by mm-subst-char-in-string.
63
64 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
65
66         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
67         waiting for the connection string.
68
69         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
70         arriving.
71
72         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
73         bogus characters.  This allows selecting certain Gmail groups.
74
75         * nnimap.el (nnimap-find-wanted-parts-1): New function.
76         (nnimap-fetch-partial-articles): New variable.
77         (nnimap-open-connection): When looking for credentials, also use the
78         nnimap-server-port.
79         (nnimap-request-article): Return the group/article number, so that Gnus
80         `^' works as expected.
81         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants
82         them.
83
84         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
85         comments.
86         (gnus-methods-sloppily-equal): New function.
87         (gnus): When using the development version of Gnus, load the gnus-load
88         file.
89
90         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
91         `gnus-open-server' on each method before trying to scan them etc.  This
92         ensures that all the backend parameters are set correctly.
93
94         * nnimap.el (nnimap-authenticator): New variable.
95         (nnimap-open-connection): Allow anonymous login.
96         (nnimap-transform-headers): The chars header is called Chars not
97         Bytes.
98         (nnimap-wait-for-response): Don't infloop if the IMAP connection
99         drops.
100
101         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
102         patch, found by Knut Anders Hatlen.
103
104 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
105
106         * gnus-agent.el (gnus-agent-batch-confirmation)
107         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
108         to gnus-message.
109         * gnus-art.el (gnus-article-describe-briefly): Likewise.
110         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
111         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
112         * gnus-int.el (gnus-open-server): Likewise.
113         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
114         (gnus-score-check-syntax): Likewise.
115         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
116         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
117         Likewise.
118         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
119
120 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
121
122         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
123         calling conventions so that prefetch doesn't bug out.
124
125 2010-09-19  Julien Danjou  <julien@danjou.info>
126
127         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
128         rather than `subst-char-in-region' in order to be able to replace ASCII
129         char by UTF-8 ones.
130
131         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
132         than curl.
133         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
134         the right URL and ALT text on images.
135         (gnus-html-wash-tags): Fix tag case.
136         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
137         (gnus-article-html): Add -o display_ins_del=2 option.
138         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
139
140 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
141
142         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
143         the extra mail headers, which sometimes seem to happen for unknown
144         reasons.
145
146         * mail-parse.el (mail-header-encode-parameter): Define as
147         rfc2045-encode-string instead of as rfc2231-encode-string, since some
148         (or most, perhaps?) mail readers don't understand the latter, but do
149         understand the former.
150
151         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
152         to nil, so that no methods are automatically agentized.  I think this
153         is probably what most users want.
154
155         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
156         from url-retrieve, for instance about invalid URLs.
157
158         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
159         groups that have no articles.
160         (nnimap-request-article): Check that we really got an article when we
161         requested one.
162
163         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
164         doesn't exist.
165
166         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
167         nntp buffer so the agent can save it.
168         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
169         that CRLF doesn't get translated to \n.
170         (nnimap-open-connection): Don't make 'shell commands only send \n.
171
172 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
173
174         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
175         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
176         Update var name.
177         (nnml-generate-nov-file): Use dolist.
178         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
179         Use with-current-buffer.
180
181 2010-09-18  Julien Danjou  <julien@danjou.info>
182
183         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
184         parallel.
185
186 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
187
188         * nnimap.el (nnimap-update-info): When doing partial marks update, get
189         the range update right.
190         (nnimap-request-group): Don't make `M-g' bug out on group with no
191         marks.
192         (nnoo): Required, so that other packages can require nnimap.
193         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
194         command we're looking for.  This helps when the server sends more
195         responses after we've gotten everything we expected.
196         (nnimap): Add a `newlinep' field to keep track of end-of-line
197         conventions.
198         Don't send CRLF to things that don't want it.
199         (nnimap-request-accept-article): Ditto.
200
201 2010-09-18  Julien Danjou  <julien@danjou.info>
202
203         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
204         than curl to retrieve images.
205
206 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
207
208         * nnimap.el (nnimap-update-info): Extend the info so that we can set
209         the marks.
210         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
211         (nnimap-wait-for-connection): New function.
212         (nnimap-open-connection): If we have PREAUTH, don't query for login
213         credentials.
214         (nnimap-update-info): Fix off-by-one error when concatenating ranges
215         when doing a partial update.
216
217 2010-09-18  Julien Danjou  <julien@danjou.info>
218
219         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
220         tags.
221
222 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
223
224         * nnimap.el (nnimap-credentials): New function.
225         (nnimap-open-connection): Use the new function to look for credentials
226         also on the numeric equivalents of "imap" and "imaps".
227
228         * gnus-start.el (gnus-activate-group): Send the info to
229         gnus-request-group.
230
231         * nnimap.el (nnimap-request-group): Have the "check" version of the
232         function parse flags and update the info, so that a `M-g' get a total
233         resync of all flags from the group.
234
235         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
236         to allow backends to alter the info on group selection.  Also alter all
237         the backend -request-group functions to take the parameter.
238
239         * nnimap.el (nnimap-store-info): New function.
240         (nnimap-update-info): Store the info for later usage.
241         (nnimap-request-group): Use the stored info for the dont-check case, so
242         that we don't retrieve all marks when we enter a group.
243
244         * nnimap.el: Use deffoo instead of defun for interface functions.
245
246         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
247         update the group info.  This makes the nndraft groups, for instance, go
248         back to their old behaviour.
249
250         * gnus-sum.el (gnus-select-newsgroup): Indent.
251
252         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
253         in.
254         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
255         nothing.
256
257         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
258         from methods that are denied.
259
260         * gnus-int.el (gnus-method-denied-p): New function.
261
262         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
263         store the password instead of netrc.
264         (nnimap-open-connection): Don't error out when we can't make a
265         connections.
266
267         * auth-source.el (auth-source-create): In the password prompt, say what
268         we're querying for.  Also prompt for user name if that hasn't been
269         given.
270
271         * nnimap.el (nnimap-with-process-buffer): Removed.
272
273 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
274
275         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
276         method when we're reading from the agent.
277
278         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
279
280         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
281         that's probably most useful for users.
282
283         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
284         "failed" all the time.
285
286         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
287         ...)) with (with-current-buffer ... ).
288
289         * nntp.el (nntp-open-server): Return whether the open was successful or
290         not.
291
292         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
293         select an unread unseen article first.
294
295         * nnimap.el (nnimap-open-connection): If the user doesn't have a
296         /etc/services, supply some sensible port defaults.
297
298         * dgnushack.el: Define netrc-credentials.
299
300 2010-09-17  Julien Danjou  <julien@danjou.info>
301
302         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
303
304 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
305
306         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
307         doesn't have any parameters.
308
309 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
310
311         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
312         only upcased checks.
313
314         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
315
316         * nnimap.el (nnimap-open-shell-stream): New function.
317         (nnimap-open-connection): Use it.
318         (nnimap-transform-headers): Get the number of lines in each message.
319         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
320         number of lines.
321         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
322         problem.
323
324         * utf7.el (utf7-encode): Autoload.
325
326         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
327         to allow the mail splitting to not return a default group.  This is
328         useful for nnimap, which will leave unmatched mail in the inbox.
329
330         * nnimap.el: Rewritten.
331
332         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
333         nnimap usage.
334
335         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
336         if the move is internal, so that nnimap can do fast internal moves.
337
338         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
339         data.
340         (gnus-read-active-for-groups): Support finishing the early retrieval of
341         data.
342
343         * gnus-range.el (gnus-range-nconcat): New function.
344
345         * gnus-int.el (gnus-finish-retrieve-group-infos)
346         (gnus-retrieve-group-data-early): New functions.
347
348 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
349
350         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
351         (nnrss-retrieve-groups):
352         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
353         (pop3-quit): Use with-current-buffer.
354
355 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
356
357         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
358         instead of nnheader-accept-process-output.
359
360         * dgnushack.el (dgnushack-compile): Add comment.
361
362         * lpath.el: No need to fbind propertize for XEmacs 21.4.
363
364         * gnus-html.el (gnus-html-schedule-image-fetching)
365         (gnus-html-prefetch-images): Replace process-kill-without-query by
366         gnus-set-process-query-on-exit-flag.
367
368 2010-09-16  Romain Francoise  <romain@orebokech.com>
369
370         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
371
372 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
373
374         * gnus-registry.el (gnus-registry-install-shortcuts): The second
375         parameter to unintern is mandatory-ish in Emacs 24.
376
377         * gnus-html.el (gnus-html-schedule-image-fetching)
378         (gnus-html-prefetch-images): Check for curl before using it.
379
380         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
381         depend on curl, which isn't essential.
382
383         * imap.el: Revert back to version
384         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
385         seem problematic.
386
387 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
388
389         * gnus-registry.el (gnus-registry-install-shortcuts):
390         Explicitly pass `obarray' to `unintern' to avoid a warning.
391
392 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
393
394         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
395         change.
396
397         * nnrss.el (nnrss-request-list): Removed this function and related
398         functions, including the moreover stuff.
399
400 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
401
402         * nnrss.el (nnrss-retrieve-groups): New function.
403
404 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
405
406         * .dir-locals.el: Add no-byte-compile cookie.
407
408 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
409
410         * time-date.el (format-seconds): Comment fix.
411
412         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
413         for back end that doesn't support request-scan.
414
415 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
416
417         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
418         then do request scans from the backends.
419
420         * netrc.el (netrc-credentials): New conveniency function.
421
422         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
423         avoid running a hook per line, since this takes a lot of time,
424         profiling shows.
425         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
426         directly if gnus-visual-p is true.
427
428 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
429
430         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
431         groups; replace mapcar with dolist which is a bit faster; pass groups
432         info to gnus-read-active-file-1.
433         (gnus-read-active-file-1): Scan only specified groups if the new
434         optional arg `infos' is given.
435
436 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
437
438         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
439
440         * pop3.el (pop3-movemail): Removed.
441         (pop3-streaming-movemail): Renamed to pop3-movemail.
442
443         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
444         don't restrict end-tag searches to the end of the line.
445
446 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
447
448         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
449         articles of every unchecked group to t, which means unknown since the
450         server has never been opened.
451
452 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
453
454         * gnus-html.el (gnus-html-show-alt-text): New command.
455         (gnus-html-browse-image): Ditto.
456         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
457         to browse the image directly.
458         (gnus-html-wash-tags): Search for images first, so that <a><img> works
459         better.
460
461         * gnus-async.el (gnus-async-article-callback): Call
462         `gnus-html-prefetch-images' unconditionally.
463
464         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
465         before feeding URLs to curl.
466
467 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
468
469         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
470         internal images as deletable by `W D D'.
471
472         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
473         (gnus-async-article-callback): Fix typo.
474
475 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
476
477         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
478         current line to work around bugs in the output from w3m.
479
480         * gnus-async.el (gnus-async-article-callback): Always prefetch images
481         for groups that want that.
482
483         * nntp.el (nntp-wait-for-string): Supply a timeout for
484         accept-process-output to ensure progress.
485
486         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
487         level to get unread articles from, then use that for foreign groups,
488         too.
489
490         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
491         confuses the rest of the function.
492
493         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
494         for the methods that support -retrieve-groups, too.
495
496         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
497
498 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
499
500         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
501         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
502
503         * pop3.el: Require cl when compiling.
504         (pop3-number-of-responses): Search for "+OK", not "+OK ".
505
506 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
507
508         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
509         that aren't going to be activated.
510         (gnus-get-unread-articles): Fix up the last commit.
511
512         * gnus-html.el (gnus-article-html): Allow calling without specifying
513         the handle.  In that case, dissect the buffer first.
514
515         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
516
517         * nnimap.el (nnimap-open-connection): Revert the change that would look
518         into authinfo for imaps instead of imap.
519
520         * gnus-start.el (gnus-activate-group): Take an optional parameter to
521         say that you don't want to call gnus-request-group with don-check, but
522         do check the reponse.  This is for virtual groups only.
523         (gnus-get-unread-articles): Count the archive groups as secondary, so
524         that they're activated the same way as before.
525
526         * imap.el (imap-message-map): Removed optional buffer parameter, since
527         no callers use it.
528         (imap-message-get): Ditto.
529         (imap-message-put): Ditto.
530         (imap-mailbox-map): Ditto.
531         (imap-mailbox-put): Ditto.
532         (imap-mailbox-get): Ditto.
533         (imap-mailbox-get): Revert last change for this function.
534
535         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
536         case-insensitively.
537         (nnimap-debug): Removed.
538
539         * imap.el (imap-fetch-safe): Removed function, and altered all callers
540         to use `imap-fetch' instead.  According to the comments, this should be
541         safe, since all other IMAP clients use the 1:* syntax.
542         (imap-enable-exchange-bug-workaround): Removed.
543         (imap-debug): Removed -- doesn't seem very useful.
544
545         * mail-source.el (mail-source-fetch): Don't message if we're fetching
546         mail from a file, and the file doesn't exist.
547
548         * imap.el (imap-log): New convenience function used throughout instead
549         of repeating the same code all over the place.
550
551         * pop3.el (pop3-streaming-movemail): Return t for success.
552
553         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
554         .authinfo if we're using ssl connection.
555
556         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
557         already have if we're in a main Gnus `g' run.
558
559         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
560
561 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
562
563         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
564
565         * nnmh.el (nnmh-request-list-1): Bind `file'.
566
567         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
568         alias to set-process-query-on-exit-flag or process-kill-without-query.
569         (pop3-open-server): Use it.
570
571 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
572
573         * mail-source.el (mail-source-delete-crash-box): Always move the crash
574         box to the Incoming file.  Fixes mistake in previous checkin.
575
576         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
577         request loop (for debugging purposes) removed.
578
579         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
580         culprit is more visible.
581         (nnml-save-incremental-nov, nnml-open-incremental-nov)
582         (nnml-add-incremental-nov): New functions to do "incremental" nov
583         updates, where we just append to the end of the existing nov files
584         without reading/writing them in full.
585
586         * mail-source.el (mail-source-delete-crash-box): Really only check the
587         incoming files once in a while.
588
589         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
590
591         * mail-source.el (mail-source-delete-crash-box): Only check the
592         incoming files for deletion once per day to save a lot of file
593         accesses.
594
595         * pop3.el (pop3-logon): Fix up unbound variable typo.
596
597         * mail-source.el (pop3-streaming-movemail): Autoload.
598
599         * pop3.el (pop3-streaming-movemail): Respect
600         pop3-leave-mail-on-server.
601
602         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
603         retrieval.
604
605         * pop3.el (pop3-process-filter): Removed unused function.
606         (pop3-streaming-movemail, pop3-send-streaming-command)
607         (pop3-wait-for-messages, pop3-write-to-file)
608         (pop3-number-of-responses): New functions for streaming pop3
609         retrieval.
610
611         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
612         come from no known methods.
613         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
614         list.
615
616         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
617         message sizes.
618         (pop3-movemail): Use erase-buffer instead of looping and deleting
619         regions, which seems rather odd.
620
621         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
622         file once per `g' run.
623
624         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
625         directories.  This makes the draft queue directory work.
626
627         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
628         data from the backends, so that we only request the list of groups from
629         each method once.  This should speed things up considerably.
630
631         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
632         detect that it's not implemented.
633
634         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
635         we actually do recurse down into the tree, but don't stat all leaf
636         nodes.
637
638         * gnus-html.el (gnus-html-show-images): If there are no images to show,
639         then say so instead of bugging out.
640
641         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
642         files exist before trying to read them.
643
644         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
645         around <pre_int>.
646
647         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
648
649         * nnmh.el (nnmh-request-list-1): Optimize for speed.
650
651 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
652
653         * mm-util.el (mm-image-load-path): Just return the image directories,
654         not all directories in the path in addition to the image directories.
655         (mm-image-load-path): Maintain a cache of the image directories so that
656         the `g' command in Gnus doesn't have to stat dozens of directories each
657         time.
658
659         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
660         (gnus-html-wash-tags): Add a new `i' command to insert images.
661         (gnus-html-insert-image): New command and keystroke.
662         (gnus-html-redisplay-with-images): New command and keystroke.
663         (gnus-html-show-images): Renamed command.
664         (gnus-html-wash-tags): Remove more white space before <pre_int> image
665         spacers.
666         (gnus-html-wash-tags): Decode entities at the end, so that entities
667         inside the tags don't mess up the rest of the "parsing".
668
669         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
670         so that nnimap methods aren't agentized by default.  There's apparently
671         many problems related to agent/imap behaviour.
672
673         * gnus-art.el (gnus-article-copy-string): New command and key binding.
674
675         * gnus-html.el: Doc fix.
676
677 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
678
679         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
680         specifier-spec-list for Emacs 21.
681
682         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
683         glyph-width and glyph-height instead of display-graphic-p and
684         image-size; make avoidance of displaying small images work for XEmacs.
685
686         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
687         for XEmacs.
688
689         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
690         of symbol that holds plist data.
691         (gnus-process-plist): Remove plist of process after getting it.
692
693 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
694
695         * message.el (message-generate-hashcash): Change default to
696         'opportunistic if hashcash is installed.
697
698         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
699         (gnus-html-put-image): Only call image-size once, since it's somewhat
700         time-consuming on remote X servers.
701
702 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
703
704         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
705         type on data, not a file name.
706
707         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
708         window-pixel-edges for Emacs 21.
709
710         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
711         decoded contents.
712         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
713
714 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
715
716         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
717         group line format, since it isn't very interesting.
718
719         * gnus-agent.el (gnus-agent-short-article),
720         (gnus-agent-long-article): Increase values for these two variables,
721         since most people are likely to have more network connection and
722         storage than before.
723
724         * gnus.el (gnus-refer-article-method): Change default to 'current.
725         When referring an article, the common behaviour is to refer it from the
726         current select method, not the native select method.  The chances of
727         the native select method having the message in question is rather slim
728         these days.
729
730         * gnus-sum.el (gnus-auto-select-subject): Change default to
731         `unseen-or-unread'.  I think it's likely that most people want to
732         select an unseen article over a previously seen, but unread one.
733
734         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
735         means that in the article buffer none of the minor mode elements will
736         be shown, usually, and this is not desirable in most cases.
737
738         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
739         that commands like `d' (and the like) go to the next line in the
740         buffer, instead of the next unread article.  I think this is the
741         behaviour that is most natural for most users.
742         (gnus-single-article-buffer): Change default to nil, so that people can
743         have as many article buffers open as they have summary buffer.  I think
744         this is the most natural way for the groups to behave.
745
746         * message.el (message-generate-new-buffers): Change default to
747         `unsent', so that all new message buffers start their names with the
748         string "*unsent", and it's easier to find the buffers if you move from
749         them.
750
751 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
752
753         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
754         small.  They're probably tracking images.
755         (gnus-html-wash-tags): Remove all <pre_int> place holders.
756         (gnus-html-rescale-image): Yet another try at getting the image sizing
757         right.
758
759         * nntp.el (nntp-request-set-mark): Refuse to do marks if
760         nntp-marks-file-name is nil.
761
762 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
763
764         * gnus-html.el (gnus-html-wash-tags)
765         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
766         Better logging.
767
768 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
769
770         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
771
772         * gnus-html.el (gnus-html-wash-tags): Check the value of
773         gnus-blocked-images in the summary buffer.
774
775 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
776
777         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
778
779 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
780
781         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
782         like "a", it seems like.
783         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
784         since it needs to be picked from the correct buffer.
785
786         * nnwfm.el: Removed.
787
788         * nnlistserv.el: Removed.
789
790 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
791
792         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
793         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
794
795 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
796
797         * nnkiboze.el: Removed.
798
799         * nndb.el: Removed.
800
801         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
802         alt text.
803         (gnus-html-rescale-image): Try to get the rescaling logic right for
804         images that are just wide and not tall.
805
806         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
807         overshadow variable bindings.
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-prefetch-images): Add
813         extra logging.
814
815 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
816
817         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
818         (gnus-max-image-proportion): New variable.
819         (gnus-html-rescale-image): New function.
820         (gnus-html-put-image): Rescale images.
821
822 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
823
824         Fix up some byte-compiler warnings.
825         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
826         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
827         (gnus-article-fill-cited-article, gnus-article-hide-citation)
828         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
829         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
830         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
831         (gnus-group-update-group): Use save-excursion and with-current-buffer.
832
833 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
834
835         * gnus-html.el (gnus-article-html): Decode contents by charset.
836
837 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
838
839         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
840         (gnus-html-frame-width, gnus-blocked-images)
841         * message.el (message-prune-recipient-rules): Add custom version.
842         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
843
844         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
845         functions.
846
847         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
848         gnus-process-get.
849
850 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
851
852         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
853         instead of lsub directly.
854
855 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
856
857         * nnwarchive.el: Removed.
858
859         * gnus-soup.el: Removed.
860
861         * nnsoup.el: Removed.
862
863         * nnultimate.el: Removed.
864
865         * gnus-html.el (gnus-blocked-images): New variable.
866
867         * message.el (message-prune-recipients): New function.
868         (message-prune-recipient-rules): New variable.
869
870         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
871         guess whether a long line is natural text or not.
872
873         * gnus-html.el (gnus-html-schedule-image-fetching): Use
874         gnus-process-plist and friends for compatibility.
875
876 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
877
878         * gnus-html.el: Require packages that define macros used in this file.
879         (gnus-article-mouse-face): Declare to silence byte-compiler.
880         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
881         process-get.
882         (gnus-html-put-image): Use plist-get to avoid getf.
883         (gnus-html-prefetch-images): Use with-current-buffer.
884
885 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
886
887         * gnus-ems.el: Provide compatibility functions for
888         gnus-set-process-plist.
889
890         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
891         header-line-format for XEmacs 21.4.
892
893         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
894         * gnus.el (gnus-valid-select-methods)
895         * message.el (message-send-mail-partially-limit)
896         * mm-decode.el (mm-text-html-renderer)
897         * mml.el (mml-insert-mime-headers-always)
898         * smiley.el (smiley-regexp-alist): Bump custom version.
899
900 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
901
902         * gnus-html.el: require mm-url.
903         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
904         with the url to `url'.
905         (gnus-html-wash-tags): Support cid: URLs/images.
906
907 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
908
909         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
910         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
911         bindings, as they aren't useful at all.  `w' is moved to `W w'.
912
913         * gnus-move.el: Removed file, since it doesn't really work.
914
915         * gnus-html.el (gnus-article-html): Tell w3m that the input is
916         UTF-8.  This seems to fix problems with some German web feeds.
917
918         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
919         at the top so that the proper colours are applied.
920
921         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
922         don't have dots in their names.
923
924         * gnus-art.el (gnus-article-view-part): Doc fix.
925
926         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
927         XEmacs-compatible.
928         (gnus-html-put-image): Don't do images on non-graphic displays.
929
930         * nnslashdot.el: Removed this unused backend.
931
932         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
933         actions.
934         (gnus-undo-register-1): Revert last change.
935
936         * gnus-group.el (gnus-group-completing-read): Protect against not
937         having completion-styles bound.
938
939         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
940         make broken recipients happier.
941
942         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
943
944         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
945         point parameter.
946
947         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
948
949         * gnus-group.el (gnus-group-completing-read): Add 'substring to
950         completion-styles for group selection.
951
952 2009-02-04  Andreas Schwab  <schwab@suse.de>
953
954         * gnus-score.el (gnus-score-string): Fix regex for matching extra
955         headers and regexp-quote the match if necessary.
956
957 2009-03-24  Miles Bader  <miles@gnu.org>
958
959         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
960         the blinking smiley.
961
962 2009-03-24  Simon Josefsson  <simon@josefsson.org>
963
964         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
965         blink smiley.
966
967 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
968
969         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
970         where the dribbel file lives exists.
971
972         * message.el (message-send-mail-partially-limit): Change the default to
973         nil, since most people don't want this.
974
975         * mm-url.el (mm-url-decode-entities): Also decode entities like
976         &#x3212.
977
978 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
979
980         * gnus-sum.el (gnus-summary-idna-message):
981         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
982         Hyperlink urls in docstrings with URL `...'.
983
984 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
985
986         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
987         functions.
988
989 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
990
991         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
992         say what the mouseover text should be.
993
994         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
995         version of the mm-w3m-safe-url-regexp variable to only download images
996         in the groups where we want that to happen.
997
998         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
999
1000         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
1001         easier debugging.
1002         (gnus-article-beginning-of-window): Add kludge to allow spacing past
1003         big pictures in the article buffer.
1004
1005         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
1006         gnus-article-html.
1007         (mm-text-html-renderer): gnus-article-html needs curl in addition to
1008         w3m.
1009
1010         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
1011
1012 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1013
1014         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
1015         which doesn't exist.
1016
1017         * message.el (message-inhibit-ecomplete): New variable to allow some
1018         function to inhibit ecomplete address storage.
1019         (message-resend): Disable ecomplete message storage when resending
1020         messages.
1021
1022         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
1023
1024 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1025
1026         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
1027         Save excursion while copying, moving, and deleting articles in order to
1028         prevent the cursor from jumping to unforeseen place.
1029
1030 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1031
1032         * lpath.el: No need to bind bookmark-current-buffer,
1033         bookmark-yank-point and bookmark-make-record-function.
1034
1035 2010-08-17  Glenn Morris  <rgm@gnu.org>
1036
1037         * gnus-sync.el: Require gnus components whose functions are used.
1038
1039         * gnus-art.el (bookmark-make-record-function):
1040         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
1041         Declare for compiler.
1042
1043         * mm-url.el (mml-compute-boundary): Autoload.
1044
1045 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1046
1047         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
1048
1049 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
1050
1051         Typo fix "hoo4a" -> "hook".
1052
1053         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
1054
1055 2010-08-14  Glenn Morris  <rgm@gnu.org>
1056
1057         * gnus-sync.el (gnus-sync): Fix defgroup version.
1058
1059 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
1060
1061         Doc fixes and keep unknown groups (ammended for nunion bug fix).
1062
1063         * gnus-sync.el: Fix docs.
1064         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
1065         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
1066
1067 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1068
1069         Optimizations for gnus-sync.el.
1070
1071         * gnus-sync.el: Add docs about gnus-sync-backend
1072         possibilities.
1073         (gnus-sync-save): Remove unnecessary message.
1074         (gnus-sync-read): Optimize and show what groups were skipped.
1075
1076 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1077
1078         Minor bug fixes for gnus-sync.el.
1079
1080         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
1081         read the sync on get-new-news.
1082
1083         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
1084         quiet.
1085
1086         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
1087
1088 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
1089
1090         Make saving and restoring of hidden threads work with overlays.
1091         Patch applied by Ted Zlatanov.
1092
1093         * gnus-sum.el (gnus-hidden-threads-configuration)
1094         (gnus-restore-hidden-threads-configuration): Update to deal with text
1095         properties, rather than searching for a magic character.
1096
1097 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1098
1099         New gnus-sync.el library for synchronization of marks.
1100
1101         * gnus-sync.el: New library for synchronization of marks.
1102
1103         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1104         renamed from `gnus-registry-grep-in-list'.
1105
1106         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1107
1108         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1109
1110 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1111
1112         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1113         determining charset of text fails.
1114
1115 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1116
1117         * nnmail.el (nnmail-get-new-mail-1): Revert.
1118
1119         * nnml.el (nnml-active-number): Make sure names of newly created groups
1120         in nnml-group-alist are encoded.
1121
1122 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1123
1124         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1125         containing non-ASCII characters in active file for nnml back end.
1126
1127 2010-07-24  David Engster  <dengste@eml.cc>
1128
1129         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1130         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1131
1132 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1133
1134         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1135         tag (Bug#6654).
1136
1137 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1138
1139         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1140         the article buffer, not the summary buffer.
1141
1142 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1143
1144         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1145         Emacs 23 as well.
1146
1147 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1148
1149         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1150         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1151
1152 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1153
1154         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1155         Patch applied by Karl Fogel.
1156
1157         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1158         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1159
1160 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1161
1162         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1163         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1164         C-w still not working correctly from Article buffers; Thierry's
1165         patch to fix that will be applied after this.
1166
1167         * gnus-art.el (bookmark-make-record-function): New local variable.
1168
1169         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1170         article buffer.
1171         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1172
1173 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1174
1175         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1176         on changes in bookmark.el.
1177
1178 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1179
1180         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1181         `no-log' instead of message not to log prompt string.
1182
1183 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1184
1185         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1186         the *other* type of HTML form submission.
1187
1188 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1189
1190         * auth-source.el (auth-source-pick): If choice does not contain a
1191         questioned keyword, set the check to t.
1192
1193 2010-06-12  Romain Francoise  <romain@orebokech.com>
1194
1195         * gnus-util.el (gnus-date-get-time): Move up before first use.
1196
1197 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1198
1199         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1200         (gnus-article-edit-part): Bind it to make last part that is substituted
1201         or deleted visible.
1202         (gnus-mime-display-single): Buttonize part of which id equals to
1203         gnus-mime-buttonized-part-id.
1204
1205 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1206
1207         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1208         (gnus-dd-mmm): Use gnus-date-get-time.
1209         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1210         simplify logic.
1211         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1212         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1213
1214 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1215
1216         * auth-source.el (top): Autoload `secrets-list-collections',
1217         `secrets-create-item', `secrets-delete-item'.
1218         (auth-sources): Fix tag string.
1219         (auth-get-source, auth-source-retrieve, auth-source-create)
1220         (auth-source-delete): New defuns.
1221         (auth-source-pick): Rewrite in order to avoid 2 passes.
1222         (auth-source-forget-user-or-password): New parameter USERNAME.
1223         (auth-source-user-or-password): New parameters CREATE-MISSING and
1224         DELETE-EXISTING.  Retrieve password interactively, if needed.
1225
1226 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1227
1228         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1229         deleting unused directories when gnus-expert-user is t.
1230
1231 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1232
1233         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1234         for each temp file when gnus-article-browse-delete-temp is ask.
1235
1236 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1237
1238         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1239         Lisp calls to delete-backward-char by calls to delete-char.
1240
1241 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1242
1243         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1244
1245 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1246
1247         * password-cache.el (password-cache-remove): Fix docstring.
1248
1249 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1250
1251         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1252         article unless decoding article to be saved.
1253
1254 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1255
1256         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1257         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1258         generated within the mm-with-unibyte-current-buffer macro.
1259
1260 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1261
1262         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1263         to nil when we're in a mml-preview buffer and no group is selected.
1264
1265 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1266
1267         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1268         when catching the `C-g'.  Reported by "Leo".
1269
1270 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1271
1272         * message.el (message-forward-make-body-plain)
1273         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1274         multibyte-string-p.
1275
1276         * lpath.el: Revert.
1277
1278 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1279
1280         * message.el (message-forward-make-body-mml): Assume original message
1281         is multibyte string; error on unibyte.
1282         (message-forward-make-body-plain): Ditto; don't add excessive newline
1283         in body end.
1284
1285         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1286
1287 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1288
1289         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1290         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1291
1292 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1293
1294         * mm-extern.el (mm-extern-url): Don't use
1295         mm-with-unibyte-current-buffer.
1296         (mm-extern-cache-contents): Use with-current-buffer instead of
1297         save-excursion + set-buffer.
1298
1299 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1300
1301         * mm-util.el (mm-emacs-mule): Remove.
1302
1303 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1304
1305         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1306         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1307         change.
1308
1309 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1310
1311         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1312         bind the default value of enable-multibyte-characters to nil.
1313
1314 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1315
1316         * message.el (message-forward-make-body-plain)
1317         (message-forward-make-body-mml):
1318         Don't use mm-with-unibyte-current-buffer.
1319
1320 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1321
1322         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1323
1324 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1325
1326         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1327         (Bug#5592).
1328
1329 2010-05-07  Julien Danjou  <julien@danjou.info>
1330
1331         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1332         it to mm-pipe-part.
1333
1334         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1335         it is given.
1336
1337 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1338
1339         * binhex.el (binhex-decode-region-internal)
1340         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1341         (dns-query)
1342         * nnweb.el (nnweb-gmane-search)
1343         * pgg-parse.el (pgg-parse-armor)
1344         * pgg.el (pgg-verify-region)
1345         * sha1.el (sha1-string-external)
1346         * uudecode.el (uudecode-decode-region-internal)
1347         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1348         XEmacs.
1349
1350         * gnus-art.el (gnus-article-browse-html-parts)
1351         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1352         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1353         make-temp-file.
1354
1355         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1356         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1357         compiling.
1358
1359         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1360         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1361         XEmacs when compiling.
1362
1363         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1364         gnus-pick-mode-off-hook for XEmacs when compiling.
1365         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1366         gnus-binary-mode-off-hook for XEmacs when compiling.
1367
1368         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1369         nil if char-charset is not available.
1370
1371         * imap.el (imap-disable-multibyte)
1372         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1373         macros.
1374
1375         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1376         instead of encode-coding-string.
1377
1378         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1379         'xemacs) instead of mm-emacs-mule to switch function definitions.
1380         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1381
1382         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1383         bind temporary-file-directory for XEmacs;
1384         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1385         timer-set-function for XEmacs 21.4 and SXEmacs;
1386         bind timer-list for XEmacs 21.4 and SXEmacs;
1387         fbind char-charset and find-charset-region for non-Mule XEmacs;
1388         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1389         encode-coding-region and encode-coding-string for XEmacs having no
1390         file-coding feature.
1391
1392 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1393
1394         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1395
1396 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1397
1398         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1399         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1400
1401 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1402
1403         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1404         alias `jka-compr-delete-temp-file' no longer exists.
1405
1406 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1407
1408         Use define-minor-mode in Gnus where applicable.
1409         * mml.el (mml-mode): Use define-minor-mode.
1410         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1411         (gnus-undo-mode): Use define-minor-mode.
1412         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1413         (gnus-dead-summary-mode): Use define-minor-mode.
1414         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1415         Initialize in declaration.
1416         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1417         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1418         (gnus-mailing-list-mode): Use define-minor-mode.
1419         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1420         (gnus-draft-mode): Use define-minor-mode.
1421         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1422         (gnus-dired-mode): Use define-minor-mode.
1423
1424 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1425
1426         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1427         handles on recursive mml-to-mime translation and check them for
1428         boundary delimiter collisions.  Reported by Greg Troxel.
1429
1430 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1431
1432         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1433
1434 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1435
1436         * mm-util.el (mm-find-buffer-file-coding-system):
1437         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1438
1439 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1440
1441         * message.el (message-generate-headers): Record insertion of optional
1442         headers as well.  Otherwise the check to prevent repeated insertion of
1443         optional headers is a no-op.
1444
1445 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1446
1447         * smime.el: Don't mention CVS.
1448
1449         * nnrss.el (nnrss-fetch): Don't mention CVS.
1450
1451         * nnir.el: Don't mention CVS.
1452
1453 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1454
1455         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1456
1457 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1458
1459         * lpath.el: Fbind bookmark-default-handler,
1460         bookmark-get-bookmark-record, bookmark-make-record-default,
1461         bookmark-prop-get for Emacs <23 and XEmacs.
1462
1463 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1464
1465         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1466         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1467         Use with-current-buffer to silence the byte-compiler.
1468         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1469         bother to require `gnus'.
1470         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1471
1472 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1473
1474         * gnus-sum.el (gnus-summary-bookmark-make-record)
1475         (gnus-summary-bookmark-jump): New functions.
1476         (gnus-summary-mode): Setup bookmark support.
1477
1478 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1479
1480         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1481         if set.
1482
1483 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1484
1485         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1486         gnus-article-browse-html-save-cid-image; make it work recursively for
1487         forwarded messages as well.
1488         (gnus-article-browse-html-parts): Work when prefix arg is given.
1489         (gnus-article-browse-html-article): Doc fix.
1490
1491 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1492
1493         * message.el (message-default-mail-headers):
1494         (message-default-headers): Carry the value mail-default-headers over
1495         into message-default-mail-headers, rather than message-default-headers.
1496
1497 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1498
1499         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1500         charset.
1501
1502         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1503         charset into the <meta> tag when the article is encoded to utf-8.
1504
1505 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1506
1507         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1508         directories as well.
1509         (gnus-article-browse-html-parts): Work for images that do not specify
1510         file names; delete temp directory when quitting; insert header at the
1511         right place; use file: scheme for image files.
1512
1513 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1514
1515         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1516         (gnus-article-browse-html-parts): Use it to make temporary cid image
1517         files in addition to html file so that browser may display them.
1518
1519 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1520
1521         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1522
1523 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1524
1525         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1526
1527 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1528
1529         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1530         about Secret Service API sources.  Improve Customize options.
1531         (auth-source-pick): Change to accept any number of search parameters.
1532         Implement fallbacks iteratively, not recursively.  Add scoring on the
1533         second pass and sort by score.  Call Secret Service API when needed.
1534         (auth-source-user-or-password): Use it.  Call Secret Service API
1535         directly when needed to get the user name and the password.
1536
1537 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1538
1539         * message.el (message-interactive): Doc fix.
1540         (message-qmail-inject-args): Reflow.
1541         (message-kill-to-signature): Fix typo in docstring.
1542
1543         * smiley.el (smiley-buffer): Fix typo in docstring.
1544
1545 2010-03-24  Glenn Morris  <rgm@gnu.org>
1546
1547         * mail-source.el (gnus-message): Declare.
1548         (mail-source-delete-old-incoming): Require gnus-util.
1549
1550 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1551
1552         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1553
1554         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1555
1556         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1557         password-cache's default if it is not bound.
1558         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1559         password-cache-expiry's default if it is not bound.
1560
1561         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1562         available in Emacs 21.
1563
1564         * lpath.el: Suppress compiler warnings for:
1565         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1566         XEmacs;
1567         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1568         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1569         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1570
1571 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1572
1573         * auth-source.el (auth-sources): Fix up definition so extra parameters
1574         are always inline.
1575
1576 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1577
1578         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1579         wasn't updated after mismatch.  Clear cached mailbox info correctly
1580         when uidvalidity changes.
1581         (nnimap-group-prefixed-name): New function to avoid some code
1582         duplication.
1583         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1584         (nnimap-request-group): Use it.
1585         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1586         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1587         with many imap folders.  This is done by caching the group status from
1588         the imap server persistently in a group parameter `imap-status'.  (This
1589         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1590         but not persistently, so every Gnus startup was still very slow.)
1591
1592 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1593
1594         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1595         delete the extra newline.  Otherwise editing of :string and :number
1596         types don't work.
1597
1598 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1599
1600         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1601         secrets.el dependency.
1602         (auth-sources): Add optional user name.  Add secrets.el configuration
1603         choice (unused right now).
1604
1605 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1606
1607         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1608         `gnus-registry-install-shortcuts' fill in the functions.
1609
1610         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1611         warnings.
1612         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1613         (gnus-registry-install-shortcuts): Populate and use it in a
1614         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1615
1616 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1617
1618         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1619         In-place substitutions for the group name encoding/decoding.
1620         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1621         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1622         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1623         (nnimap-update-unseen, nnimap-request-list)
1624         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1625         (nnimap-request-set-mark, nnimap-split-to-groups)
1626         (nnimap-split-articles, nnimap-request-newgroups)
1627         (nnimap-request-create-group, nnimap-request-accept-article)
1628         (nnimap-request-delete-group, nnimap-request-rename-group)
1629         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1630         `encoded-mbx' for consistency.
1631         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1632         variable `imap-current-mailbox'.
1633
1634         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1635         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1636
1637 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1638
1639         * pop3.el (pop3-display-message-size-flag): Display message size byte
1640         counts during POP3 download.
1641         (pop3-movemail): Use it.
1642         (pop3-list): Implement listing of available messages.
1643
1644 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1645
1646         * nnir.el (nnir-get-article-nov-override-function): New function to
1647         override the normal NOV retrieval.
1648         (nnir-retrieve-headers): Use it.
1649
1650 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1651
1652         * auth-source.el (netrc-machine-user-or-password): Autoload.
1653
1654 2010-03-19  Glenn Morris  <rgm@gnu.org>
1655
1656         Stop message.el from loading about 40 libraries it doesn't always need.
1657         The general approach is to autoload rather than require, and to
1658         require in the specific functions rather than the file.  (Bug#5642)
1659
1660         * gmm-utils.el: Don't require wid-edit.
1661         (widget-create-child-value, widget-convert, widget-default-get):
1662         Autoload.
1663
1664         * gnus-util.el: Don't require time-date, netrc.
1665         (message-fetch-field, gnus-group-name-decode): Declare rather than
1666         autoloading.
1667         (gnus-fetch-field): Require message.
1668         (gnus-decode-newsgroups): Require gnus-group.
1669
1670         * ietf-drums.el: Don't require time-date.
1671
1672         * message.el: Don't require hashcash, canlock, ecomplete.
1673         Do require mail-utils.  Require nnheader only when compiling.
1674         (smtpmail-default-smtp-server): Remove declaration.
1675         (message-send-mail-function): Check smtpmail-default-smtp-server
1676         is bound rather than requiring smtpmail.
1677         (message-auto-save-directory, message-insert-signature): Use
1678         expand-file-name rather than nnheader-concat.
1679         (nnheader-insert-file-contents): Autoload.
1680         (hashcash-wait-async): Declare.
1681         (message-send-mail): Only call gnus-setup-posting-charset if
1682         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1683         (message-send-mail-with-sendmail): Require sendmail.
1684         (canlock-password, canlock-password-for-verify): Declare.
1685         (message-canlock-password): Require canlock.
1686         (nnheader-get-report): Autoload.
1687         (gnus-setup-posting-charset): Declare.
1688         (message-send-news): Require gnus-msg.
1689         (message-make-references, message-make-in-reply-to): Use mail-header-id
1690         rather than the alias mail-header-message-id.
1691         (ecomplete-add-item, ecomplete-save): Declare.
1692         (message-put-addresses-in-ecomplete): Require ecomplete.
1693         (ecomplete-display-matches): Autoload.
1694
1695         * mm-decode.el: Don't require mailcap, gnus-util.
1696         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1697         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1698         Autoload.
1699         (mailcap-mime-extensions): Declare.
1700
1701         * mm-encode.el: Don't require mailcap.
1702         (mailcap-extension-to-mime): Autoload.
1703
1704         * mml-sec.el: Don't require password-cache.
1705
1706         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1707         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1708         (mml-minibuffer-read-type): Require mailcap.
1709         (mml-preview): Require gnus-msg.
1710
1711         * mml1991.el: Require password-cache.
1712         (password-cache-expiry): Remove declaration.
1713
1714         * mml2015.el: Require password-cache.
1715         (password-cache-expiry): Remove declaration.
1716
1717         * nneething.el (mailcap): Require mailcap.
1718
1719         * nnheader.el (declare-function): Add compatibility stub.
1720         (message-remove-header): Declare rather than autoload.
1721         (nnheader-replace-header): Require message.
1722
1723         * nnimap.el (declare-function): Add compatibility stub.
1724         (netrc-parse, netrc-machine-user-or-password): Declare.
1725         (nnimap-open-connection): Require netrc.
1726
1727         * nntp.el (declare-function): Add compatibility stub.
1728         (netrc-parse, netrc-machine, netrc-get): Declare.
1729         (nntp-send-authinfo): Require netrc.
1730
1731         * rfc2047.el: Don't require qp.
1732         (quoted-printable-encode-region, quoted-printable-decode-string):
1733         Autoload.
1734
1735         * sieve-mode.el: Don't require easymenu.
1736         (easy-menu-add-item): Autoload it.
1737
1738         * spam-stat.el (time-to-number-of-days): Autoload it.
1739
1740 2010-03-19  Glenn Morris  <rgm@gnu.org>
1741
1742         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1743
1744 2010-03-18  Glenn Morris  <rgm@gnu.org>
1745
1746         * hashcash.el (declare-function): Remove duplicate definition.
1747
1748 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1749
1750         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1751         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1752         value if any backslash escapes).
1753
1754 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1755
1756         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1757         if it is available.  (bug#5647)
1758
1759         * lpath.el: Suppress compiler warning for coding-system-from-name for
1760         Emacs 21 and XEmacs.
1761
1762 2010-03-14  Juri Linkov  <juri@jurta.org>
1763
1764         * hmac-def.el:
1765         * hmac-md5.el:
1766         * netrc.el: Fix keywords.
1767
1768 2010-02-26  Glenn Morris  <rgm@gnu.org>
1769
1770         * message.el (message-send-mail-function): Change the default, so that
1771         it inherits from a customized send-mail-function.  (Bug#5643)
1772
1773 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1774
1775         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1776         shell-command-to-string signals an error (bug#5299).
1777
1778 2010-02-24  Glenn Morris  <rgm@gnu.org>
1779
1780         * message.el (message-smtpmail-send-it)
1781         (message-send-mail-with-mailclient): Doc fixes.
1782
1783 2010-02-16  Glenn Morris  <rgm@gnu.org>
1784
1785         * message.el (message-default-mail-headers): Change the default value
1786         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1787
1788 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1789
1790         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1791         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1792
1793 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1794
1795         * time-date.el (date-to-time): Doc fix (Bug#5408).
1796
1797 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1798
1799         * message.el (message-mail): Just pass yank-action on to message-setup.
1800         (message-setup): Handle (FUN . ARGS) form of yank-action.
1801         (message-with-reply-buffer, message-widen-reply)
1802         (message-yank-original): Handle non-buffer values of
1803         message-reply-buffer (Bug#4080).
1804         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1805
1806 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1807
1808         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1809         Fix typo in docstring.
1810
1811 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1812
1813         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1814         response.
1815
1816 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1817
1818         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1819
1820         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1821
1822         * message.el (message-check-news-header-syntax): Protect against a
1823         string that `rfc822-addresses' returns when parsing fails.
1824
1825 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1826
1827         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1828         (gnus-previous-char-property-change): New functions.
1829
1830         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1831
1832 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1833
1834         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1835         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1836
1837 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1838
1839         * message.el (message-exchange-point-and-mark): Rework last change to
1840         avoid using optional arg of exchange-point-and-mark, for backward
1841         compatibility.
1842
1843 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1844
1845         * message.el (message-exchange-point-and-mark): Call
1846         exchange-point-and-mark with an argument rather than setting
1847         mark-active by hand (Bug#5175).
1848
1849 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1850
1851         * nntp.el (nntp-service-to-port): Work for service expressed with
1852         numeric string; replace [:digit:] with [0-9] for XEmacs.
1853
1854 2009-12-17  Glenn Morris  <rgm@gnu.org>
1855
1856         * gnus-group.el (gnus-bug-group-download-format-alist):
1857         Change emacs entry to debbugs.gnu.org.  Bump :version.
1858
1859 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1860
1861         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1862
1863 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1864
1865         * message.el (message-info): Explain why we use `Info-goto-node'.
1866
1867 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1868
1869         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1870
1871 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1872
1873         * message.el (message-completion-in-region): New compatibility function.
1874         (message-expand-group): Use it.
1875
1876 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1877
1878         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1879         with no unread article should be listed if the 2nd arg `predicate' is
1880         given.
1881
1882 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1883
1884         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1885
1886 2009-11-29  Juri Linkov  <juri@jurta.org>
1887
1888         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1889         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1890         on `gnus-recenter'. (Bug#4698, Bug#4981)
1891
1892 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1893
1894         * sha1.el (sha1-string-external): default-directory "/" in case
1895         otherwise non-existent.  process-connection-type pipe for touch of
1896         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1897
1898 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1899
1900         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1901         it's comms related and sgml-mode.el has "comm" on that basis too.
1902
1903 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1904
1905         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1906         containing tspecial characters if they have been already quoted.
1907
1908 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1909
1910         * dns-mode.el (auto-mode-alist): Purecopy string.
1911
1912 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1913
1914         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1915
1916 2009-10-24  Glenn Morris  <rgm@gnu.org>
1917
1918         * gnus-art.el (help-xref-stack-item): Define for compiler.
1919
1920 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1921
1922         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1923
1924 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1925
1926         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1927
1928 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1929
1930         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1931         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1932
1933 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1934
1935         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1936         (gnus-overlays-in): New alias to overlays-in.
1937
1938         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1939         gnus-overlay-get, and gnus-delete-overlay.
1940         (gnus-summary-show-thread): Make it work as well for systems in which
1941         next-single-char-property-change is not available.
1942         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1943
1944         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1945         (gnus-overlay-get): New alias to extent-property.
1946         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1947
1948         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1949         SXEmacs.
1950
1951         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1952         SXEmacs.
1953
1954 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1955
1956         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1957
1958 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1959
1960         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1961         and XEmacs that don't have `remove-overlays'.
1962
1963 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1964
1965         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1966         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1967         selective display.  Use overlays instead.
1968
1969 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1970
1971         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1972
1973 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1974
1975         * spam-stat.el (spam-stat-load): Fix typo in message.
1976
1977 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
1978
1979         * dig.el (dig-invoke): Fix typo in docstring.
1980         (query-dig): Reflow docstring.
1981
1982 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1983
1984         * gnus-art.el (gnus-article-encrypt-body):
1985         * message.el (message-check-recipients):
1986         * mm-util.el (mm-codepage-setup):
1987         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1988         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1989
1990 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1991
1992         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1993         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1994         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1995         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1996         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1997
1998 2009-09-21  Kevin Ryde  <user42@zip.com.au>
1999
2000         * dig.el: Add "Keywords: comm", as per net-utils.el.
2001
2002 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2003
2004         * dig.el (dig-mode): Use define-derived-mode.
2005
2006 2009-09-19  Glenn Morris  <rgm@gnu.org>
2007
2008         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
2009
2010 2009-09-18  Glenn Morris  <rgm@gnu.org>
2011
2012         * gnus-diary.el (gnus-diary-check-message):
2013         * message.el (message-insert-formatted-citation-line):
2014         * nnbabyl.el (top-level):
2015         * nndiary.el (nndiary-schedule):
2016         Fix typos in condition-case handlers.
2017
2018 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2019
2020         * gnus-art.el (gnus-article-edit-part): Work for the buffer
2021         configuration that provides the sole article window in a frame;
2022         position point correctly after deleting a part.
2023
2024 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
2025
2026         * spam.el (spam-unregister-on-reregister): Add boolean variable.
2027         (spam-resolve-registrations-routine): Use it to unregister articles
2028         that change status.
2029
2030 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2031
2032         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
2033         with XEmacs.
2034         (parse-time-string-chars): Use it.
2035
2036 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
2037
2038         * imap.el (imap-interactive-login): Better messages.
2039         (imap-open): Fix bug with renamed buffer on reconnect.
2040         (imap-authenticate): Add buffer-local imap-last-authenticator variable
2041         for easier debugging and cleaner code.  On successful (guessed based on
2042         server capabilities) secondary authentication, set imap-state
2043         correctly.
2044         (imap-last-authenticator): Define imap-last-authenticator as a variable
2045         to avoid warnings.
2046
2047 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2048
2049         * nnrss.el (nnrss-request-article): Remove binding of
2050         default-enable-multibyte-characters that has gotten needless by
2051         the 2007-07-13 change in rfc2047-encode-message-header.
2052
2053         * mml.el (mml-insert-multipart): Error on the message header.
2054         (mml-insert-part): Error on the message header; position point at
2055         the end of a MIME tag.
2056
2057 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2058
2059         * time-date.el (autoload): Expand define-obsolete-function-alias into
2060         defalias and make-obsolete for old Emacsen that Gnus supports.
2061         (with-no-warnings): Define it for old Emacsen.
2062         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
2063         is available.
2064         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
2065         float-time is available; suppress compile warning for time-to-seconds.
2066
2067         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
2068         (gnus-float-time): Alias to float-time if it exists.
2069
2070         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
2071         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
2072         float-time is available; suppress compile warning for time-to-seconds.
2073
2074         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
2075         XEmacs.
2076
2077 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
2078
2079         * imap.el (imap-message-map): Docstring fix.
2080
2081 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2082
2083         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
2084         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
2085         Add the optional argument `encoding' that overrides the default.
2086
2087         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
2088         mm-encode-buffer.
2089
2090 2009-09-04  Glenn Morris  <rgm@gnu.org>
2091
2092         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2093         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2094         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2095         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2096         * mm-util.el (mm-with-unibyte-current-buffer)
2097         (mm-find-buffer-file-coding-system):
2098         * yenc.el (yenc-decode-region): Use default-value rather than
2099         default-enable-multibyte-characters.
2100
2101 2009-09-03  Glenn Morris  <rgm@gnu.org>
2102
2103         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2104         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2105         than default-enable-multibyte-characters.
2106
2107 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2108
2109         * gnus-art.el (gnus-article-read-summary-keys):
2110         Fix gnus-buffer-configuration's value temporarily used.
2111
2112 2009-09-02  Glenn Morris  <rgm@gnu.org>
2113
2114         * gnus-util.el (gnus-float-time): New function.
2115         * gnus-delay.el (gnus-delay-article):
2116         * gnus-sum.el (gnus-thread-latest-date):
2117         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2118         * nnspool.el (nnspool-request-newgroups):
2119         Use gnus-float-time rather than time-to-seconds.
2120         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2121
2122         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2123         (gnus-header-subject-face, gnus-header-newsgroups-face)
2124         (gnus-header-name-face, gnus-header-content-face):
2125         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2126         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2127         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2128         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2129         (gnus-cite-face-11):
2130         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2131         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2132         (gnus-server-closed-face, gnus-server-denied-face)
2133         (gnus-server-offline-face):
2134         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2135         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2136         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2137         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2138         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2139         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2140         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2141         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2142         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2143         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2144         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2145         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2146         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2147         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2148         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2149         (gnus-summary-high-undownloaded-face)
2150         (gnus-summary-low-undownloaded-face)
2151         (gnus-summary-normal-undownloaded-face)
2152         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2153         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2154         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2155         (gnus-splash-face):
2156         * message.el (message-header-to-face, message-header-cc-face)
2157         (message-header-subject-face, message-header-newsgroups-face)
2158         (message-header-other-face, message-header-name-face)
2159         (message-header-xheader-face, message-separator-face)
2160         (message-cited-text-face, message-mml-face):
2161         * sieve-mode.el (sieve-control-commands-face)
2162         (sieve-action-commands-face, sieve-test-commands-face)
2163         (sieve-tagged-arguments-face):
2164         * spam.el (spam-face):
2165         Mark face aliases with "-face" in the name as obsolete.
2166
2167 2009-09-01  Glenn Morris  <rgm@gnu.org>
2168
2169         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2170         than goto-line.
2171
2172 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2173
2174         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2175         Don't move point if the command is invoked inside the message header.
2176
2177 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2178
2179         * imap.el (imap-send-command): Simplify.
2180         (imap-wait-for-tag): point-max -> buffer-size.
2181
2182 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2183
2184         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2185         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2186         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2187         * nnir.el (nnir-swish-e-index-file):
2188         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2189         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2190         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2191         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2192         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2193         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2194
2195 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2196
2197         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2198         Don't save excursion.
2199
2200 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2201
2202         * nnheader.el (nnheader-find-file-noselect):
2203         * mm-util.el (mm-insert-file-contents):
2204         Use (default-value 'major-mode) instead of default-major-mode.
2205
2206 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2207
2208         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2209
2210 2009-08-26  Glenn Morris  <rgm@gnu.org>
2211
2212         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2213         than placing in files.el.
2214
2215 2009-08-25  Glenn Morris  <rgm@gnu.org>
2216
2217         * nnir.el (top-level): Don't require cl at run-time.
2218         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2219         Replace cl-function substitute with gnus-replace-in-string.
2220         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2221         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2222         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2223         simplified expansions.
2224
2225 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2226
2227         * dig.el (dig): Add autoload cookie.
2228
2229 2009-08-22  Glenn Morris  <rgm@gnu.org>
2230
2231         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2232         goto-line.
2233
2234 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2235
2236         * parse-time.el (parse-time-string-chars): Save match data.
2237
2238 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2239
2240         * parse-time.el (parse-time-string-chars): Compute using character
2241         classes, to handle non-ascii characters (Bug#3190).
2242
2243 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2244
2245         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2246
2247         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2248         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2249         (gnus-mm-display-part, gnus-mime-display-single)
2250         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2251         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2252
2253         * gnus-sum.el
2254         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2255         (gnus-summary-move-article): Add expirable mark to articles copied or
2256         moved to group that has auto-expire turned on if the option is non-nil.
2257
2258 2009-07-24  Glenn Morris  <rgm@gnu.org>
2259
2260         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2261         Fix typo.  (Bug#3903)
2262
2263 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2264
2265         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2266         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2267         that should not be used for draft articles.
2268         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2269         that has no concern in minor mode keys.
2270         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2271         Abolish.
2272
2273 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2274
2275         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2276         article without making inquiry to a user for unknown encoding.
2277
2278         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2279         (nnmaildir--scan): Assume i-node and device number that file-attributes
2280         returns might be cons-cell.
2281
2282         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2283
2284         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2285
2286 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2287
2288         * auth-source.el: Remove docs now in auth.texi.  Don't use
2289         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2290         `auth-source-hide-passwords' and use them.
2291
2292 2009-07-15  Glenn Morris  <rgm@gnu.org>
2293
2294         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2295
2296 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2297
2298         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2299         excessive whitespace from the default values of title and description.
2300
2301 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2302
2303         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2304         mail-fetch-field to fetch Content-Description header in order to
2305         exclude newlines.
2306
2307 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2308
2309         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2310         format used by GnuPG 2.0.11.
2311
2312 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2313
2314         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2315         to deleted part.
2316
2317 2009-05-30  David Engster  <dengste@eml.cc>
2318
2319         * nnmairix.el: Remove old documentation in the commentary block.
2320         (nnmairix-request-group): Do not update active file for nnml back ends.
2321         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2322         end so that overview files are ignored.
2323         (nnmairix-update-groups): Make updating the groups more robust by using
2324         marks.
2325         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2326         with dollar characters in message-id.
2327
2328 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2329
2330         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2331         2008-12-25 in dns.el.
2332
2333 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2334
2335         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2336         could happen if the text is only composed of spaces and/or tabs.
2337
2338 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2339
2340         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2341         when sending a queued message to avoid extra mml tags.
2342
2343 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2344
2345         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2346
2347 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2348
2349         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2350         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2351         rmail-toggle-header for XEmacs;
2352         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2353
2354 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2355
2356         * gnus-dired.el: Remove autoload for gnus-setup-message.
2357         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2358         displaying Gnus logo; always use compose-mail.
2359
2360 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2361
2362         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2363
2364 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2365
2366         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2367         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2368         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2369         available.
2370         (gnus-nocem-epg-verify): New function.
2371
2372 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2373
2374         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2375
2376 2009-02-15  Glenn Morris  <rgm@gnu.org>
2377
2378         * gnus-util.el (rmail-insert-rmail-file-header)
2379         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2380         autoloads.
2381         (rmail-default-rmail-file): Remove unnecessary declaration.
2382         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2383
2384 2009-02-14  Glenn Morris  <rgm@gnu.org>
2385
2386         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2387         variable (only used in gnus-util, which declares it anyway).
2388         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2389         which was only needed by gnus-art (changed to not use it any more).
2390         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2391         only used in gnus-util, which autoloads it itself.
2392         (rmail-update-summary): Fix autoload.
2393
2394         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2395         rather than rmail-output-to-rmail-file.
2396
2397 2009-02-07  Glenn Morris  <rgm@gnu.org>
2398
2399         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2400         autoload of function that no longer exists.
2401         (rmail-toggle-header): Declare.
2402         (message-forward-rmail-make-body): Handle mbox Rmail.
2403
2404 2009-01-31  Glenn Morris  <rgm@gnu.org>
2405
2406         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2407         2009-01-09 change.
2408
2409 2009-01-31  Dave Love  <fx@gnu.org>
2410
2411         * imap.el (imap-fetch-safe): Bind debug-on-error.
2412         (imap-debug): Add imap-fetch-safe.
2413
2414 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2415
2416         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2417         (auth-source-forget-all-cached): New convenience function.
2418         (auth-source-user-or-password): Accept list of modes or a single mode.
2419
2420         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2421         auth-source modes.
2422
2423         * netrc.el (netrc-machine-user-or-password): Use list of
2424         auth-source modes.
2425
2426         * nnimap.el (nnimap-open-connection): Use list of
2427         auth-source modes.
2428
2429         * nntp.el (nntp-send-authinfo): Use list of
2430         auth-source modes.
2431
2432 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2433
2434         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2435         now.
2436
2437 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2438
2439         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2440         coding system in XEmacs; add a workaround for XEmacs.
2441
2442         * lpath.el: Fbind coding-system-aliasee.
2443
2444 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2445
2446         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2447         of current-language-environment.
2448
2449 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2450
2451         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2452         available at runtime.
2453
2454 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2455
2456         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2457
2458 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2459
2460         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2461         the greatest positive fixnum value doesn't work under an XEmacs with
2462         bignum support; use the most-positive-fixnum constant instead,
2463         available since Emacs 21.1 with cl and XEmacs 21.1.
2464
2465 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2466
2467         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2468         XEmacs gets not to work.
2469
2470 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2471
2472         * mm-util.el (mm-coding-system-priorities): Allow the value like
2473         "Japanese (UTF-8)" of current-language-environment.
2474
2475 2009-01-09  Glenn Morris  <rgm@gnu.org>
2476
2477         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2478         with last-command-event.
2479
2480 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2481
2482         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2483         in the doc string.
2484
2485         * message.el (message-fix-before-sending): Amend comment.
2486
2487 2009-01-08  Dave Love  <fx@gnu.org>
2488
2489         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2490
2491 2009-01-07  David Engster  <dengste@eml.cc>
2492
2493         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2494         simplified server definitions by converting it via
2495         gnus-server-to-method.
2496
2497 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2498
2499         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2500         parameter's operands.
2501
2502 2009-01-06  David Engster  <dengste@eml.cc>
2503
2504         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2505         primary select method (for gnus-group-mark-article-as-read).
2506
2507 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2508
2509         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2510         `(gnus)Face', not `(gnus)X-Face'.
2511
2512 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2513
2514         * mm-util.el (mm-ucs-to-char): New function.
2515
2516         * mm-url.el (mm-url-decode-entities): Use it.
2517
2518         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2519         unicode-to-char.
2520
2521 2009-01-05  Dave Love  <fx@gnu.org>
2522
2523         * time-date.el: Require cl for `declare'.
2524
2525 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2526
2527         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2528         Dave Love.
2529
2530 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2531
2532         * message.el (message-fix-before-sending): Add `eight-bit' to
2533         illegible-text check.
2534
2535 2009-01-03  Michael Olson  <mwolson@gnu.org>
2536
2537         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2538         `headers' is nil.  This can occur if the IMAP server does not have
2539         permissions to read messages from a folder, but can write new messages
2540         to the folder.
2541         (nnimap-request-article-part): Do not insert `data' if it is nil.
2542
2543         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2544         characters which will confuse `read', so skip past them.
2545
2546 2009-01-01  Dave Love  <fx@gnu.org>
2547
2548         * imap.el (imap-string-to-integer): Fix typo.
2549         (imap-fetch-safe): New function.
2550         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2551
2552         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2553
2554         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2555         (imap-parse-greeting): Fix doc strings.
2556         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2557         (imap-parse-flag-list): Make messages unique.
2558         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2559
2560         * nnimap.el: Fix author email.
2561         (nnimap-split-rule): Add FIXME comment.
2562         (nnimap-debug): Fix doc string.
2563
2564 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2565
2566         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2567
2568 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2569
2570         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2571         nslookup if resolv.conf isn't available.
2572         (dns-query): Rename from query-dns.
2573         (dns-query-cached): Rename from query-dns-cached.
2574
2575 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2576
2577         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2578         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2579         to check if those variables exist (first appeared in Emacs 18.50).
2580
2581 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2582
2583         * mm-util.el (mm-line-number-at-pos): New function.
2584
2585         * spam-report.el (spam-report-process-queue): Use it.
2586
2587 2008-12-24  David Engster  <dengste@eml.cc>
2588
2589         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2590         parameters that haven't existed as variables as buffer-local variables.
2591
2592 2008-12-23  Dave Love  <fx@gnu.org>
2593
2594         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2595         cadar.
2596
2597         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2598         imap-starttls-p.
2599         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2600
2601 2008-12-22  Dave Love  <fx@gnu.org>
2602
2603         * imap.el: Fix author email.  Doc fixes.
2604         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2605         reply.
2606
2607 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2608
2609         * spam-report.el (spam-report-gmane-max-requests): New constant.
2610         (spam-report-gmane-wait): New variable.
2611         (spam-report-gmane-ham, spam-report-gmane-spam)
2612         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2613         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2614         the server.
2615
2616         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2617         Add explanations.
2618
2619         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2620         nnheader-accept-process-output and nnheader-read-timeout if available.
2621         (pop3-movemail): Use it.
2622
2623         * message.el (message-check-news-body-syntax): Fix signature check if
2624         there's an attachment.
2625
2626 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2627
2628         * mm-util.el: Add comments to the mm- emulating functions.
2629
2630 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2631
2632         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2633         by Stephen Berman <stephen.berman@gmx.net>.
2634
2635 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2636
2637         * mm-util.el (mm-substring-no-properties): New function.
2638         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2639         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2640         (mm-string-to-multibyte): Doc fix.
2641
2642         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2643
2644 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2645
2646         * mml.el (mml-attach-file): Strip text properties from file name.
2647         (Bug#1574)
2648
2649 2008-12-16  Glenn Morris  <rgm@gnu.org>
2650
2651         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2652
2653 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2654
2655         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2656         knows since the charset specified might be a bogus alias that
2657         mm-charset-synonym-alist provides.
2658
2659 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2660
2661         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2662         "ISO_8859-1".
2663
2664         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2665
2666 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2667
2668         * mm-util.el (mm-charset-eval-alist):
2669         Define it before mm-charset-to-coding-system.
2670         (mm-charset-to-coding-system): Add optional argument `silent';
2671         define it before mm-charset-override-alist.
2672         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2673         default value if it can be used in Emacs currently running;
2674         silence mm-charset-to-coding-system.
2675
2676 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2677
2678         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2679         `allow-override' which says whether to use `mm-charset-override-alist'.
2680         (rfc2047-decode-encoded-words): Use it.
2681
2682         * mm-util.el (mm-charset-override-alist): Fix custom type;
2683         add `(gb2312 . gbk)' to choices.
2684
2685 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2686
2687         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2688         fast.
2689
2690         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2691
2692         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2693
2694 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2695
2696         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2697         on links.
2698
2699         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2700
2701 2008-12-03  Lute Kamstra  <lute@gnu.org>
2702
2703         * sha1.el: Remove leading * from docstrings of defcustoms,
2704         deffaces, defconsts and defuns.
2705
2706 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2707
2708         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2709         users' addresses that don't have domain parts.
2710         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2711         rather than message-narrow-to-head since there will be the message
2712         header separator.
2713
2714 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2715
2716         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2717         since the result is inserted in a unibyte buffer anyway.
2718         (nnimap-demule-use-string-to-multibyte): Remove.
2719         (nnimap-demule): Alias it to mm-string-to-multibyte.
2720
2721 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2722
2723         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2724         variable for debugging bug#464 and bug#1174.
2725         (nnimap-demule): Use it.
2726
2727 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2728
2729         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2730         score calculation correctly.
2731
2732 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2733
2734         * message.el (message-send-mail): Just set the buffer to unibyte
2735         rather than use mm-with-unibyte-current-buffer which does a lot more.
2736         (message-send-mail-partially): Don't bother with
2737         mm-with-unibyte-current-buffer since it's already been made unibyte by
2738         message-send-mail.
2739
2740 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2741
2742         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2743
2744 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2745
2746         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2747
2748 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2749
2750         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2751         require itself and to remove `with-no-warnings'.
2752
2753 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2754
2755         * starttls.el (starttls-any-program-available): Get the name of the
2756         available TLS layer program.
2757         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2758         well as the host name in the "opening" message.
2759
2760         * auth-source.el (auth-source-cache, auth-source-do-cache)
2761         (auth-source-user-or-password): Cache passwords and logins by default,
2762         allow override with `auth-source-do-cache'.
2763         (auth-source-forget-user-or-password): Allow users to remove cache
2764         entries if needed.
2765
2766 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2767
2768         * md4.el (md4-buffer): Fix typo in docstring.
2769         (md4, md4-64): Doc fixes.
2770         (md4-pack-int32): Reflow docstring.
2771
2772 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2773
2774         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2775         condition-case to only the forward-sexp call.
2776
2777 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2778
2779         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2780         quotes contained.  Make it more robust regardless by an extra
2781         condition-case wrapper.
2782
2783 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2784
2785         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2786
2787 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2788
2789         * nnml.el (nnml-request-expire-articles): Check if the function set to
2790         `nnmail-expiry-target' returns the symbol `delete'.
2791
2792         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2793
2794         * nnmail.el (nnmail-expiry-target): Fix custom type.
2795
2796 2008-10-02  Glenn Morris  <rgm@gnu.org>
2797
2798         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2799         Silence compiler warning.
2800
2801 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2802
2803         * tls.el (open-tls-stream): Show the actual command being
2804         executed, instead of the format string.
2805
2806 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2807
2808         * lpath.el: Fbind codepage-setup for Emacs 23.
2809
2810 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2811
2812         * mml.el (mml-menu): Don't assume mml2015 is bound.
2813
2814 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2815
2816         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2817         exists.
2818
2819 2008-09-27  Glenn Morris  <rgm@gnu.org>
2820
2821         * gnus-util.el (mail-header-remove-comments): Autoload it.
2822
2823 2008-09-27  Andreas Schwab  <schwab@suse.de>
2824
2825         * gnus-util.el (gnus-split-references): Strip comments.
2826         (gnus-parent-id): Likewise.
2827
2828 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2829
2830         * message.el (message-confirm-send): Fix version.
2831
2832 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2833
2834         * message.el (message-idna-to-ascii-rhs-1): Use
2835         mail-extract-address-components rather than mail-header-parse-addresses
2836         that is an alias by default to ietf-drums-parse-addresses that does not
2837         support non-ASCII names in headers' contents.
2838
2839 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2840
2841         * message.el (message-confirm-send): Fixed variable documentation to
2842         avoid the "y/n" wording.
2843
2844 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2845
2846         * message.el (message-set-auto-save-file-name): Save to a different
2847         filename so multiple messages (especially drafts) can be recovered.
2848
2849 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2850
2851         * message.el (message-confirm-send): Add appropriate version.
2852
2853 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2854
2855         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2856         defvar.
2857
2858 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2859
2860         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2861         (mm-pkcs7-enveloped-magic): Ditto.
2862
2863 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2864
2865         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2866         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2867
2868 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2869
2870         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2871         default, it's better.
2872
2873 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2874
2875         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2876         summary line gnus-number property and ignore them (with a warning
2877         message).
2878
2879 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2880
2881         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2882         macro caddr in the interactive form since it won't be expanded.
2883
2884 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2885
2886         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2887         `charset'; fix name of function called recursively.
2888         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2889
2890 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2891
2892         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2893         (gnus-mime-set-charset-parameters): New function.
2894         (gnus-mime-view-part-as-charset): Use it to correctly display part
2895         specifying wrong charset.
2896
2897 2008-09-08  David Engster  <dengste@eml.cc>
2898
2899         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2900         in completing-read for back end server.
2901
2902 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2903
2904         * message.el (message-confirm-send): New variable to confirm sending a
2905         message.
2906         (message-send): Use it.
2907
2908 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2909
2910         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2911
2912 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2913
2914         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2915
2916 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2917
2918         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2919         prevent tracking too many groups.
2920         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2921         Use it.
2922
2923 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2924
2925         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2926         moving point to the bottom of the window in order to avoid recentering.
2927
2928 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2929
2930         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2931
2932         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2933         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2934         (gnus-article-beginning-of-window): Fix calculation.
2935
2936 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2937
2938         * gnus-msg.el (gnus-summary-supersede-article)
2939         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2940         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2941         message header.
2942
2943 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2944
2945         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2946         pending output coming after the status change.
2947
2948 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2949
2950         * message.el:
2951         * gnus-start.el:
2952         * gnus-registry.el: Remove VMS support.
2953
2954 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2955
2956         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2957         macro.
2958         (rfc2104-hash): Use it.
2959
2960 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2961
2962         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2963         (gnus-summary-sort-by-most-recent-date): New commands.
2964         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2965         and menu entries.
2966
2967 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2968
2969         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2970         don't redisplay article for raw contents; remove plural articles stuff.
2971
2972         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2973         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2974         on gnus-summary-save-article; display results properly.
2975
2976 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2977
2978         * lpath.el: No need to fbind ns-focus-frame.
2979
2980 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2981
2982         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2983
2984 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2985
2986         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2987         gnus-save-all-headers.
2988
2989 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2990
2991         * gnus-util.el (ns-focus-frame): Remove declaration.
2992         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2993         like x.
2994
2995 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2996
2997         * rfc2104.el (rfc2104-zero): Delete defconst.
2998         (rfc2104-hex-alist): Likewise.
2999         (rfc2104-hex-to-int): Delete func.
3000         (rfc2104-hexstring-to-bitstring): Likewise.
3001         (rfc2104-nybbles): New defconst.
3002         (rfc2104-hash): Rewrite for speed.
3003
3004 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3005
3006         * tls.el (open-tls-stream): Make it work with the 2nd argument
3007         BUFFER that is a string but does not exist as a buffer object, as
3008         mentioned in the doc-string.
3009
3010 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3011
3012         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
3013         SXEmacs.
3014
3015 2008-07-16  Glenn Morris  <rgm@gnu.org>
3016
3017         * gnus-util.el (ns-focus-frame): Declare for compiler.
3018
3019 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3020
3021         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
3022         set as a group parameter.
3023         (gnus-summary-save-in-pipe): Work when it is called independently.
3024         (gnus-summary-pipe-to-muttprint): Don't modify
3025         gnus-summary-pipe-output-default-command.
3026
3027 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3028
3029         * message.el (message-send-mail-with-sendmail):
3030         Display the error message.
3031
3032 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3033
3034         * gnus-art.el (gnus-default-article-saver):
3035         Add gnus-summary-save-in-pipe to choices.
3036         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
3037         gnus-summary-pipe-output-default-command as the default command.
3038         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
3039         instead of gnus-last-shell-command.
3040
3041         * gnus-sum.el (gnus-summary-pipe-output-default-command):
3042         New user option.
3043         (gnus-summary-muttprint-program): Mention the value will be changed.
3044         (gnus-summary-save-article): Force showing of all headers.
3045         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
3046
3047 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
3048
3049         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
3050
3051 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
3052
3053         * nnimap.el (nnimap-id):
3054         * sieve-manage.el (sieve-manage-open): Doc fixes.
3055
3056 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
3057
3058         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
3059         if available.
3060
3061 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3062
3063         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
3064
3065         * nnkiboze.el (nnkiboze-generate-group):
3066         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
3067
3068         * nnmairix.el: Require CL.
3069
3070 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3071
3072         * dgnushack.el: Autoload get-display-table and put-display-table for
3073         XEmacs 21.5.
3074
3075         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
3076         21.4 and SXEmacs.
3077
3078 2008-06-15  David Engster  <dengste@eml.cc>
3079
3080         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
3081
3082 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
3083
3084         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
3085         New macros that expand to an `aset'/`aref' call under Emacs, and to a
3086         runtime choice under XEmacs.
3087
3088         * gnus-sum.el (gnus-summary-set-display-table):
3089         Use `gnus-put-display-table', `gnus-get-display-table',
3090         `gnus-set-display-table' for the display table, instead of `aset'.
3091
3092         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3093         Use `gnus-put-display-table', `gnus-get-display-table',
3094         `gnus-set-display-table' for the display table.
3095
3096 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3097
3098         * nnmairix.el: Add autoloads.
3099
3100 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3101
3102         * nnmairix.el (nnmairix-delete-recreate-group)
3103         (nnmairix-update-and-clear-marks): Fix error messages.
3104
3105 2008-06-14  David Engster  <dengste@eml.cc>
3106
3107         * nnmairix.el: Upgrade to version 0.6.
3108         (nnmairix-group-toggle-propmarks-this-group)
3109         (nnmairix-group-toggle-readmarks-this-group)
3110         (nnmairix-group-delete-recreate-this-group)
3111         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3112         (nnmairix-remove-tick-mark-original-article): New commands.
3113         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3114         (nnmairix-propagate-marks-to-nnmairix-groups)
3115         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3116         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3117         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3118         functions needed for marks propagation and manipulation of read marks.
3119         (nnmairix-update-groups): New function.
3120         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3121         (nnmairix-determine-original-group-from-registry)
3122         (nnmairix-determine-original-group-from-path)
3123         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3124         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3125         New helper functions.
3126         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3127         keystrokes for new commands.
3128         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3129         (nnmairix-request-group): Check allow-fast group parameter.
3130         (nnmairix-request-create-group): Set allow-fast group parameter if
3131         nnmairix-allowfast-default is set.
3132         (nnmairix-close-group): Propagate marks upon closing if needed.
3133         (nnmairix-group-toggle-threads-this-group): Use new.
3134         nnmairix-group-toggle-parameter helper function.
3135         (nnmairix-search): Better check for empty search result.
3136         (nnmairix-goto-original-article): Use new helper functions for
3137         determining original article.
3138         (nnmairix-show-original-article): Make sure message-id is in brackets.
3139         (nnmairix-call-mairix-binary): Change variable name.
3140         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3141         helper function.
3142         (nnmairix-widget-toggle-activate): Fix doc string.
3143
3144 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3145
3146         * nnir.el: Require edmacro when compiling with XEmacs.
3147         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3148         available in Emacs 21.
3149
3150 2008-06-11  Glenn Morris  <rgm@gnu.org>
3151
3152         * gnus-util.el (x-focus-frame):
3153         * gnus.el (image-size):
3154         * mm-decode.el (image-size): Declare.
3155
3156         * gnus-picon.el (declare-function): Add compat definition.
3157         (image-size): Declare.
3158
3159         * gnus-group.el (tool-bar-map):
3160         * gnus-sum.el (tool-bar-map): Define for compiler.
3161
3162         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3163
3164         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3165
3166         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3167         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3168         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3169         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3170         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3171         * sieve-manage.el, spam-report.el, spam.el:
3172         Remove unnecessary eval-and-compile of autoloads.
3173
3174 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3175
3176         * auth-source.el: Precise Tramp doc.
3177
3178 2008-06-07  Glenn Morris  <rgm@gnu.org>
3179
3180         * nnmairix.el: Remove unnecessary eval-when-compile.
3181
3182 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3183
3184         * lpath.el: Fbind propertize for XEmacs 21.4.
3185
3186 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3187
3188         * nnir.el: Move here from ../contrib.
3189
3190 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3191
3192         * gnus-util.el (gnus-read-shell-command): New function.
3193         * mm-decode.el (mm-pipe-part):
3194         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3195
3196 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3197
3198         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3199
3200 2008-06-03  Glenn Morris  <rgm@gnu.org>
3201
3202         * pop3.el (nnheader-accept-process-output): Autoload it.
3203
3204 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3205
3206         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3207         are not 2-digit hexadecimal characters that follow `%'s.
3208
3209 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3210
3211         * message.el (message-bogus-recipient-p): Fix type in doc string.
3212         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3213         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3214         Improve custom options.
3215         (message-bogus-recipient-p): Adjust accordingly.
3216
3217 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3218
3219         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3220         long-form month and day names.
3221
3222 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3223
3224         * dgnushack.el: Autoload debug, eudc-expand-inline and
3225         pgg-snarf-keys-region for XEmacs.
3226
3227         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3228
3229         * nnmairix.el: Require edmacro when compiling with XEmacs.
3230
3231 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3232
3233         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3234         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3235
3236 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3237
3238         * auth-source.el: Add more docs.
3239
3240         * netrc.el (netrc-machine): Always match if the port is not given.
3241
3242 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3243
3244         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3245         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3246         retrieval faster in some cases, but might make CPU usage larger.  If
3247         this has any bad side effects, we might revert this change.
3248
3249         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3250         seems to make mail retrieval much, much faster.
3251         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3252         unconditionally.
3253
3254         * gnus-draft.el (gnus-group-send-queue): Bind
3255         message-send-mail-partially-limit to nil to avoid being prompted.
3256
3257 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3258
3259         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3260
3261         * message.el (message-bogus-address-regexp): Fix and improve custom
3262         type.
3263         (message-setup-hook): Add message-check-recipients as custom option.
3264
3265 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3266
3267         * message.el (message-cite-function): Remove bogus autoload which crept
3268         in during merge from v5-10.
3269
3270 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3271
3272         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3273
3274         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3275
3276         * auth-source.el: Preliminary Tramp docs.
3277         (auth-sources): Change the default auth-sources to use
3278         EPA .gpg files.
3279
3280 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3281
3282         * nntp.el: Autoload `auth-source-user-or-password'.
3283         (nntp-send-authinfo): Use it.
3284
3285         * nnimap.el: Autoload `auth-source-user-or-password'.
3286         (nnimap-open-connection): Use it.
3287
3288         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3289         for the gnus-message function.
3290         (auth-source-user-or-password): Use it.
3291
3292 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3293
3294         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3295         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3296         (rfc2104-hash): Use it.
3297
3298 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3299
3300         * gnus-art.el (gnus-article-toggle-truncate-lines):
3301         Don't use `iff' in docstring.
3302
3303 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3304
3305         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3306
3307         * gnus-util.el (gnus-extract-address-component-name)
3308         (gnus-extract-address-component-email): Convenience functions around
3309         `gnus-extract-address-components'.
3310
3311         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3312         Use `gnus-extract-address-component-email' to fix bug of comparing full
3313         sender name to `user-mail-address'.
3314
3315 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3316
3317         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3318         catch/throw to optimize.
3319         (gnus-registry-find-keywords): Just use member to find a keyword.
3320
3321 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3322
3323         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3324         is current before calling gnus-server-prepare.
3325         (gnus-server-setup-buffer, gnus-server-update-server)
3326         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3327
3328 2008-05-04  Juri Linkov  <juri@jurta.org>
3329
3330         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3331         (mailcap-file-default-commands): Use mailcap-replace-in-string
3332         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3333         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3334
3335 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3336
3337         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3338
3339 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3340
3341         * gnus.el: Bump version to 0.11.
3342
3343 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3344
3345         * gnus.el: No Gnus v0.10 is released.
3346
3347 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3348
3349         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3350         hooks.
3351         (gnus-update-read-articles): Speed up non-marks-using users.
3352         (gnus-use-marks): Define gnus-use-marks.
3353         (gnus-propagate-marks): Rename variable to something more sensible.
3354
3355 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3356
3357         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3358         (gmm-image-load-path-for-library): Fix typos in docstrings.
3359         (gmm-message): Reflow docstring.
3360
3361 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3362
3363         * mail-source.el (mail-source-set-1, mail-source-bind):
3364         Move auth-source code out of the macro to clean it up and fix bugs.
3365
3366 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3367
3368         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3369         by sender if it's equal to user-mail-address, it's likely to be
3370         useless.
3371
3372         * mail-source.el (mail-source-bind): Don't use user or password if they
3373         are not bound.  Unintern them if they are nil.  Don't use server unless
3374         it's bound, and default it to empty string otherwise.
3375
3376 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3377
3378         * mail-source.el: Load auth-source.el.
3379         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3380         get user name or password, if auth-sources is set up.
3381
3382         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3383         strategy of splitting with parent.
3384         (gnus-registry-split-fancy-with-parent)
3385         (gnus-registry-post-process-groups): Use it and fix prior
3386         bug (returning a list as the split result).
3387
3388         * auth-source.el (auth-sources): Remove server parameter.
3389         (auth-source-pick, auth-source-user-or-password)
3390         (auth-source-user-or-password-imap)
3391         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3392         (auth-source-user-or-password-sftp)
3393         (auth-source-user-or-password-smtp): Remove server parameter.
3394
3395 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3396
3397         * smime.el (smime-sign-region, smime-encrypt-region)
3398         (smime-decrypt-region):
3399         Remove redundant calls to `generate-new-buffer-name'.
3400
3401 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3402
3403         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3404         Don't use QP for message/rfc822.
3405         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3406
3407 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3408
3409         * sieve-manage.el (sieve-string-bytes): Remove.
3410         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3411         correct byte-length only if the process's coding-system is the same as
3412         the one used internally by Emacs to represent strings.
3413
3414 2008-04-22  Juri Linkov  <juri@jurta.org>
3415
3416         * mailcap.el (mailcap-file-default-commands): New function.
3417
3418 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3419
3420         * message.el (message-signature-separator, message-cite-function):
3421         Change custom version.
3422
3423 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3424
3425         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3426         commands.
3427         (tls-checktrust): Ditto.
3428
3429 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3430
3431         * mm-decode.el (mm-display-external): Make temp file read-only.
3432
3433 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3434
3435         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3436         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3437         `C-c C-f d'.
3438
3439 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3440
3441         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3442
3443 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3444
3445         * gnus.el: Bump version to 0.9.
3446
3447 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3448
3449         * gnus.el: No Gnus v0.8 is released.
3450
3451 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3452
3453         * mail-source.el (mail-source-value):
3454         Prefer fboundp to functionp so it works with macros as well.
3455
3456 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3457
3458         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3459         Fix last change in case the element is not even a symbol.
3460
3461 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3462
3463         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3464         Prefer fboundp to functionp so it works with macros as well.
3465
3466 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3467
3468         * auth-source.el: Added docs.
3469         (auth-sources): Modify format to support server.
3470         (auth-source-pick, auth-source-user-or-password)
3471         (auth-source-user-or-password-imap)
3472         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3473         (auth-source-user-or-password-sftp)
3474         (auth-source-user-or-password-smtp): Add server parameter.
3475
3476 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3477
3478         * gnus-registry.el: Initialize the registry when gnus-registry-install
3479         is t.
3480
3481 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3482
3483         * compface.el (uncompface): Make buffer unibyte.
3484
3485 2008-04-05  Glenn Morris  <rgm@gnu.org>
3486
3487         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3488
3489 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3490
3491         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3492         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3493
3494         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3495         multibyteness after rather than before erasing it.
3496
3497         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3498         mm-with-multibyte.
3499         (gnus-request-article-this-buffer): Make sure the proper decoding is
3500         used if gnus-original-article-buffer happens to be unibyte.
3501
3502         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3503         default-enable-multibyte-characters.
3504
3505         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3506         default-enable-multibyte-characters.
3507
3508         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3509
3510         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3511
3512 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3513
3514         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3515         (imap-message-copyuid-1): Use it.
3516         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3517         J. Williams in
3518         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3519
3520         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3521         imap-enable-exchange-bug-workaround.
3522         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3523
3524 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3525
3526         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3527         a 100 byte status-checks into a 2-3MB transfer for each group.
3528         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3529         to enable bug workaround or not.
3530         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3531
3532 2008-03-31  Glenn Morris  <rgm@gnu.org>
3533
3534         * message.el (mml2015-use): Declare for compiler.
3535         (message-info): Require mml2015 when appropriate.
3536
3537 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3538
3539         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3540         whitespace.
3541
3542 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3543
3544         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3545         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3546         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3547         (nntp-service-to-port): New function.
3548         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3549         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3550         (nntp-open-netcat-stream): New function.
3551         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3552
3553 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3554
3555         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3556
3557 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3558
3559         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3560
3561 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3562
3563         * dns.el (dns-write): Use set-buffer-multibyte.
3564
3565 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3566
3567         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3568
3569 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3570
3571         * message.el (message-signature-separator): Change default.
3572         Improve custom type.
3573         (message-cite-function): Change default to
3574         message-cite-original-without-signature.
3575
3576         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3577         toggle.
3578
3579         * message.el (message-check-news-body-syntax): Fix signature check.
3580         (message-setup-1): Mark buffer as unmodified _after_ running
3581         message-setup-hook and handling message-alternative-emails.
3582         (message-shorten-references): Be more strict when building list of
3583         valid references to comply with GNKSA.
3584
3585         * gnus-group.el (gnus-read-ephemeral-bug-group)
3586         (gnus-read-ephemeral-debian-bug-group)
3587         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3588
3589         * message.el (message-info): Don't use booleanp which isn't supported
3590         in Emacs 21 and XEmacs.
3591
3592 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3593
3594         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3595         gnus-group-gmane-group-download-format.
3596         (gnus-group-read-ephemeral-gmane-group): Rename from
3597         gnus-group-read-ephemeral-gmane-group.
3598         (gnus-read-ephemeral-gmane-group-url): Rename from
3599         gnus-group-read-ephemeral-gmane-group-url.
3600         (gnus-bug-group-download-format-alist): New variable.
3601         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3602         (gnus-read-ephemeral-emacs-bug-group): New commands.
3603
3604 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3605
3606         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3607         (gnus-visible-headers): Improve custom type.
3608
3609 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3610
3611         * mml.el (mml-menu): Add workarounds for XEmacs.
3612
3613         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3614         X-Boundary header.
3615
3616         * message.el (message-simplify-recipients): Fix previous commit.
3617
3618 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3619
3620         * mm-util.el (mm-set-buffer-multibyte): New function.
3621         * mm-decode.el (mm-copy-to-buffer): Use it.
3622
3623 2008-03-19  Glenn Morris  <rgm@gnu.org>
3624
3625         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3626         Accidentally removed in the sync process with Emacs.
3627
3628 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3629
3630         * message.el (message-alter-recipients-discard-bogus-full-name):
3631         New function.
3632         (message-alter-recipients-function): New variable.
3633         (message-get-reply-headers): Use it.
3634         (message-replace-header): New helper function.
3635         (message-recipients-without-full-name): New variable.
3636         (message-simplify-recipients): New command.
3637
3638         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3639
3640         * message.el (message-info): Handle EasyPG manual.
3641
3642         * mml.el (mml-menu): Add entry for EasyPG.
3643
3644 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3645
3646         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3647         parameter.
3648
3649         * message.el (message-disassociate-draft): Specify drafts group name
3650         fully.
3651
3652 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3653
3654         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3655         unnecessary duplicates from the match list.
3656
3657 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3658
3659         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3660
3661         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3662
3663         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3664         args of `how-many' of which the XEmacs version doesn't take; declare
3665         Info-index-next as function.
3666
3667 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3668
3669         * gnus-score.el (gnus-score-headers): Fix handling of
3670         gnus-inhibit-slow-scoring.
3671
3672         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3673         string.
3674         (gnus-button-url-regexp): Improve handling of parenthesis.
3675         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3676         (gnus-button-handle-info-keystrokes): Handle index entries.
3677
3678 2008-03-15  Glenn Morris  <rgm@gnu.org>
3679
3680         * parse-time.el (parse-time-string): Simplify.
3681
3682 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3683
3684         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3685         Incoming* files.
3686
3687 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3688
3689         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3690         (auth-source-pick): Use it.
3691
3692 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3693
3694         * binhex.el (binhex-decode-region-internal):
3695         * uudecode.el (uudecode-decode-region-internal):
3696         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3697         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3698         setting default-enable-multibyte-characters.
3699
3700 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3701
3702         * auth-source.el (auth-source-protocols)
3703         (auth-source-protocols-customize, auth-source-choices): Added and
3704         modified variable customizations and defaults.
3705         (auth-source-pick, auth-source-user-or-password)
3706         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3707         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3708         (auth-source-user-or-password-sftp)
3709         (auth-source-user-or-password-smtp): Use new variables and provide an
3710         interface to netrc.el.
3711
3712 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3713
3714         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3715         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3716         Make sure the nntp port to specify is a string.
3717
3718 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3719
3720         * nntp.el: Use with-current-buffer.
3721         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3722         dubious mm-with-unibyte-current-buffer.
3723         (nntp-with-open-group-function): New function extracted from
3724         nntp-with-open-group macro.
3725         (nntp-with-open-group): Use the function, so it's easier to debug.
3726         Add indentation and debugging info.
3727         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3728         the use of the netcat alternatives.
3729
3730         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3731         Avoid mm-string-as-multibyte as well.
3732
3733         * nnweb.el (nnweb-insert-html):
3734         Remove use of nnheader-string-as-multibyte.
3735
3736         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3737         (nnheader-string-as-multibyte): Remove.
3738
3739         * mm-view.el: Use inhibit-read-only.
3740         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3741         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3742         or unibyte-string.
3743
3744         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3745         (mm-uu-yenc-extract): Use with-current-buffer.
3746
3747         * gnus-soup.el (gnus-soup-send-packet): Don't use
3748         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3749
3750         * nnmh.el: Use with-current-buffer.
3751         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3752         mm-string-as-multibyte on the output of mm-encode-coding-string.
3753
3754         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3755         (nnimap-request-move-article): Use with-current-buffer.
3756
3757         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3758         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3759         conversion uses string-make-unibyte rather than string-as-unibyte.
3760
3761         * gnus-msg.el: Use with-current-buffer.
3762
3763         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3764
3765 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3766
3767         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3768         string for caching if it is 'PIN.
3769
3770 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3771
3772         * lpath.el: Consider the case without Emacs/W3.
3773
3774 2008-03-08  Glenn Morris  <rgm@gnu.org>
3775
3776         * time-date.el (date-to-time, time-subtract, time-add)
3777         (safe-date-to-time): Doc fixes.
3778
3779 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3780
3781         * mail-source.el (mail-source-delete-old-incoming-confirm):
3782         Change default to nil.
3783         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3784
3785 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3786
3787         * lpath.el: Rearrange.
3788
3789         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3790         (gnus-article-goto-prev-page): Work for articles having ^L's.
3791
3792         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3793
3794         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3795
3796 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3797
3798         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3799         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3800         (gnus-bookmark-jump): Adjust some variable names.
3801
3802 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3803
3804         * auth-source.el: New package.
3805         (auth-source-choices): Add customization entry point variable.
3806
3807         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3808         bug.
3809
3810 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3811
3812         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3813         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3814         (gnus-registry-install-shortcuts): Rename from
3815         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3816         the `gnus-registry-mark-map' keymap dynamically from
3817         `gnus-registry-marks'.  The generated functions update the summary line
3818         when a registry mark is added or deleted, and will call
3819         `gnus-registry-install-p' (see the comments in the code).
3820         (gnus-registry-user-format-function-M): Use concat intelligently.
3821
3822         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3823         the registry mark functions.
3824
3825 2008-03-05  Glenn Morris  <rgm@gnu.org>
3826
3827         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3828         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3829         gnus-art.
3830         (top-level): No need to load own source when compiling.
3831
3832 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3833
3834         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3835         Suggested by <chris.anderton@zetnet.co.uk>.
3836
3837 2008-03-04  Glenn Morris  <rgm@gnu.org>
3838
3839         * gnus-sum.el (top-level): No need to require gnus when compiling,
3840         since unconditionally required near start of file.
3841         (gnus-summary-display-while-building): Move definition before use.
3842
3843 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3844
3845         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3846         formatting function.
3847
3848 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3849
3850         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3851         with plists.
3852         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3853         Use new format.
3854
3855 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3856
3857         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3858         `where-is-internal' that returns a range of key sequences.
3859
3860 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3861
3862         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3863
3864         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3865         (gnus-summary-jump-to-group): Consider windows on other displayed
3866         frames as well.  Similar changes might be needed elsewhere, but that's
3867         the one I've bumped into during my use.
3868
3869         * nndoc.el (nndoc-oe-dbx-type-p):
3870         * gnus-msg.el (gnus-debug):
3871         * gnus-group.el (gnus-update-group-mark-positions):
3872         Use mm-string-to-multibyte.
3873
3874 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3875
3876         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3877         doesn't handle NotDashEscaped.
3878
3879         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3880         (mml-dnd-attach-options): Fix typo in custom choice.
3881
3882         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3883         nndoc-article-type to mbox.
3884         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3885
3886         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3887         to nil, instead of html2text.
3888
3889         * imap.el (imap-debug): Add `imap-ping-server'.
3890
3891         * gnus-bookmark.el: Add FIXMEs.
3892
3893         * message.el (message-form-letter-separator)
3894         (message-send-form-letter-delay): New variables.
3895         (message-send-form-letter): Use them.  New command to send form
3896         letters.  Requested by Uwe Siart.
3897         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3898
3899 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3900
3901         * Update copyright years.
3902
3903 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3904
3905         Sync from EMACS_22_BASE.
3906
3907         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3908
3909 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3910
3911         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3912         empty author.
3913
3914 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3915
3916         * gnus-registry.el (gnus-registry-marks): Add variable for
3917         customization of marks and their appearance.
3918         (gnus-registry-read-mark): Use it.
3919         (gnus-registry-do-marks): Add utility function to loop through
3920         `gnus-registry-marks'.
3921         (gnus-registry-install-shortcuts-and-menus): Add function to install
3922         shortcuts and menus.
3923         (gnus-registry-initialize): Use it.
3924         (gnus-registry-default-mark): Clarify documentation.
3925
3926 2008-02-29  Glenn Morris  <rgm@gnu.org>
3927
3928         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3929         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3930         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3931         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3932         Change defcustom :version from 23.0 to 23.1.
3933
3934 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3935
3936         * gnus-registry.el (gnus-registry-follow-group-p)
3937         (gnus-registry-post-process-groups): Add functions to aid registry
3938         splitting and improve logging.  Clarify behavior in function
3939         documentation.
3940         (gnus-registry-split-fancy-with-parent): Use them.
3941
3942 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3943
3944         * gnus-art.el: Use with-current-buffer.
3945
3946 2008-02-27  David Engster  <dengste@eml.cc>
3947
3948         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3949         Express real group name in the response.
3950
3951 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3952
3953         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3954         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3955         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3956         autoload gnus-registry-fetch-group when compiling.
3957         (nnmairix-request-group-with-article-number-correction): Remove
3958         unreferenced argument passed to nnmairix-call-backend.
3959
3960 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3961
3962         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3963         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3964         Wilde.
3965
3966 2008-02-27  Glenn Morris  <rgm@gnu.org>
3967
3968         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3969         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3970         variables to defconsts.  Convert comments to doc-strings.
3971         (nnmairix-last-server, nnmairix-current-server): Convert from free
3972         variables to defvars.  Convert comments to doc-strings.
3973         (gnus-registry-fetch-group): Autoload.
3974         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3975         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3976         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3977         caddr.
3978         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3979         nnmairix-request-group-with-article-number-correction call.
3980         (nnmairix-fast, nnmairix-group): New, less general names, for free
3981         variables passed from nnmairix-request-group to
3982         nnmairix-request-group-with-article-number-correction.  Declare.
3983         (nnmairix-request-group-with-article-number-correction):
3984         Use nnmairix-fast, nnmairix-group rather than fast, group.
3985
3986 2008-02-26  David Engster  <dengste@eml.cc>
3987
3988         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3989         version 0.5.
3990
3991 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3992
3993         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3994         instead of making an extra function call.  Don't add the current group
3995         to articles only when they have the group.  Use
3996         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3997         Reported by David <de_bb@arcor.de>.
3998
3999 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4000
4001         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
4002         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
4003
4004 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
4005
4006         * mail-source.el (mail-source-delete-incoming): Change default.
4007         Supplement doc string.
4008
4009         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
4010
4011 2008-02-14  Glenn Morris  <rgm@gnu.org>
4012
4013         * time-date.el (format-seconds): New function.
4014
4015 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
4016
4017         * nnmail.el (nnmail-message-id-cache-file): Derive from
4018         `gnus-home-directory'.
4019
4020 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
4021
4022         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
4023         Document negative prefix.
4024
4025         * gnus-group.el (gnus-group-read-group): Document negative prefix.
4026
4027 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4028
4029         * message.el (message-unsent-separator): Add the Exim bounce
4030         separator.
4031
4032 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
4033
4034         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
4035         list.
4036         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
4037         recipient/signer list.
4038
4039 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4040
4041         * Makefile.in (datarootdir): Define.
4042         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
4043         name that might contain whitespace.
4044
4045 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
4046
4047         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
4048         fbound (Emacs 23 unicode), signal an error.
4049
4050 2008-02-08  Glenn Morris  <rgm@gnu.org>
4051
4052         * gnus-art.el (pgg-display-output-buffer): Declare as function.
4053
4054 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
4055
4056         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
4057         ports to the calls to `netrc-machine-user-or-password' in addition to
4058         "imap" and "imaps".
4059
4060 2008-02-01  Zhang Wei  <id.brep@gmail.com>
4061
4062         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
4063
4064         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
4065
4066 2008-02-01  Kenichi Handa  <handa@m17n.org>
4067
4068         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
4069         rfc2104-hexstring-to-bitstring and changed to return a byte list.
4070         (rfc2104-hash): Convert the result of concat to unibyte string.
4071
4072 2008-02-01  Dave Love  <fx@gnu.org>
4073
4074         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
4075         coding-system-for-read.
4076         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
4077
4078 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
4079
4080         * gnus.el (gnus-group-startup-message): Add `find-image' call before
4081         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
4082         <hanche@math.ntnu.no>.
4083
4084 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4085
4086         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
4087
4088         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4089
4090 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4091
4092         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4093         * message.el (message-beginning-of-line): Use featurep instead of bound
4094         tests in order to resolve conditionals at compile time.
4095
4096 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4097
4098         * mail-source.el (mail-sources): Add `group' choice.
4099
4100         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4101         parameter `in-group' to control into which group the articles go.
4102         Add treatment of `group' mail-source.
4103
4104 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4105
4106         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4107
4108         * mm-decode.el (mm-dissect-buffer): Decode description.
4109
4110         * mml.el (mml-to-mime): Encode message header first.
4111
4112 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4113
4114         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4115         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4116
4117         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4118         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4119
4120 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4121
4122         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4123
4124 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4125
4126         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4127         prefix keys.
4128         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4129         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4130         gnus-xmas.el.
4131
4132         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4133         (gnus-xmas-article-describe-bindings): New function.
4134         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4135         gnus-xmas-article-describe-bindings.
4136
4137         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4138
4139 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4140
4141         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4142         Add new variables for article mark management.
4143         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4144         list of extra data entries which, when present, will indicate that the
4145         article ID should not be trimmed from the registry.
4146         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4147         functions.
4148         (gnus-registry-read-mark): New function to read a mark name from the
4149         user.
4150         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4151         (gnus-registry-set-article-mark-internal): New functions to add and
4152         remove marks.
4153         (gnus-registry-get-article-marks): New function to show the marks for
4154         an article, or retrieve them for further use.
4155
4156 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4157
4158         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4159         keys when no argument is given.
4160
4161 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4162
4163         * imap.el (imap-ping-server): New variable.
4164         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4165         (imap-ping-server): Minor doc string fixes.
4166
4167 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4168
4169         * imap.el (imap-ping-server): New function.
4170         (imap-opened): Call imap-ping-server.
4171
4172 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4173
4174         * gnus-sum.el (gnus-article-sort-by-random)
4175         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4176         jidanni@jidanni.org.
4177
4178 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4179
4180         * gnus-art.el (gnus-article-describe-bindings): New function.
4181         (gnus-article-read-summary-keys): Use it.
4182         (gnus-article-mode-map): Bind `C-h b' to it.
4183
4184 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4185
4186         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4187         XEmacs.
4188         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4189         against non-character events.
4190
4191         * lpath.el: Fbind map-keymap for Emacs 21.
4192
4193 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4194
4195         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4196         command.
4197         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4198         instead of END.  Change name of the temp file.
4199         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4200         customizable.
4201
4202 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4203
4204         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4205         bind `S W' to gnus-article-wide-reply-with-original; set default
4206         binding to gnus-article-read-summary-send-keys.
4207         (gnus-article-read-summary-keys): Fix the order of keys; display
4208         continuation keys correctly in the echo area; describe bindings
4209         correctly when keys end with `C-h'.
4210         (gnus-article-read-summary-send-keys): New function.
4211         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4212         for gnus-article-read-summary-send-keys; display continuation keys
4213         correctly in the echo area.
4214         (gnus-article-reply-with-original): Ignore prefix argument.
4215         (gnus-article-wide-reply-with-original): New function.
4216
4217         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4218         Emacs 21.
4219
4220 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4221
4222         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4223         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4224
4225 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4226
4227         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4228         (gnus-group-read-ephemeral-gmane-group): New command.
4229
4230 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4231
4232         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4233
4234 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4235
4236         * message.el (message-send-mail-function): Increase custom version.
4237
4238         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4239         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4240
4241 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4242
4243         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4244         for the cases where imap-authenticate is called with a nil buffer
4245         parameter.
4246
4247 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4248
4249         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4250         html parts correctly; support forwarded messages.
4251         (gnus-article-browse-html-article): Remove work buffers.
4252
4253         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4254         compiling.
4255         (netrc-bound-and-true-p): New macro.
4256         (netrc-parse): Use it instead of bound-and-true-p that is not available
4257         in XEmacs 21.4.
4258
4259 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4260
4261         * gnus-registry.el (gnus-registry-mark-article)
4262         (gnus-registry-article-marks): Add functionality to mark articles
4263         through the Gnus registry.
4264
4265         * encrypt.el: Clarify documentation for the new pgg method.
4266         (encrypt-file-alist): Add PGG option.
4267         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4268         functionality.  Abstract password key and messaging to external
4269         functions.
4270         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4271         (encrypt-message-method-and-cipher): Add new convenience external
4272         functions.
4273         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4274         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4275
4276         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4277         (netrc-parse): Use encrypt-file-alist to determine if
4278         encrypt-find-model or encrypt-insert-file-contents should be used.
4279
4280         * encrypt.el: Clarify documentation.  Load password-cache or
4281         password, whichever one is found first, instead of autoloading.
4282
4283 2007-12-19  Glenn Morris  <rgm@gnu.org>
4284
4285         * mml.el (message-options-set, message-narrow-to-head)
4286         (message-in-body-p, message-mail-p, message-encode-message-body):
4287         Autoload.
4288         (message-remove-header, message-narrow-to-headers-or-head)
4289         (message-subscribed-p, message-make-mail-followup-to)
4290         (message-position-on-field, message-news-p)
4291         (message-options-set-recipient, message-generate-headers)
4292         (message-sort-headers): Declare as functions.
4293
4294 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4295
4296         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4297         convention in doc string.
4298
4299 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4300
4301         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4302         title to html parts.
4303         (gnus-article-browse-html-article): Pass message header to it.
4304
4305         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4306
4307 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4308
4309         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4310         or password compatible with XEmacs.
4311
4312 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4313
4314         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4315         format document.
4316         (gnus-mime-delete-part): Don't write description line if empty.
4317         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4318
4319 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4320
4321         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4322         (gnus-summary-mark-read-and-unread-as-read)
4323         (gnus-summary-mark-current-read-and-unread-as-read)
4324         (gnus-summary-mark-unread-as-ticked): Doc fix.
4325         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4326
4327 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4328
4329         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4330         Christoph Conrad <christoph.conrad@gmx.de>.
4331
4332 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4333
4334         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4335         yes-or-no-p.
4336
4337 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4338
4339         * mm-decode.el (mm-add-meta-html-tag): New function.
4340         (mm-save-part-to-file, mm-pipe-part): Use it.
4341
4342         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4343         gnus-y-or-n-p instead of y-or-n-p.
4344         (gnus-article-browse-html-parts): Work with message/external-body; use
4345         mm-add-meta-html-tag.
4346
4347 2007-12-11  Glenn Morris  <rgm@gnu.org>
4348
4349         * gnus-cache.el: Require gnus-sum not just when compiling.
4350
4351         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4352
4353         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4354         definitions before use.
4355
4356         * mm-decode.el: Require gnus-util.
4357         (mm-remove-part): Only call delete-annotation on XEmacs.
4358
4359         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4360
4361         * nnmail.el: Require gnus-int.
4362
4363         * spam.el: Move `require's before `eval-when-compile's.
4364
4365         * gnus-ems.el (gnus-alive-p):
4366         * gnus-fun.el (message-goto-eoh):
4367         * gnus-util.el (gnus-group-name-decode):
4368         * mail-source.el (gnus-compress-sequence):
4369         * message.el (Info-goto-node, format-spec):
4370         * mm-bodies.el (message-options-get):
4371         * mm-decode.el (mm-view-pkcs7):
4372         * mm-util.el (gmm-write-region):
4373         * mml-smime.el (mml-compute-boundary)
4374         (gnus-completing-read-with-default):
4375         * mml.el (widget-button-press, gnus-make-hashtable):
4376         * mml1991.el (mm-decode-content-transfer-encoding)
4377         (mm-encode-content-transfer-encoding)
4378         (message-options-get, message-options-set):
4379         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4380         * nnfolder.el (gnus-request-group):
4381         * nnheader.el (ietf-drums-unfold-fws):
4382         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4383         * smime.el (gnus-run-mode-hooks):
4384         * spam-stat.el (gnus-message): Autoload.
4385
4386         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4387         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4388         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4389         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4390         Add declare-function compatibility definition.
4391
4392         * gnus-cache.el (nnvirtual-find-group-art):
4393         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4394         (gnus-add-image, gnus-add-wash-type):
4395         * gnus-group.el (nnkiboze-score-file):
4396         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4397         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4398         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4399         (message-tokenize-header, gnus-get-buffer-create)
4400         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4401         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4402         * gnus.el (gnus-group-decoded-name):
4403         * mail-source.el (imap-capability):
4404         * mm-bodies.el (message-options-set):
4405         * mm-decode.el (gnus-configure-windows):
4406         * mm-extern.el (message-goto-body):
4407         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4408         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4409         (epg-sub-key-validity, message-options-set):
4410         * mml.el (widget-event-point, gnus-configure-windows):
4411         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4412         * mml2015.el (epg-check-configuration, epg-configuration)
4413         (message-options-set):
4414         * nndb.el (nndb-request-article):
4415         * nnfolder.el (gnus-request-create-group):
4416         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4417         * nnmaildir.el (gnus-group-mark-article-read):
4418         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4419         * rfc1843.el (message-fetch-field):
4420         * spam.el (gnus-extract-address-components):
4421         Declare as functions.
4422
4423 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4424
4425         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4426
4427         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4428
4429         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4430         bind show-trailing-whitespace for XEmacs.
4431
4432 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4433
4434         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4435         new no-op macro for backward compatibility.
4436
4437         * imap.el (imap-string-to-integer): New function.
4438
4439 2007-12-09  Glenn Morris  <rgm@gnu.org>
4440
4441         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4442
4443         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4444         * message.el, mm-view.el, sieve-manage.el, smime.el:
4445         Add declare-function compatibility definition.
4446
4447         * gnus-art.el (w3-region, w3m-region, Info-menu):
4448         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4449         * gnus-sum.el (gnus-get-predicate):
4450         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4451         * message.el (mail-abbrev-in-expansion-header-p):
4452         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4453         (w3m-detect-meta-charset, w3m-region):
4454         * sieve-manage.el (password-read, password-cache-add)
4455         (password-cache-remove):
4456         * smime.el (password-read-and-add): Declare as functions.
4457
4458 2007-12-08  David Kastrup  <dak@gnu.org>
4459
4460         * gnus-sum.el (gnus-summary-simplify-subject-query):
4461         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4462         `message'.
4463
4464 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4465
4466         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4467         it to bind idna-program, installation-directory, defined-colors, and
4468         face-attribute for XEmacs of the version that compiles defcustom forms.
4469
4470 2007-12-07  Glenn Morris  <rgm@gnu.org>
4471
4472         * gnus-art.el (article-make-date-line): Revert previous change.
4473
4474 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4475
4476         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4477
4478 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4479
4480         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4481         Call gnus-add-to-range ranges only once with a prepared article-list.
4482
4483 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4484
4485         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4486         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4487         group names with backslashes.  Reported by Tassilo Horn
4488         <tassilo@member.fsf.org>.
4489
4490 2007-12-06  Deepak Goel  <deego3@gmail.com>
4491
4492         * gnus-art.el (article-make-date-line):
4493         * gnus-start.el (gnus-load):
4494         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4495
4496 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4497
4498         * gnus-art.el (gnus-use-idna)
4499         * gnus-start.el (gnus-site-init-file)
4500         * message.el (message-use-idna)
4501         * mm-uu.el (mm-uu-hide-markers)
4502         * smiley.el (smiley-style): Revert changes that suppress warnings.
4503
4504 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4505
4506         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4507         specify charset to html source.  Reported by Christoph Conrad
4508         <christoph.conrad@gmx.de>.
4509
4510 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4511
4512         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4513         idna-program in order to suppress byte compile warning issued by XEmacs
4514         that came to byte compile the default value section of defcustom forms
4515         recently.
4516
4517         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4518         value of installation-directory.
4519
4520         * message.el (message-use-idna): Don't directly refer to the value of
4521         idna-program.
4522
4523         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4524
4525         * smiley.el (smiley-style): Don't directly call face-attribute.
4526
4527 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4528
4529         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4530
4531         * gnus-dired.el: Reduce Gnus dependencies.
4532         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4533         require.  Use autoloads instead.
4534         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4535         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4536         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4537         (gnus-dired-mode): Adjust doc string.
4538         (gnus-dired-mail-mode): New variable.
4539         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4540         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4541         (gnus-dired-mail-buffers): New function.  Return mail or message
4542         composition buffers.
4543         (gnus-dired-attach): Use it.
4544         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4545         NO-DECODE.
4546         (gnus-dired-print): Use `gnus-print-buffer' depending on
4547         `gnus-dired-mail-mode'.
4548
4549 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4550
4551         * rfc2047.el (rfc2047-encoded-word-regexp)
4552         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4553         explaining what regexp patterns are for.
4554
4555 2007-12-04  Glenn Morris  <rgm@gnu.org>
4556
4557         * password.el: Move to password-cache.el.
4558
4559         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4560         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4561         * mml-smime.el (password-read, password-cache-add)
4562         (password-cache-remove):
4563         No need to autoload, since mml-sec requires password.
4564
4565         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4566         * message.el (gnus-extract-address-components):
4567         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4568
4569         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4570         password.
4571
4572 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4573
4574         * mailcap.el: Reduce dependencies.
4575         (mail-header-parse-content-type): Autoload.
4576         (mailcap-delete-duplicates): New alias.
4577         (mailcap-mime-info): Add optional argument NO-DECODE.
4578         (mailcap-mime-types): Use mailcap-delete-duplicates.
4579
4580         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4581
4582 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4583
4584         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4585         (imap-parse-status): Upcase status-att for servers that sends them
4586         lower-case (e.g., MS Exchange 2007).
4587
4588 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4589
4590         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4591         function.
4592
4593         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4594         (gnus-uu-yenc-article): New function.
4595
4596         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4597
4598         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4599         buffer.
4600
4601 2007-12-02  Glenn Morris  <rgm@gnu.org>
4602
4603         * binhex.el (binhex): New custom group.
4604         (binhex-decoder-program, binhex-decoder-switches)
4605         (binhex-use-external): Move to the binhex custom group.
4606
4607         * uudecode.el (uudecode): New custom group.
4608         (uudecode-decoder-program, uudecode-decoder-switches)
4609         (uudecode-use-external): Move to the uudecode custom group.
4610
4611         * netrc.el (top-level): Don't load `encrypt' features.
4612         (netrc-parse): Don't use encrypt.
4613         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4614
4615         * encrypt.el: Remove file.
4616
4617 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4618
4619         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4620         matches on patches.
4621
4622         * gnus-art.el (gnus-article-browse-html-article): Mention
4623         `mm-text-html-renderer' in the doc string.
4624
4625         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4626         string.  Add comments.
4627
4628         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4629         if rhs is ASCII.
4630
4631 2007-12-01  Glenn Morris  <rgm@gnu.org>
4632
4633         * mail-source.el (top-level): Require format-spec before
4634         eval-when-compile.
4635
4636 2007-11-30  Glenn Morris  <rgm@gnu.org>
4637
4638         * encrypt.el: Require password, rather than autoloading password-read.
4639
4640 2007-11-29  Glenn Morris  <rgm@gnu.org>
4641
4642         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4643         (sasl-make-client, sasl-next-step, sasl-step-data)
4644         (sasl-step-set-data): Declare as functions.
4645
4646 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4647
4648         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4649
4650 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4651
4652         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4653         certs should be verified and what is to be done in the event of a
4654         verification failure.
4655
4656         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4657         caller can indicate whether the cache should be disregarded for this
4658         call.  This way the result of the call is reproducible at all times and
4659         can be considered a canonical server name for the supplied method.
4660         (gnus-agent-method-p): Canonicalize server names by pushing their
4661         method through `gnus-method-to-server' using the no-cache argument.
4662
4663         * gnus-srvr.el (gnus-server-insert-server-line): Call
4664         `gnus-method-to-server' with `no-cache' argument.
4665
4666         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4667         gnus-agent-possibly-synchronize-flags as this should be called when the
4668         server is actually being opened.
4669         (gnus-agent-possibly-synchronize-flags)
4670         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4671         flags file of an agentized server to the latter function.
4672
4673         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4674         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4675         after a connection has been established successfully.
4676
4677 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4678
4679         * gnus-art.el (article-display-face): Force to display face if called
4680         interactively; check if gnus-article-x-face-too-ugly matches author.
4681         (article-display-x-face): Display face even if From header is missing
4682         as article-display-face does.
4683
4684 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4685
4686         * hashcash.el (message-narrow-to-headers-or-head)
4687         (message-fetch-field, message-goto-eoh)
4688         (message-narrow-to-headers): Declare as functions.
4689
4690 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4691
4692         * mail-source.el (mail-sources): Default to fetch from file for
4693         compatibility with default of nnmail-spool-file.
4694
4695 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4696
4697         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4698         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4699         to look for encoded word that should be encoded again.
4700         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4701         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4702         encoding pattern.
4703         (rfc2047-decode-region): Switch strict regexp and loose one according
4704         to rfc2047-allow-irregular-q-encoded-words.
4705
4706 2007-11-25  Romain Francoise  <romain@orebokech.com>
4707
4708         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4709
4710 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4711
4712         * tls.el (tls-program): Provide more custom choices from
4713         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4714         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4715
4716 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4717
4718         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4719         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4720
4721         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4722         `nnmail-spool-file'.
4723
4724         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4725         `nnmail-spool-file'.
4726
4727         * gnus-move.el (gnus-change-server): Ditto.
4728
4729         * gnus-kill.el (gnus-batch-score): Ditto.
4730
4731         * gnus-cache.el (gnus-jog-cache): Ditto.
4732
4733         * gnus-msg.el (gnus-summary-reply):
4734         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4735
4736 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4737
4738         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4739         version.  Minor improvement to doc strings.
4740         (tls-program): Add comment.
4741
4742 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4743
4744         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4745         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4746         mismatch between the hostname provided in the certificate and the name
4747         of the host connnecting to.
4748         (open-tls-stream): Use them.  Check certificates against trusted root
4749         certificates.
4750
4751 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4752
4753         * gnus-cache.el (gnus-cache-generate-nov-databases):
4754         Use nnml-generate-nov-databases-directory instead of
4755         nnml-generate-nov-databases-1.
4756
4757 2007-11-24  Glenn Morris  <rgm@gnu.org>
4758
4759         * message.el (message-tool-bar-retro): Update for rename
4760         mail_send.xpm->mail-send.xpm.
4761
4762 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4763
4764         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4765         `smime-ldap-search' for Emacs 22 and up.
4766
4767 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4768
4769         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4770
4771         * message.el (message-send-mail-function): Fix error convention.
4772         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4773         (message-widen-reply, message-send-mail, message-talkative-question)
4774         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4775         (message-clone-locals, message-send-news): Use with-current-buffer.
4776         (message-insert-or-toggle-importance): Remove unused var `valid'.
4777         (message-make-references): Remove unused var `new-references'.
4778         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4779
4780 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4781
4782         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4783         (spam-split-symbolic-return-positive): Reflow docstring.
4784         (spam-backends, spam-summary-exit-behavior)
4785         (spam-mark-ham-unread-before-move-from-spam-group)
4786         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4787         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4788         (spam-clear-cache, spam-backend-check, spam-install-backend)
4789         (spam-install-statistical-backend, spam-list-of-processors)
4790         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4791         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4792         (spam-check-crm114, spam-initialize, spam-unload-hook):
4793         Fix typos in docstrings.
4794
4795 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4796
4797         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4798         been checked if they have never been read and those group levels are
4799         higher than the one that a user specified.
4800
4801 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4802
4803         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4804         foreign groups unless a group level is specified by a user.
4805         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4806
4807 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4808
4809         * message.el (message-send-mail-function): Require sendmail.
4810
4811 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4812
4813         * message.el (message-send-mail-function): Check for smtpmail too.
4814
4815         * utf7.el (utf7-encode, utf7-decode): Use coding system
4816         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4817
4818         * message.el (message-send-mail-function): New function.
4819         (message-send-mail-function): Set default using
4820         message-send-mail-function.  Adjust doc string.
4821         (message-send-mail-with-mailclient): New function.
4822
4823 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4824
4825         * smime.el (from):
4826         * rfc2047.el (message-posting-charset):
4827         * qp.el (mm-use-ultra-safe-encoding):
4828         * pop3.el (parse-time-months):
4829         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4830         * nnml.el (files):
4831         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4832         (jka-compr-compression-info-list, ange-ftp-path-format)
4833         (efs-path-regexp):
4834         * nndiary.el (files):
4835         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4836         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4837         (epg-digest-algorithm-alist, inhibit-redisplay)
4838         (password-cache-expiry):
4839         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4840         (pgg-output-buffer, password-cache-expiry):
4841         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4842         (efs-path-regexp):
4843         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4844         (inhibit-redisplay):
4845         * mm-uu.el (file-name, start-point, end-point, entry)
4846         (gnus-newsgroup-name, gnus-newsgroup-charset):
4847         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4848         (latin-unity-ucs-list):
4849         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4850         (mm-uu-binhex-decode-function):
4851         * message.el (gnus-message-group-art, gnus-list-identifiers)
4852         (rmail-enable-mime-composing, gnus-local-organization)
4853         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4854         (gnus-read-active-file, facemenu-add-face-function)
4855         (facemenu-remove-face-function, gnus-article-decoded-p)
4856         (tool-bar-mode):
4857         * mail-source.el (display-time-mail-function):
4858         * gnus-util.el (nnmail-pathname-coding-system)
4859         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4860         (gnus-original-article-buffer, gnus-user-agent)
4861         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4862         (xemacs-codename, sxemacs-codename, emacs-program-version):
4863         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4864         * gnus-start.el (gnus-agent-covered-methods)
4865         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4866         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4867         (gnus-newsgroup-headers, gnus-group-list-mode)
4868         (gnus-group-mark-positions, gnus-newsgroup-data)
4869         (gnus-newsgroup-unreads, nnoo-state-alist)
4870         (gnus-current-select-method, mail-sources)
4871         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4872         (nnmail-spool-file, gnus-cache-active-hashtb):
4873         * gnus-mh.el (mh-lib-progs):
4874         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4875         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4876         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4877         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4878         (gnus-group-buffer):
4879         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4880         (font-lock-set-defaults):
4881         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4882         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4883         (gnus-summary-post-menu, total-parts, type, condition, length):
4884         * gnus-agent.el (gnus-agent-read-agentview):
4885         * flow-fill.el (show-trailing-whitespace):
4886         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4887         eval-and-compile wrappers for byte compiler pacifiers.
4888
4889         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4890         (mm-display-inline-fontify): Check for featurep 'xemacs not
4891         extent-list.
4892
4893         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4894         itimer-list.
4895         (mm-create-image-xemacs): Only do something for XEmacs.
4896         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4897
4898         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4899
4900         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4901         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4902
4903 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4904
4905         * nnimap.el (nnimap-split-download-body):
4906         * gnus-demon.el (gnus-demon):
4907         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4908
4909 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4910
4911         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4912         macros.
4913         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4914         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4915         copy data from unibyte buffer to multibyte current buffer.
4916         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
4917         to copy data from unibyte current buffer to multibyte buffer.
4918         (nntp-make-process-buffer): Make process buffer unibyte.
4919
4920         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4921
4922 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4923
4924         * pop3.el (pop3-open-server): Accept and process data more robustly at
4925         connexion start to avoid spurious "POP SSL connexion failed" errors.
4926
4927 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4928
4929         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4930         read group names.
4931
4932 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4933
4934         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4935
4936 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4937
4938         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4939         (nnmail-save-active): Use a unibyte buffer when saving active file,
4940         which may contain non-ASCII group names.
4941
4942         * nnml.el (nnml-request-group): Decode group names in messages.
4943
4944 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4945
4946         * message.el (message-citation-line-function)
4947         (message-insert-formatted-citation-line): Fix spelling of
4948         `message-insert-formated-citation-line'.
4949
4950 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4951
4952         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4953
4954 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4955
4956         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4957         nnmail-pathname-coding-system.
4958
4959         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4960         that a user enters; decode group names in messages.
4961
4962         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
4963
4964 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
4965
4966         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
4967
4968         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
4969
4970         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
4971         risky local variable.
4972
4973         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
4974
4975 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4976
4977         * encrypt.el: Improve documentation to fix function name typo.
4978         Reported by Daiki Ueno <ueno@unixuser.org>.
4979
4980 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4981
4982         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
4983         even if the point is not in the last page of an article.
4984         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
4985         back to the previous page.
4986
4987 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
4988
4989         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
4990
4991 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4992
4993         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
4994
4995 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4996
4997         * message.el (message-check-news-body-syntax): Avoid
4998         mm-string-as-multibyte.
4999         (message-hide-headers): Don't assume (point-min)==1.
5000
5001 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
5002
5003         * message.el (message-remove-blank-cited-lines): Fix if remove is
5004         given.
5005         (message-bogus-address-regexp): New variable.
5006         (message-bogus-recipient-p): New function.
5007         (message-check-recipients): New command.
5008         (message-syntax-checks): Add `bogus-recipient'.
5009         (message-fix-before-sending): Add `bogus-recipient'.
5010
5011         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
5012         (gnus-treat-body-boundary): Don't test window-system.
5013
5014 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
5015
5016         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
5017
5018 2007-10-28  Miles Bader  <miles@gnu.org>
5019
5020         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
5021         at compile-time too.
5022
5023 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
5024
5025         * gnus-msg.el (gnus-message-setup-hook): Add
5026         `message-remove-blank-cited-lines' to options.
5027
5028 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
5029
5030         * message.el (message-remove-blank-cited-lines): New function.
5031         Suggested by Karl Plästerer.
5032
5033 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5034
5035         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
5036         mapc.
5037
5038         * imap.el (imap-open): Replace mapcar called for effect with mapc.
5039         (top-level): Use mapc to set functions to be traced for debugging.
5040
5041         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
5042         called for effect with while loop.
5043
5044         * message.el (message-talkative-question): Replace mapcar called for
5045         effect with mapc.
5046
5047         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
5048         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
5049         called for effect with dolist.
5050
5051         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
5052
5053         * nndiary.el: Use dolist instead of mapcar to add diary headers to
5054         gnus-extra-headers and nnmail-extra-headers.
5055
5056         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
5057         called for effect with dolist.
5058         (top-level): Use mapc to set functions to be traced for debugging.
5059
5060         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
5061         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
5062         dolist.
5063
5064         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
5065         Replace mapcar called for effect with mapc.
5066         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
5067         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
5068         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
5069         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
5070
5071         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
5072         remove-if that's a cl function.
5073
5074         * webmail.el (webmail-debug): Replace mapcar called for effect with
5075         dolist.
5076
5077         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
5078         with mapc.
5079
5080 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5081
5082         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
5083         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
5084         with while loop.
5085
5086         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
5087         functions from article-* functions.
5088         (gnus-multi-decode-header): Replace mapcar called for effect with
5089         dolist.
5090
5091         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5092         (gnus-bookmark-show-details): Replace mapcar called for effect with
5093         while loop.
5094
5095         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5096         called for effect with while loop.
5097
5098         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5099         with dolist.
5100
5101         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5102         mapcar called for effect with dolist.
5103
5104         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5105
5106         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5107         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5108         Replace mapcar called for effect with dolist.
5109         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5110         mapc.
5111
5112         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5113         Replace mapcar called for effect with dolist.
5114         (gnus-topic-list): Replace mapcar called for effect with mapc.
5115
5116         * gnus.el: Use mapc instead of mapcar to add autoloads.
5117
5118 2007-10-23  Richard Stallman  <rms@gnu.org>
5119
5120         * gnus-group.el (gnus-group-highlight): Mark as risky.
5121
5122 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5123
5124         * gnus.el (gnus-server-to-method): Return method found first in
5125         gnus-newsrc-alist.
5126
5127         * gnus-art.el (gnus-article-highlight-signature)
5128         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5129         button overlay without the front stickiness.
5130
5131 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5132
5133         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5134         overview buffer needed a catch to receive its throw.
5135         (gnus-agent-flush-cache): Declared as interactive to make this function
5136         easier to use.
5137
5138 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5139
5140         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5141         `next-line'.
5142
5143 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5144
5145         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5146         exclude address matching message-dont-reply-to-names.
5147
5148 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5149
5150         * gnus-util.el (gnus-string<): New function.
5151
5152         * gnus-sum.el (gnus-article-sort-by-author)
5153         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5154
5155 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5156
5157         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5158         the frame-focus tag is set in gnus-buffer-configuration.
5159
5160 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5161
5162         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5163         the front stickiness.
5164
5165 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5166
5167         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5168         url pattern; remove duplicate one.
5169         (gnus-article-extend-url-button): New function.
5170         (gnus-article-add-buttons): Use it.
5171         (gnus-button-push): Use concatenated url that it makes.
5172
5173 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5174
5175         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5176
5177 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5178
5179         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5180         Don't hardcode point-min==1.
5181
5182 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5183
5184         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5185         Fix comment about "iso8859-1".
5186
5187 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5188
5189         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5190         ones returned from the verify-function.
5191
5192         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5193         mml2015-extract-cleartext-signature if extraction failed.
5194
5195 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5196
5197         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5198         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5199         failed.
5200
5201 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5202
5203         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5204
5205 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5206
5207         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5208         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5209         recommends to use EasyPG instead of PGG.
5210
5211         * pgg.el: Revert to revision 6.23.2.16.
5212
5213         * pgg-def.el: Revert to revision 6.6.2.14.
5214
5215         * pgg-gpg.el: Revert to revision 6.23.2.34.
5216
5217 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5218
5219         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5220         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5221         thread for both the null and zero (kill/expire thread) universal prefix
5222         cases.
5223         (gnus-summary-expire-thread): Add new function to expire a thread,
5224         using gnus-summary-kill-thread.
5225         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5226         shortcuts for gnus-summary-expire-thread.
5227         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5228         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5229
5230 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5231
5232         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5233         extras value, so an extras entry can be deleted.
5234         (gnus-registry-delete-extra-entry): Use it.
5235         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5236         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5237         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5238         storage through the gnus-registry, and provide an appropriate API for
5239         it.
5240
5241 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5242
5243         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5244         Suggested by Leo <sdl.web@gmail.com>.
5245
5246         * gnus.el: Do.
5247
5248 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5249
5250         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5251         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5252
5253         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5254
5255         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5256         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5257
5258 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5259
5260         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5261         newline.
5262         (nnmbox-request-accept-article): Don't change article in source buffer;
5263         narrow to header to use message-fetch-field rather than
5264         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5265         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5266         as delimiters; make sure article ends with newline.
5267         (nnmbox-delete-mail): Correct last position of article to be deleted;
5268         ignore X-Gnus-Newsgroup header in article body.
5269         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5270         positions; make sure article ends with newline.
5271
5272         * message.el (message-display-abbrev): Don't infloop when a user
5273         inserts SPC in the beginning of header.
5274
5275         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5276         coding-system-for-read and coding-system-for-write for XEmacs having no
5277         file-coding feature.
5278
5279         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5280
5281 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5282
5283         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5284         list of groups not followed by default.  Fix type to be regexp.
5285         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5286
5287 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5288
5289         * hmac-def.el (define-hmac-function): Switch from old-style to
5290         new-style backquotes.
5291
5292         * md4.el (md4-make-step): Likewise.
5293
5294 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5295
5296         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5297         raw-text coding system when saving .newsrc file, which may contain
5298         non-ASCII group names.
5299
5300 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5301
5302         * gnus-cus.el (gnus-score-extra): New widget.
5303         (gnus-score-extra-convert): New function.
5304         (gnus-score-customize): Use it for Extra.
5305
5306 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5307
5308         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5309         (mml2015-mailcrypt-clear-verify): Use it.
5310         (mml2015-gpg-clear-verify): Use it.
5311         (mml2015-pgg-clear-verify): Use it.
5312         (mml2015-epg-clear-verify): Replace the current part with the output
5313         from GnuPG; don't extract the plaintext by itself.
5314
5315         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5316         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5317         mml2015-clear-verify-function; don't touch the armor headers or
5318         dash-escaped text here.
5319
5320 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5321
5322         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5323         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5324         parts, or application/octet-stream as a last resort.
5325         (gnus-mime-view-part-as-type): Don't toggle display.
5326         (gnus-mime-view-part-as-charset): Don't turn off display before
5327         querying charset.
5328
5329         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5330         stuff to undisplayer function in Emacs.
5331         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5332
5333         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5334         text/calendar parts.
5335
5336 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5337
5338         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5339         decoding text/calendar parts.
5340
5341         * message.el (message-forward-make-body-mime): Always mark body as
5342         having no illegible text; remove signed-or-encrypted argument.
5343         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5344
5345         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5346         (mml-generate-mime-1): Don't encode body if it is specified to be in
5347         raw form; don't make buffer be unibyte when inserting multibyte string.
5348
5349 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5350
5351         * sha1.el: Fix up comment style.
5352         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5353         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5354
5355         * hex-util.el: Fix up comment style.
5356         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5357
5358         * gnus-salt.el: Use with-current-buffer.
5359         (gnus-pick-setup-message): Fix long-standing typo.
5360
5361 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5362
5363         * imap.el (imap-logout-timeout): New variable.
5364         (imap-logout, imap-logout-wait): New functions.
5365         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5366
5367         * nnimap.el (nnimap-logout-timeout): New server variable.
5368         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5369         nnimap-logout-timeout.
5370
5371         * gnus-art.el (gnus-article-summary-command-nosave)
5372         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5373
5374 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5375
5376         * gnus.el (gnus-maximum-newsgroup): New variable.
5377
5378         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5379         according to gnus-maximum-newsgroup.
5380
5381         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5382         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5383         Limit the range of articles according to gnus-maximum-newsgroup.
5384
5385 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5386
5387         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5388         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5389         Don't perform gnus-configure-windows here; reuse existing sticky
5390         article buffer.
5391
5392         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5393         it doesn't exist in gnus-article-mode.
5394
5395 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5396
5397         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5398         (gnus-agent-decoded-group-name): New function.
5399         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5400         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5401
5402 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5403
5404         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5405         Add binding for gnus-sticky-article.
5406         (gnus-summary-exit): Don't kill sticky article buffers.
5407
5408         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5409         article buffer.
5410         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5411         (gnus-kill-sticky-article-buffers): New commands.
5412
5413 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5414
5415         * nntp.el (nntp-xref-number-is-evil): New server variable.
5416         (nntp-find-group-and-number): If it is non-nil, don't trust article
5417         numbers in the Xref header.
5418
5419 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5420
5421         * gnus-agent.el (gnus-agent-read-group): New function.
5422         (gnus-agent-flush-group, gnus-agent-expire-group)
5423         (gnus-agent-regenerate-group): Use it.
5424         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5425         nnmail-pathname-coding-system.
5426
5427 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5428
5429         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5430
5431         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5432         that are unread as unread, and also as selected so that information of
5433         marks having been changed by a user may be updated when exiting group.
5434
5435 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5436
5437         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5438         calculated ignoring signature parts to gnus-treat-article.
5439
5440 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5441
5442         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5443         a point here in order to keep the window start.
5444         (gnus-insert-mime-security-button): Make a button overlay without the
5445         front stickiness.
5446         (gnus-mime-display-security): Goto the end of a button.
5447
5448         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5449
5450 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5451
5452         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5453         group-name-at-point.
5454         (gnus-group-completing-read): New function that offers decoded
5455         non-ASCII group names for completion.
5456         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5457         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5458         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5459         (gnus-group-fetch-control): Use it.
5460         (gnus-fetch-group): Use group-name-at-point for the initial value
5461         rather than the default value; use gnus-alive-p.
5462
5463         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5464         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5465         (gnus-summary-post-news): Use gnus-group-completing-read.
5466
5467         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5468         (gnus-read-move-group-name): Decode group name for completion.
5469
5470 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5471
5472         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5473         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5474         Yamaoka slightly modified the code).
5475
5476 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5477
5478         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5479         (nnmail-split-incoming): Bind it.
5480
5481         * nnml.el (nnml-group-name-charset): New function.
5482         (nnml-decoded-group-name): Use it; don't decode group name if
5483         nnmail-group-names-not-encoded-p is non-nil.
5484         (nnml-encoded-group-name): New function.
5485         (nnml-group-pathname): Inline nnml-decoded-group-name.
5486         (nnml-request-expire-articles): Decode group name in message.
5487         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5488         nnmail-pathname-coding-system.
5489         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5490         not decoded ones according to nnmail-group-names-not-encoded-p.
5491         (nnml-generate-active-info): Use nnml-encoded-group-name.
5492
5493 2007-08-08  Glenn Morris  <rgm@gnu.org>
5494
5495         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5496         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5497         doc-strings and comments.
5498
5499 2007-07-25  Glenn Morris  <rgm@gnu.org>
5500
5501         * Relicense all FSF files to GPLv3 or later.
5502
5503 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5504
5505         * gnus-sum.el (gnus-summary-move-article): Make
5506         gnus-summary-respool-article work.
5507
5508 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5509
5510         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5511         string.
5512
5513 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5514
5515         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5516         that should be ignored when comparing distant RSS articles with local
5517         ones.
5518         (nnrss-make-hash-index): New function.  Create a hash index according
5519         to the ignored fields.
5520         (nnrss-check-group): Use it.
5521
5522 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5523
5524         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5525
5526         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5527
5528         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5529         the new optional argument ENCODED is non-nil.
5530         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5531         coding system for encoding group name.
5532         (gnus-group-make-rss-group): Pass un-encoded group name to
5533         gnus-group-make-group.
5534         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5535         encoded.
5536
5537         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5538         Encode group name to which articles are moved or copied.
5539         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5540         coding system for encoding Newsgroup, Followup-To and Xref headers.
5541
5542         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5543         marks; use nnheader-file-coding-system to write a file.
5544         (nnagent-retrieve-headers): Bind file-name-coding-system to
5545         nnmail-pathname-coding-system.
5546
5547         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5548
5549         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5550         (nnml-request-article, nnml-request-create-group)
5551         (nnml-request-rename-group, nnml-find-id)
5552         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5553         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5554         (nnml-save-marks): Use nnml-group-pathname instead of
5555         nnmail-group-pathname.
5556
5557         (nnml-request-create-group, nnml-request-expire-articles)
5558         (nnml-request-move-article, nnml-request-delete-group)
5559         (nnml-deletable-article-p, nnml-possibly-create-directory)
5560         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5561         (nnml-open-marks): Bind file-name-coding-system to
5562         nnmail-pathname-coding-system.
5563
5564         (nnml-request-article): Pass server argument to nnml-find-group-number.
5565         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5566         server argument to nnml-possibly-create-directory.
5567         (nnml-request-accept-article): Pass server argument to
5568         nnml-active-number and nnml-save-mail.
5569         (nnml-find-group-number): Pass server argument to nnml-find-id.
5570         (nnml-request-update-info): Pass server argument to
5571         nnml-marks-changed-p.
5572
5573         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5574         (nnml-save-mail, nnml-active-number): Add server argument.
5575
5576         (nnml-request-delete-group): Warn if group is missing.
5577         (nnml-get-nov-buffer): Decode group name.
5578         (nnml-generate-active-info): Encode group name.
5579         (nnml-open-marks): Decode group name in messages.
5580
5581 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5582
5583         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5584         if it is not specified.
5585         (gnus-article-pipe-part, gnus-article-save-part)
5586         (gnus-article-interactively-view-part, gnus-article-copy-part)
5587         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5588         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5589         (gnus-article-replace-part, gnus-article-delete-part)
5590         (gnus-article-view-part-as-type): Pass raw prefix argument to
5591         gnus-article-part-wrapper.
5592
5593 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5594
5595         * gnus-agent.el (gnus-agent-save-active): Bind
5596         nnheader-file-coding-system to gnus-agent-file-coding-system.
5597
5598         * gnus-cache.el (gnus-cache-save-buffers)
5599         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5600         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5601         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5602         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5603         (gnus-cache-generate-active, gnus-cache-rename-group)
5604         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5605         (gnus-cache-update-overview-total-fetched-for): Bind
5606         file-name-coding-system to nnmail-pathname-coding-system.
5607         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5608         variables.
5609         (gnus-cache-decoded-group-name): New function.
5610         (gnus-cache-file-name): Use it.
5611         (gnus-cache-generate-active): Use non-decoded group name for active.
5612
5613         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5614         right place.
5615         (gnus-write-active-file): Don't break non-ASCII group names.
5616
5617         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5618         nnmail-pathname-coding-system.
5619
5620         * lpath.el: Bind default-file-name-coding-system,
5621         file-name-coding-system and language-info-alist for XEmacs.
5622
5623         * gnus-uu.el (gnus-uu-decode-save): Typo.
5624
5625 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5626
5627         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5628
5629 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5630
5631         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5632         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5633         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5634         (gnus-agent-flush-group, gnus-agent-flush-cache)
5635         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5636         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5637         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5638         (gnus-agent-regenerate-group)
5639         (gnus-agent-update-files-total-fetched-for)
5640         (gnus-agent-update-view-total-fetched-for): Bind
5641         file-name-coding-system to nnmail-pathname-coding-system.
5642         (gnus-agent-group-pathname): Don't encode file names by
5643         nnmail-pathname-coding-system.
5644         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5645         coding-system-for-write instead of buffer-file-coding-system to
5646         gnus-agent-file-coding-system.
5647
5648         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5649         Decode group name.
5650
5651         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5652
5653         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5654         (gnus-read-newsrc-el-file): Make group names unibyte.
5655
5656         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5657         nnmail-pathname-coding-system.
5658
5659         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5660         (nnrss-request-delete-group): Bind file-name-coding-system to
5661         nnmail-pathname-coding-system.
5662         (nnrss-read-server-data, nnrss-read-group-data): Bind
5663         file-name-coding-system correctly.
5664         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5665
5666         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5667         (nntp-server-to-method-cache): New variable.
5668         (nntp-group-pathname): New function that decodes non-ASCII group names.
5669         (nntp-possibly-create-directory, nntp-marks-changed-p)
5670         (nntp-save-marks, nntp-open-marks): Use it.
5671         (nntp-possibly-create-directory, nntp-open-marks):
5672         Bind file-name-coding-system to nnmail-pathname-coding-system.
5673         (nntp-open-marks): Decode group names when bootstrapping marks.
5674
5675         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5676         Newsgroups and Folowup-To headers.
5677
5678 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5679
5680         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5681         (gnus-server-closed-face, gnus-server-denied-face)
5682         (gnus-server-offline-face): Remove variable.
5683         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5684
5685         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5686         of modifying message-stack directly for XEmacs.
5687
5688         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5689         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5690         if the coding-system argument is nil for XEmacs.
5691
5692         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5693         mm-charset-override-alist.
5694
5695         * rfc2047.el: Don't require base64; require rfc2045 for the function
5696         rfc2045-encode-string.
5697         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5698         to quote the parameter value.
5699
5700 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5701
5702         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5703         form in gnus-group-name-charset-method-alist.
5704
5705         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5706         overrides the default layout edit-form.
5707
5708         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5709
5710         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5711
5712 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5713
5714         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5715         as unfetched articles.
5716
5717 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5718
5719         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5720
5721 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5722
5723         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5724         original back end that keeps marks in the local system.
5725
5726 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5727
5728         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5729         arg of pop-to-buffer for XEmacs.
5730         (gnus-article-read-summary-keys): Ditto; don't restore window
5731         configuration if summary command ends up with neither article buffer
5732         nor summary buffer; describe bindings if summary keys end with C-h.
5733
5734 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5735
5736         * message.el (message-fix-before-sending): Skip raw message part to be
5737         forwarded while checking illegible text.
5738         (message-forward-make-body-mime, message-forward-make-body): Mark
5739         signed or encrypted raw message as having no illegible text.
5740
5741 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5742
5743         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5744         (gnus-message-with-timestamp-1): New macro.
5745         (gnus-message-with-timestamp): New function.
5746         (gnus-message): Use them.
5747
5748         * nnheader.el (nnheader-message): Use them.
5749
5750 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5751
5752         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5753         .newsrc.eld file.
5754
5755 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5756
5757         * gnus-agent.el (gnus-agent-fetch-headers)
5758         (gnus-agent-retrieve-headers): Bind
5759         gnus-decode-encoded-address-function to identity.
5760
5761         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5762         available also when the server returns simply a dot.
5763
5764         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5765
5766 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5767
5768         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5769
5770 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5771
5772         * gnus-ems.el (gnus-x-splash): Make it work.
5773
5774         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5775         from being used.
5776
5777         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5778
5779 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5780
5781         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5782         4th and the 5th arguments.
5783
5784         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5785         the front stickiness.
5786         (gnus-article-summary-command-nosave): Correct the order of the
5787         arguments passed to pop-to-buffer.
5788         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5789         summary command ends up with the article buffer.
5790
5791         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5792         the same faces.
5793
5794 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5795
5796         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5797
5798 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5799
5800         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5801         * gnus-sum.el (gnus-summary-highlight):
5802         * pgg.el (pgg-sign-region, pgg-sign):
5803         * mail-source.el (mail-source-delete-old-incoming-confirm):
5804         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5805
5806 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5807
5808         * gnus-art.el (gnus-mime-view-part-externally)
5809         (gnus-mime-view-part-internally): Fix predicate function passed to
5810         completing-read.
5811
5812         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5813
5814         * gnus.el (gnus-update-message-archive-method): Add :version.
5815
5816 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5817
5818         * gnus.el (gnus-update-message-archive-method): New variable.
5819
5820         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5821         according to gnus-message-archive-method if
5822         gnus-update-message-archive-method is non-nil.
5823
5824 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5825
5826         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5827         by Loic Dachary <loic@dachary.org>.
5828         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5829
5830 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5831
5832         * message.el (message-pop-to-buffer): Add switch-function argument.
5833         (message-mail): Pass switch-function argument to it.
5834
5835 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5836
5837         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5838         Improve doc string.
5839
5840 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5841
5842         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5843         (gnus-header-content)
5844         * gnus-cite.el (gnus-cite-10)
5845         * gnus-srvr.el (gnus-server-closed)
5846         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5847         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5848         (gnus-group-mail-3-empty, gnus-group-mail-low)
5849         (gnus-group-mail-low-empty, gnus-splash)
5850         * message.el (message-header-to, message-header-cc)
5851         (message-header-subject, message-header-other, message-header-name)
5852         (message-header-xheader, message-separator, message-cited-text)
5853         (message-mml): Lighten colors of faces used for dark background.
5854
5855 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5856
5857         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5858         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5859
5860 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5861
5862         * message.el (message-narrow-to-headers-or-head):
5863         Ignore mail-header-separator in the body.
5864
5865 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5866
5867         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5868         same as window size.
5869
5870 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5871
5872         * message.el (message-font-lock-keywords): Use message-header-xheader
5873         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5874         ahead of the anything pattern, to get it recognised.
5875
5876 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5877
5878         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5879         spam.el loads uses it in the compiled defadvice form.
5880
5881 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5882
5883         * gnus-sum.el (gnus-articles-to-read)
5884         (gnus-summary-insert-old-articles): Don't truncate group name for
5885         `read-string'.
5886
5887         * gnus-util.el (gnus-limit-string): Delete this function.
5888
5889         * gnus-sum.el (gnus-simplify-subject-fully): Use
5890         `truncate-string-to-width' instead.
5891
5892 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5893
5894         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5895         if, on summary exit, the next group has to be selected.
5896         (gnus-summary-exit): Use it.
5897
5898 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5899
5900         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5901         non-break space.
5902
5903 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5904
5905         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5906         Check if group is not a directory.
5907         (nnfolder-request-expire-articles): Don't delete articles if the target
5908         group is not available.
5909
5910         * nnml.el (nnml-request-create-group): Properly check if group is not a
5911         file.
5912         (nnml-request-expire-articles): Don't delete articles if the target
5913         group is not available.
5914
5915         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5916         Don't quote characters that are within parentheses.
5917
5918 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5919
5920         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5921         (gnus-handle-ephemeral-exit): Select article according to it.
5922
5923 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5924
5925         * message.el (message-insert-formated-citation-line): Remove newline.
5926         (message-citation-line-format): Add final \n here so that the user can
5927         avoid a blank line.
5928
5929 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5930
5931         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5932         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5933         Update lanl/arXiv support.
5934
5935 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5936
5937         * gnus.el: Bump version number.
5938
5939 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5940
5941         * gnus.el (gnus-version-number): Bump version.
5942
5943 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5944
5945         * gnus.el: No Gnus v0.6 is released.
5946
5947 2007-04-27  Didier Verna  <didier@xemacs.org>
5948
5949         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5950         * gmm-utils.el (gmm-regexp-concat): here.
5951         * message.el: Don't require 'gnus-util.
5952         (message-dont-reply-to-names): Handle name change above.
5953         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5954
5955 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5956
5957         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5958         since the initial value varies according to the system.
5959
5960 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5961
5962         * mm-util.el (mm-charset-synonym-alist): Defcustom.
5963
5964 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5965
5966         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
5967
5968 2007-04-24  Didier Verna  <didier@xemacs.org>
5969
5970         Improve the type of gnus-ignored-from-addresses.
5971         * gnus-util.el (gnus-orify-regexp): New function.
5972         * message.el (gnus-util): Require it.
5973         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
5974         * gnus-sum.el (gnus-ignored-from-addresses): New function.
5975         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
5976
5977 2007-04-24  Didier Verna  <didier@xemacs.org>
5978
5979         * gnus-sum.el:
5980         * gnus-utils.el: Fix some trailing whitespaces.
5981
5982 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5983
5984         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
5985         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
5986         article's Message-ID; refer parent article in summary buffer.
5987
5988         * message.el (message-bounce): Call mime-to-mml.
5989
5990         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
5991         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
5992         optimize and/or forms properly.
5993
5994 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
5995
5996         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
5997         URL.
5998
5999 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6000
6001         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
6002
6003 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6004
6005         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
6006         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
6007         displayed of multipart/alternative part if it is invoked from summary
6008         buffer.
6009
6010         * mm-view.el (mm-inline-text-html-render-with-w3m)
6011         (mm-inline-text-html-render-with-w3m-standalone)
6012         (mm-inline-render-with-function): Use mail-parse-charset by default.
6013
6014 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
6015
6016         * parse-time.el (parse-time-string-chars): Check if CHAR
6017         is less than the length of parse-time-syntax.
6018
6019 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6020
6021         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
6022         from gnus-newsgroup-processable.
6023
6024 2007-04-16  Didier Verna  <didier@xemacs.org>
6025
6026         * gnus-msg.el (gnus-configure-posting-styles): Handle
6027         message-signature-directory properly with :file syntax.  Reported by
6028         "Leo".
6029
6030 2007-04-11  Didier Verna  <didier@xemacs.org>
6031
6032         New user option: message-signature-directory.
6033         * gnus-msg.el (gnus-configure-posting-styles): Support it.
6034         * message.el (message-insert-signature): Ditto.
6035         * message.el (message-signature-file): Doc update.
6036         * message.el (message-signature-directory): New.
6037
6038 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6039
6040         * gnus-msg.el (gnus-inews-yank-articles): Use
6041         message-exchange-point-and-mark instead of exchange-point-and-mark.
6042
6043 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6044
6045         * message.el (message-yank-original): Make sure cited text ends with
6046         newline; don't exchange point and mark.
6047
6048 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
6049
6050         * tls.el (open-tls-stream): Properly handle case where there
6051         is no associated buffer.
6052
6053 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
6054
6055         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
6056         message-yank-original, make sure (< mark TEXT point).
6057
6058 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
6059
6060         * message.el (message-fill-column): New variable.
6061         (message-mode): Use it.  Add comment on a possible new hook.
6062
6063         * nnmail.el (nnmail-spool-file): Mark as obsolete.
6064         (nnmail-get-new-mail): Reformat.
6065
6066         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
6067
6068         * gmm-utils.el: Fix Commentary.
6069         (gmm-tool-bar-from-list): Fix typo in doc string.
6070
6071 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
6072
6073         * message.el (message-yank-original): Don't switch point and mark
6074         unnecessarily to put point and mark as documented.
6075
6076 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6077
6078         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
6079         from the message heads.
6080
6081 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
6082
6083         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
6084         article buffer does not have a window.  This may not be the best
6085         solution but is certainly better than setting the start of the null,
6086         that is the current, window.
6087
6088 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6089
6090         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6091         (gnus-draft-setup): Run it.
6092
6093         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6094         gnus-score-fast-scoring.  Allow regexp.
6095         (gnus-score-headers): Use it.
6096
6097         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6098         XEmacs.
6099
6100         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6101         string.
6102         (gnus-button-alist): Also catch `<f1> k ...'.
6103         (gnus-treat-display-x-face): Fix doc string.
6104
6105 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6106
6107         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6108         evaluation of gnus-extended-version to ensure correct generation of the
6109         User-Agent header when message-generate-headers-first is used.
6110
6111 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6112
6113         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6114         hashcash-path is nil.  Don't call callback with incorrect number of
6115         parameters if val is 0.
6116
6117 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6118
6119         * message.el (message-required-news-headers):
6120         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6121
6122 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6123
6124         * tls.el (open-tls-stream): In handshake-waiting loop,
6125         don't wait more if there is output available to process.
6126
6127 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6128
6129         * tls.el (tls-program): Doc fix.
6130
6131 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6132
6133         * message.el (message-generate-new-buffers): Change the meaning of the
6134         nil value; add `standard' to the choices; treat t as `unique'; improve
6135         doc string.
6136         (gnus-select-frame-set-input-focus): Autoload.
6137         (message-buffer-name): Search for the existing message buffer if
6138         message-generate-new-buffers is nil or `standard'; treat the value t of
6139         message-generate-new-buffers as `unique'.
6140         (message-pop-to-buffer): Raise the frame already displaying the message
6141         buffer; clear the echo area after querying.
6142         (message-setup): Pass the `continue' argument to compose-mail.
6143         (message-mail): Prefer `switch-function' if it is given; search for the
6144         existing message buffer if the `continue' argument is non-nil; pass
6145         continue and switch-function arguments to compose-mail by way of
6146         message-setup.
6147         (message-mail-other-window): Adjust argument of message-setup.
6148         (message-mail-other-frame): Ditto.
6149
6150 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6151
6152         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6153         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6154         to turn font-lock on when turning gnus-message-citation-mode on.
6155
6156 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6157
6158         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6159         (mml-smime-function-alist): New variable; add epg as the backend.
6160         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6161         mml-smime- functions instead.
6162         * mm-view.el: Require smime.
6163
6164 2007-03-05  Didier Verna  <didier@xemacs.org>
6165
6166         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6167         instead of just inheritance for posting styles.
6168         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6169
6170 2007-02-24  Chris Moore  <dooglus@gmail.com>
6171
6172         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6173         * pgg-pgp.el (pgg-pgp-encrypt-region):
6174         * pgg-gpg.el (pgg-gpg-encrypt-region):
6175         Check pgg-encrypt-for-me if no other recipients.
6176
6177 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6178
6179         * tls.el (tls-certtool-program): Fix custom type.
6180
6181 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6182
6183         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6184         and point-at-eol instead of line-(beginning|end)-position.
6185
6186         * assistant.el (assistant-parse-buffer): Ditto.
6187
6188         * netrc.el (netrc-parse-services): Ditto.
6189
6190 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6191
6192         * mml2015.el (mml2015-epg-find-usable-key): New function.
6193         (mml2015-epg-sign): Use it.
6194         (mml2015-epg-encrypt): Use it.
6195
6196 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6197
6198         * message.el (message-make-in-reply-to): Quote name containing
6199         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6200         if there are special characters.  Reported by NAKAJI Hiroyuki
6201         <nakaji@jp.freebsd.org>.
6202
6203 2007-02-27  Didier Verna  <didier@xemacs.org>
6204
6205         Include the group parameters as well as the topic ones in the
6206         inheritance filter process.
6207         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6208         argument GROUP-PARAMS-LIST.
6209         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6210
6211 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6212
6213         * nntp.el (nntp-never-echoes-commands)
6214         (nntp-open-connection-functions-never-echo-commands): New variables.
6215         (nntp-send-command): Use them.
6216
6217 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6218
6219         * mml2015.el (mml2015-epg-verify): Simplified.
6220
6221 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6222
6223         * mml.el (mml-content-disposition-alist): New user option.
6224         (mml-content-disposition): New function.
6225         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6226         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6227
6228 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6229
6230         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6231         verification.
6232
6233 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6234
6235         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6236         articles posted in the last 24 hours.
6237
6238 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6239
6240         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6241
6242 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6243
6244         * nntp.el (nntp-send-command): Don't wait for echoes when
6245         nntp-open-ssl-stream is used.
6246
6247 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6248
6249         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6250         (gnus-message-add-citation-keywords)
6251         (gnus-message-remove-citation-keywords): Remove.
6252         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6253         directly, make the variables in font-lock-defaults buffer-local, add
6254         gnus-message-citation-keywords to them and then update the value of
6255         font-lock-keywords.
6256
6257 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6258
6259         * message.el (message-cite-original-1): Don't call
6260         gnus-article-highlight-citation.
6261
6262         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6263         citations; fix line count.
6264
6265 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6266
6267         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6268         (gnus-message-add-citation-keywords)
6269         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6270         versions of font-lock-add-keywords and font-lock-remove-keywords to
6271         work with XEmacs correctly.
6272
6273 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6274
6275         * gnus-cite.el (gnus-cite-face-list): Set the values of
6276         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6277         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6278         (gnus-message-cite-prefix-regexp): New variable.
6279         (gnus-message-search-citation-line): Use it; protect against long
6280         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6281         the 0th match data for Emacs.
6282         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6283         (gnus-message-add-citation-keywords): Append keywords rather than
6284         prepending; emulate font-lock-add-keywords if it is not available.
6285         (gnus-message-remove-citation-keywords): Emulate
6286         font-lock-remove-keywords if it is not available.
6287
6288         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6289
6290         * message.el (message-cite-prefix-regexp): Set the value of
6291         gnus-message-cite-prefix-regexp.
6292
6293 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6294
6295         * nnweb.el (nnweb-google-parse-1): Update parser.
6296
6297 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6298
6299         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6300
6301 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6302
6303         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6304         regexp.
6305
6306 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6307
6308         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6309         string-to-multibyte.
6310         (uudecode-decode-region-internal): Use it.
6311
6312         * lpath.el: Fbind string-as-multibyte for XEmacs.
6313
6314 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6315
6316         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6317         custom choice.
6318
6319         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6320
6321 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6322
6323         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6324
6325         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6326         `write-region' to respect `mm-inhibit-file-name-handlers'.
6327
6328 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6329
6330         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6331         Use gnus-home-directory instead of "~/" or "$HOME".
6332
6333 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6334
6335         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6336         to mention filename.
6337         Add comments at beginning regarding usage.
6338         (encrypt-write-file-contents): Change interactive so a string is
6339         acceptable.  If the file has no associated model, show an error instead
6340         of a nonsense prompt.
6341
6342 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6343
6344         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6345         Thanks to Yoshihiko Yamada for kind notification of this typo.
6346
6347 2007-01-12  Kenichi Handa  <handa@m17n.org>
6348
6349         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6350         multibyte buffer.
6351
6352 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6353
6354         * gnus-score.el (gnus-score-fast-scoring): New variable.
6355         (gnus-score-headers): Use it.
6356
6357         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6358
6359         * message.el (message-cite-original-1): Call
6360         gnus-article-highlight-citation if requested.
6361         (message-make-from): Allow name and address as optional arguments.
6362
6363         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6364
6365         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6366         bugs to doc string.
6367         (gnus-button-alist): Add mid\\|message-id.
6368         (gnus-button-fetch-group): Extend for use in
6369         `browse-url-browser-function'.
6370         (gnus-button-url-regexp): Try to catch paired parentheses like in
6371         Wikipedia URLs.
6372
6373         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6374         Suggested by Simon Krahnke <overlord@gmx.li>.
6375
6376 2007-01-13  Romain Francoise  <romain@orebokech.com>
6377
6378         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6379         Update copyright.
6380
6381 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6382
6383         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6384
6385 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6386
6387         * gnus-registry.el (gnus-registry-unfollowed-groups)
6388         (gnus-registry-split-fancy-with-parent): Fix documentation.
6389
6390 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6391
6392         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6393         from nnweb groups.
6394
6395 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6396
6397         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6398         Xref urls.  Erase buffer before requesting head.
6399
6400 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6401
6402         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6403         customizable.
6404
6405 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6406
6407         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6408         no signing key is found.
6409         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6410         no encrypting and/or signing key is found.
6411
6412 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6413
6414         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6415
6416 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6417
6418         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6419         headers read from disk with the ones newly found in the current search.
6420         This should no longer cause problems, because the article numbers in
6421         Gmane's `nov.php' output are ignored since the previous change.
6422
6423 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6424
6425         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6426
6427 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6428
6429         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6430         replace-regexp-in-string; bind url-version; fbind display-images-p and
6431         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6432         find-face and set-itimer-function for Emacs; bind itimer-list for
6433         Emacs.
6434
6435         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6436
6437 2007-01-01  Romain Francoise  <romain@orebokech.com>
6438
6439         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6440
6441 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6442
6443         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6444         `define-minor-mode' macro definition expanded properly.
6445         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6446         exclude it there.
6447
6448         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6449         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6450         `fboundp' test.
6451         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6452         This is OK to autoload in (S)XEmacs now.
6453
6454 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6455
6456         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6457         keystroke.
6458         (gnus-summary-limit-to-singletons): Fix typo.
6459
6460         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6461         else fails.
6462
6463 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6464
6465         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6466         docstring.
6467
6468         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6469         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6470         (gnus-summary-insert-dormant-articles): Fix typo in message.
6471
6472 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6473
6474         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6475         nil for XEmacs.
6476         (gnus-message-citation-mode): Don't autoload in XEmacs.
6477
6478         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6479
6480 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6481
6482         * nnimap.el (nnimap-expunge-search-string): Mention
6483         nnimap-search-uids-not-since-is-evil in docstring.
6484
6485 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6486
6487         * spam.el: Revert to make-obsolete-variable because
6488         define-obsolete-variable-alias is not supported in Emacs 21.
6489
6490         * spam.el (spam-ifile-path, spam-ifile-database-path)
6491         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6492         make-obsolete-variable.
6493         (spam-bsfilter-path, spam-bsfilter-program)
6494         (spam-spamassassin-path, spam-spamassassin-program)
6495         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6496         use "path" inappropriately.
6497         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6498         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6499         variable names.
6500
6501 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6502
6503         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6504         summary buffer.
6505
6506         * password.el (password-cache-remove): Use clear-string to burn
6507         password, if available.
6508
6509 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6510
6511         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6512
6513         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6514
6515         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6516         (gnus-message-highlight-citation): Move defcustom here from
6517         gnus-cite.el.
6518         (gnus-message-citation-mode): Autoload.
6519
6520         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6521         checks to make it compile with XEmacs.
6522         (gnus-message-citation-mode): New minor mode.
6523         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6524         (gnus-message-highlight-citation): New variables.
6525         (gnus-message-search-citation-line)
6526         (gnus-message-add-citation-keywords)
6527         (gnus-message-remove-citation-keywords)
6528         (turn-on-gnus-message-citation-mode)
6529         (turn-off-gnus-message-citation-mode): New functions.
6530
6531 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6532
6533         * gnus-cite.el: Enable highlighting of different citation levels in
6534         message-mode.
6535
6536 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6537
6538         * message.el (message-make-fqdn): Fix comment.
6539         (message-bogus-system-names): Add ".local".
6540
6541         * spam.el (spam-ifile-path, spam-ifile-program)
6542         (spam-ifile-database-path, spam-ifile-database)
6543         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6544         Don't use "path" inappropriately.
6545         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6546         strings.
6547         (spam-check-ifile, spam-ifile-register-with-ifile)
6548         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6549         new variable names.
6550
6551         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6552         (gnus-treat-display-smileys): Simplify using
6553         gnus-image-type-available-p.
6554
6555         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6556         available.
6557
6558         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6559         `display-images-p' if available.
6560
6561 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6562
6563         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6564         one after turning on the buffer's multibyteness instead of decoding
6565         them directly in the unibyte buffer that causes unexpected conversion
6566         in Emacs 23 (unicode).
6567
6568 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6569
6570         * message.el (message-generate-hashcash): Fix custom type.
6571
6572 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6573
6574         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6575
6576 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6577
6578         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6579         disconnect icons.  Add help text.
6580
6581 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6582
6583         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6584         negated to be consistent with the others we handle.
6585
6586 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6587
6588         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6589         version of gnus-summary-buffer to something, so that we can use two
6590         article buffers at the same time.
6591
6592 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6593
6594         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6595         trigger all the extra headers.
6596         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6597         sorting.
6598
6599 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6600
6601         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6602         solid groups.
6603
6604 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6605
6606         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6607
6608 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6609
6610         * legacy-gnus-agent.el: Add Copyright notice.
6611
6612 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6613
6614         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6615
6616 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6617
6618         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6619
6620         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6621         to make it work reliably in CVS Emacs.
6622         (gnus-summary-limit-strange-charsets-predicate)
6623         (gnus-summary-limit-to-predicate): New functions.
6624
6625 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6626
6627         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6628         specifying array size.
6629         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6630         array if it is too small.
6631         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6632         (gnus-sort-threads-loop): New function.
6633
6634 2006-12-06  Chris Moore  <dooglus@gmail.com>
6635
6636         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6637         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6638
6639 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6640
6641         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6642         options.
6643
6644 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6645
6646         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6647         DOS-ing the recipient.
6648
6649         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6650         the headers when creating the mapping to avoid mismappings.
6651         (nnweb-gmane-create-mapping): Always nix out old mapping.
6652
6653 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6654
6655         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6656         and mm-verify-option to never.
6657
6658 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6659
6660         * message.el (message-signed-or-encrypted-p): New function.
6661         (message-forward-make-body): Use it.
6662
6663         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6664         Replace encode-coding-string with mm-encode-coding-string.
6665
6666 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6667
6668         * nneething.el (nneething-decode-file-name): Replace
6669         decode-coding-string with mm-decode-coding-string.
6670
6671         * gnus-int.el (gnus-open-server): Say failed server's name.
6672
6673 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6674
6675         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6676         strings to a single string.  Quote `errors-file-name'.
6677         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6678         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6679         Adjust calls.  Use `shell-quote-argument'.
6680
6681 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6682
6683         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6684         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6685
6686         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6687         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6688         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6689         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6690         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6691         (gnus-subscribe-newsgroup, gnus-1):
6692         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6693         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6694         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6695         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6696
6697 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6698
6699         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6700         keystroke.
6701         (gnus-summary-limit-to-bodies): Implement headersp.
6702
6703 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6704
6705         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6706
6707 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6708
6709         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6710
6711 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6712
6713         * message.el (message-generate-hashcash): Expand range of values to
6714         include `opportunistic'.
6715         (message-send-mail): Use it.
6716
6717 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6718
6719         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6720         and comment it.
6721
6722         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6723
6724 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6725
6726         * gnus-util.el (gnus-extract-address-components): Improve comment.
6727
6728 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6729
6730         * gnus-util.el (gnus-extract-address-components): Work with address in
6731         which the name portion contains @.
6732
6733         * lpath.el: Fbind custom-autoload.
6734
6735 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6736
6737         * gnus.el (gnus-start): Move custom group up.
6738         (gnus-select-method): Don't autoload, but make it available for
6739         `customize-variable'.
6740         (gnus-getenv-nntpserver): Don't autoload.
6741
6742 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6743
6744         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6745
6746 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6747
6748         * message.el (message-sendmail-extra-arguments): New variable.
6749         (message-send-mail-with-sendmail): Use it.
6750
6751 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6752
6753         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6754         mm-with-unibyte-current-buffer to make string unibyte.
6755
6756         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6757         mm-string-as-multibyte.
6758
6759 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6760
6761         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6762         Reported by Werner Koch <wk@gnupg.org>.
6763
6764 2006-11-14  Daiki Ueno  <ueno@p360>
6765
6766         * mml2015.el: Autoload epa-select-keys when compiling.
6767
6768 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6769
6770         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6771         message-options.
6772         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6773
6774 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6775
6776         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6777         EasyPG (< 0.0.6).
6778         (mml2015-always-trust): New user option.
6779         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6780         prompt.
6781
6782 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6783
6784         * nntp.el (nntp-authinfo-force): New variable.
6785         (nntp-send-authinfo): Use it.
6786
6787 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6788
6789         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6790         decode encoded words.  Improve prompt.  Add comment about forwarding.
6791         (message-replacement-char): Move up.
6792
6793 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6794
6795         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6796         instead of gnus-intersection because arguments of gnus-sorted-nunion
6797         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6798
6799 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6800
6801         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6802         (message-simplify-subject-functions): Enable
6803         message-strip-subject-encoded-words by default.
6804
6805 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6806
6807         * message.el (message-strip-subject-encoded-words): New function.
6808         (message-simplify-subject-functions): New variable.
6809         (message-simplify-subject): Use it.  Fix typo in doc string.
6810         Support message-strip-subject-encoded-words.
6811
6812 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6813
6814         * gnus-diary.el (gnus-diary-delay-format-function):
6815         * nndiary.el (nndiary-reminders):
6816         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6817
6818 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6819
6820         * gnus-art.el (article-hide-boring-headers): Fetch date from
6821         gnus-original-article-buffer to avoid problems with localized date
6822         strings.
6823
6824 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6825
6826         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6827
6828 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6829
6830         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6831         New variables.
6832         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6833         (mm-charset-synonym-alist): Move some entries to
6834         mm-codepage-iso-8859-list.
6835         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6836         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6837
6838 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6839
6840         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6841
6842 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6843
6844         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6845         with Emacs 21 and XEmacs.
6846
6847 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6848
6849         * spam.el (spam-parse-address): New function for better parsing,
6850         catching errors, etc.
6851         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6852
6853 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6854
6855         * mm-view.el: Add interactive arg to html2text autoload.
6856
6857 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6858
6859         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6860
6861 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6862
6863         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6864         variables.
6865         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6866         (mm-charset-synonym-alist): Move some entries to
6867         mm-codepage-iso-8859-list.
6868
6869         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6870
6871 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6872
6873         * message.el (message-citation-line-format)
6874         (message-insert-formated-citation-line): Fix implementation of %E, %N
6875         and %n according to the doc string.
6876
6877 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6878
6879         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6880         car-safe to avoid bad parses.
6881
6882 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6883
6884         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6885         names.
6886
6887         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6888
6889 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6890
6891         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6892         header.
6893
6894         * message.el (message-draft-headers): Add Date.
6895         (message-headers-to-generate): Fix typo in docstring.
6896
6897         * nndraft.el (nndraft-required-headers): New variable.
6898         (nndraft-generate-headers): Use it.
6899
6900         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6901
6902 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6903
6904         * gnus-registry.el (gnus-registry-wash-for-keywords)
6905         (gnus-registry-find-keywords): New functions to allow easy searching of
6906         articles that are in the registry.
6907
6908 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6909
6910         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6911         ietf-drums-parse-address instead of gnus-extract-address-components.
6912         Reported by Damien Elmes <damien@repose.cx>.
6913
6914 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6915
6916         * gnus.el (gnus-mime): Remove unused custom group.
6917
6918 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6919
6920         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6921         "blank line" when searching for end of armor headers.
6922
6923 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6924
6925         * gmm-utils.el (gmm-write-region): Fix variable name.
6926
6927 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6928
6929         * gmm-utils.el (gmm-write-region): New function based on compatibility
6930         code from `mm-make-temp-file'.
6931
6932         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6933
6934         * nnmaildir.el (nnmaildir--update-nov)
6935         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6936         Use `gmm-write-region'.
6937
6938 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6939
6940         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6941         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6942
6943         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6944
6945         * message.el (message-replacement-char): New variable.
6946         (message-fix-before-sending): Use it.
6947         (message-simplify-subject): New function to remove duplicate code.
6948         (message-reply, message-followup): Use it.
6949
6950         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6951         gnus-summary-limit-to-articles.
6952
6953 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6954
6955         * gnus-util.el (gnus-with-local-quit): New macro.
6956
6957         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6958
6959 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6960
6961         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
6962         ignore non-string data.
6963
6964 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
6965
6966         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
6967         non-string data (needs to be done in the registry too).
6968
6969 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6970
6971         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
6972         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
6973         (gnus-registry-split-fancy-with-parent)
6974         (gnus-registry-fetch-simplified-message-subject-fast)
6975         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
6976         Remove text properties on ingress into the registry and when it's saved.
6977         (gnus-registry-clean-empty-function): Fix bug with cleaning the
6978         registry from entries with no groups.
6979
6980 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6981
6982         * gnus-util.el (gnus-string-remove-all-properties): Add utility
6983         function to remove string properties.
6984
6985 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
6986
6987         * gmm-utils.el (gmm): Adjust custom version.
6988
6989         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
6990         custom version.
6991
6992         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
6993
6994 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
6995
6996         * gnus-art.el (gnus-insert-prev-page-button)
6997         (gnus-insert-next-page-button): Simplify.  Reformat.
6998
6999 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7000
7001         * gnus-art.el (gnus-insert-prev-page-button)
7002         (gnus-insert-next-page-button): Apply gnus-article-button-face.
7003
7004 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
7005
7006         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
7007
7008 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7009
7010         * gnus-art.el (gnus-insert-mime-button)
7011         (gnus-insert-mime-security-button):
7012         Apply gnus-article-button-face to MIME and security buttons.
7013
7014 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
7015
7016         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
7017         readable.
7018
7019 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7020
7021         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
7022
7023 2006-09-20  Steve Youngs  <steve@sxemacs.org>
7024
7025         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
7026         `browse-url-of-file' instead of `browse-url'.
7027
7028 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7029
7030         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
7031         regexp.  Articles containing quotation were cut prematurely.
7032
7033 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7034
7035         * message.el (message-cite-original-1): Use nobody by default for the
7036         value of From header.
7037         (message-reply): Ditto.
7038
7039 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
7040
7041         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
7042         to the gnus-info.  This fixes a bug of inline-PGP message verification.
7043         Reported by Michael Piotrowski <mxp@dynalabs.de>.
7044
7045 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
7046
7047         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
7048         mails in the doc string.  Add some URLs in comment.
7049         (pop3-movemail): Warn about pop3-leave-mail-on-server.
7050
7051 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7052
7053         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
7054         backslashes handling and the way to find boundaries of quoted strings.
7055
7056 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
7057
7058         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
7059         mml1991-encrypt-to-self is set and mml1991-signers is not set.
7060         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
7061         mml2015-encrypt-to-self is set and mml2015-signers is not set.
7062
7063 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
7064
7065         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
7066         doc string.
7067         (gnus-button-regexp, gnus-button-last): Remove unused variables.
7068
7069 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7070
7071         * lpath.el: Fbind epg-check-configuration.
7072
7073 2006-09-06  Simon Josefsson  <jas@extundo.com>
7074
7075         * mml2015.el (mml2015-use): Doc fix, mention epg.
7076
7077 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7078
7079         * mml2015.el (mml2015-use): Default to epg, if available.
7080
7081 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7082
7083         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
7084         message-sender.
7085         (mml1991-epg-encrypt): Ditto.
7086         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
7087         message-sender.
7088         (mml2015-epg-encrypt): Ditto.
7089
7090 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7091
7092         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7093         several common directories.
7094
7095 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7096
7097         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7098         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7099
7100 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7101
7102         * gnus-art.el (article-decode-encoded-words): Make it fast.
7103
7104 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7105
7106         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7107
7108         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7109         in quoted string into `\'.
7110
7111 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7112
7113         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7114         Use standard-syntax-table.
7115
7116 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7117
7118         * gnus-art.el (gnus-decode-address-function): New variable.
7119         (article-decode-encoded-words): Use it to decode headers which are
7120         assumed to contain addresses.
7121         (gnus-mime-delete-part): Remove useless `or'.
7122
7123         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7124         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7125         (gnus-nov-parse-line): Use it to decode From header.
7126         (gnus-get-newsgroup-headers): Ditto.
7127         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7128
7129         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7130         (mail-decode-encoded-address-string): New alias.
7131
7132         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7133         New function.
7134         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7135         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7136         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7137         (rfc2047-decode-string): Ditto.
7138         (rfc2047-decode-address-region): New function.
7139         (rfc2047-decode-address-string): New function.
7140
7141 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7142
7143         * message.el (message-caesar-buffer-body): Allow rotating headers.
7144
7145         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7146
7147         * message.el (message-insert-formated-citation-line): Fix %f.
7148         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7149
7150 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7151
7152         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7153         (gnus-bookmark-mouse-available-p): New macro.
7154         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7155         (gnus-bookmark-bmenu-show-infos): Use it.
7156         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7157         (gnus-bookmark-bmenu-hide-infos): Ditto.
7158         (gnus-bookmark-remove-properties): New function.
7159         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7160         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7161         (gnus-bookmark-write-file): Bind coding-system-for-write.
7162         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7163         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7164         group before selecting it.
7165         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7166         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7167         quit-window if it is not available; use gnus-mouse-2 and bind it to
7168         gnus-bookmark-bmenu-select-by-mouse.
7169         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7170         (gnus-bookmark-bmenu-select-by-mouse): New function.
7171
7172 2006-08-13  Romain Francoise  <romain@orebokech.com>
7173
7174         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7175         space.
7176
7177 2006-08-10  Romain Francoise  <romain@orebokech.com>
7178
7179         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7180         (dns-mode-soa-auto-increment-serial): New user option.
7181         (dns-mode-soa-maybe-increment-serial): New function.
7182         (dns-mode): Add the latter to `write-contents-functions'.
7183
7184 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7185
7186         * compface.el (uncompface): Use binary rather than raw-text-unix.
7187
7188 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7189
7190         * compface.el (uncompface): Make sure the eol conversion doesn't take
7191         place when communicating with the external programs.  Reported by
7192         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7193
7194 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7195
7196         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7197
7198 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7199
7200         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7201         Make it more robust by parsing author and date independently.
7202
7203 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7204
7205         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7206
7207 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7208
7209         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7210         first matching secret key.
7211         (mml2015-epg-encrypt): Ditto.
7212
7213         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7214         first matching secret key.
7215         (mml1991-epg-encrypt): Ditto.
7216
7217         * mml2015.el (mml2015-encrypt-to-self): New user option.
7218         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7219         mml2015-epg-encrypt-to-self is set.
7220
7221         * mml1991.el (mml1991-encrypt-to-self): New variable.
7222         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7223         mml1991-epg-encrypt-to-self is set.
7224
7225         * mml2015.el (mml2015-signers): New user option.
7226         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7227         (mml2015-epg-encrypt): Allow to select signing keys.
7228
7229         * mml1991.el (mml1991-signers): New variable.
7230         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7231         (mml1991-epg-encrypt): Allow to select signing keys.
7232
7233 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7234
7235         * nnheader.el (nnheader-insert-head): Make it work even if the file
7236         uses CRLF for the line-break code.
7237
7238 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7239
7240         * mml2015.el: Require mml-sec instead of password.
7241         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7242         (mml2015-cache-passphrase): Inherit the default value from
7243         mml-secure-cache-passphrase.
7244         (mml2015-passphrase-cache-expiry): Inherit the default value from
7245         mml-secure-passphrase-cache-expiry.
7246
7247         * mml1991.el: Require mml-sec instead of password.
7248         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7249         (mml1991-cache-passphrase): Inherit the default value from
7250         mml-secure-cache-passphrase.
7251         (mml1991-passphrase-cache-expiry): Inherit the default value from
7252         mml-secure-passphrase-cache-expiry.
7253
7254         * mml-sec.el: Require password.
7255         (mml-secure-verbose): New user option.
7256         (mml-secure-cache-passphrase): New user option.
7257         (mml-secure-passphrase-cache-expiry): New user option.
7258
7259 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7260
7261         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7262         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7263         andreas@altroot.de (Andreas Vögele).
7264
7265         FIXME: Use `tiny change'?
7266
7267 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7268
7269         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7270         workaround for the url package included with Emacs.
7271
7272         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7273
7274 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7275
7276         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7277         correctly.  This fixes a bug caused by the 2006-05-12 change.
7278
7279 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7280
7281         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7282         some information about the error when saying that the `bogus' mail
7283         group will be used.
7284
7285 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7286
7287         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7288         string.
7289
7290 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7291
7292         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7293
7294 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7295
7296         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7297
7298 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7299
7300         * mml1991.el (mml1991-function-alist): Add epg.
7301         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7302         (mml1991-epg-encrypt): New functions.
7303
7304 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7305
7306         * mml2015.el (mml2015-verbose): New variable.
7307         (mml2015-cache-passphrase): Ditto.
7308         (mml2015-passphrase-cache-expiry): Ditto.
7309         (mml2015-function-alist): Add epg.
7310         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7311         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7312         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7313         functions.
7314
7315 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7316
7317         * message.el (message-cite-original-1): Preserve region when removing
7318         quoted text due to X-No-Archive in order to avoid bogus attribution
7319         when citing multiple messages.
7320
7321 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7322
7323         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7324         Kenneth Jacker <khj@be.cs.appstate.edu>.
7325
7326 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7327
7328         * gnus-diary.el (gnus-user-format-function-d)
7329         (gnus-user-format-function-D): Autoload.
7330
7331         * imap.el (Commentary): Fix typo.
7332
7333         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7334         2006-04-22 contribution.
7335
7336 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7337
7338         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7339         It didn't really fix the bogosity I'm seeing with solid web groups.
7340
7341 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7342
7343         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7344         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7345         created using server names.  If we use the feature without declaring
7346         it, Gnus does not properly manage server and group state.
7347
7348         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7349         bound.
7350
7351 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7352
7353         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7354         looking up the method using GROUP's prefix before inventing a new one.
7355         It is used on killed/unknown groups in various places where returning
7356         an all-new method isn't expected by the caller.
7357
7358         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7359         and match semantics of gnus-group-real-prefix.
7360
7361 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7362
7363         * nnmail.el (nnmail-broken-references-mailers): New variable.
7364         (nnmail-ignore-broken-references): New function generalizing
7365         nnmail-fix-eudora-headers.
7366         (nnmail-fix-eudora-headers): Now obsolete.
7367
7368         * gnus-art.el (gnus-button-handle-custom): Support
7369         `customize-apropos*'.
7370
7371 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7372
7373         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7374
7375         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7376         articles.
7377
7378 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7379
7380         * message.el (message-cite-reply-above): New variable.
7381         (message-yank-original): Use it.
7382
7383 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7384
7385         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7386
7387 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7388
7389         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7390         as read.
7391
7392         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7393
7394 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7395
7396         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7397         (gnus-bookmark-default-file): Use gnus-directory.
7398         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7399         Remove "*" in doc string.
7400         (gnus-bookmark-write-file): Simplify.
7401         (gnus-bookmark-maybe-sort-alist): Use `when'.
7402         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7403         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7404         FIXME about Emacs 21 and XEmacs compatibility.
7405         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7406         compatibility.
7407         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7408         compatibility.
7409         (gnus-bookmark-menu-heading): Fix version.
7410
7411 2006-06-19  Bastien Guerry  <bzg@altern.org>
7412
7413         * gnus-bookmark.el: New file.
7414
7415 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7416
7417         * message.el (message-syntax-checks): Doc fix.
7418
7419 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7420
7421         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7422         unsubscribed groups as if they were killed ones.  It causes duplicate
7423         entries in gnus-newsrc-alist.
7424
7425 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7426
7427         * message.el (message-syntax-checks): Doc fix.
7428         (message-send-mail): Add check for continuation headers.
7429         (message-check-news-header-syntax): Fix regexp used to check for
7430         continuation headers.
7431
7432 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7433
7434         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7435
7436 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7437
7438         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7439
7440 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7441
7442         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7443         default-truncate-lines.
7444
7445 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7446
7447         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7448         to fill the utf-8 entry.
7449
7450         * lpath.el: Fbind unicode-precedence-list.
7451
7452 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7453
7454         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7455
7456 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7457
7458         * gnus-agent.el (directory-files-and-attributes): Move all the way
7459         forward (the third and final move).
7460         (gnus-agent-read-agentview): Trap reconstruction errors due to
7461         nonexistant directory.  Handle by returning nil.
7462
7463 2006-05-30  Didier Verna  <didier@xemacs.org>
7464
7465         * message.el (message-dont-reply-to-names): Update the custom type.
7466         * message.el (message-dont-reply-to-names): New defsubst: potentially
7467         convert a list of regexps into a single one.
7468         * message.el (message-get-reply-headers): Use it.
7469         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7470
7471 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7472
7473         * gnus-agent.el (directory-files-and-attributes): Move forward.
7474
7475 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7476
7477         * gnus-ml.el (gnus-mailing-list-subscribe)
7478         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7479         (gnus-mailing-list-message): Fix doc strings.
7480
7481 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7482
7483         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7484         of doing it manually.
7485
7486 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7487
7488         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7489         comment.
7490
7491 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7492
7493         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7494         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7495         (gnus-agent-read-local): All symbols allocated in my-obarray.
7496         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7497         (gnus-agent-regenerate-group): Check numeric names to see if they are
7498         messages or groups.
7499         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7500         better way of do this...)
7501
7502         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7503         'dummy.group' (there should be a better way of do this...)
7504
7505 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7506
7507         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7508         (gnus-saved-headers): Ditto.
7509         (gnus-default-article-saver): Mention functions may have properties.
7510         (gnus-article-save): Override gnus-save-all-headers and
7511         gnus-saved-headers by :headers property which saver function may have.
7512         (gnus-summary-save-in-file): Add :headers property.
7513         (gnus-summary-write-to-file): Ditto.
7514
7515         * gnus-sum.el (gnus-summary-save-article): Bind
7516         gnus-prompt-before-saving to t when saving many articles in a file;
7517         always show all headers.
7518
7519         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7520
7521 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7522
7523         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7524         marks.
7525
7526         * message.el (message-indent-citation): Add optional arguments to allow
7527         using it outside of message buffers.
7528
7529         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7530         (gnus-article-treat-unfold-headers): Use it.
7531         (gnus-article-truncate-lines): New variable.
7532         (gnus-article-mode): Use it.
7533         (gnus-article-toggle-truncate-lines): New function.
7534
7535         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7536         gnus-article-toggle-truncate-lines.
7537
7538         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7539         coding system in XEmacs, use binary.
7540
7541 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7542
7543         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7544         after-load-alist.
7545
7546         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7547         this function should save decoded articles.
7548         (gnus-summary-write-to-file): Use property to specify this function
7549         should save decoded articles and specify gnus-summary-save-in-file
7550         should be used to save articles other than the first one when saving
7551         many articles.
7552         (gnus-summary-save-body-in-file): Use property to specify this
7553         function should save decoded articles.
7554         (gnus-summary-write-body-to-file): Use property to specify this
7555         function should save decoded articles and specify
7556         gnus-summary-save-body-in-file should be used to save articles other
7557         than the first one when saving many articles.
7558
7559         * gnus-sum.el (gnus-summary-save-article): Simplify.
7560
7561 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7562
7563         * gnus-art.el (gnus-default-article-saver): Add
7564         gnus-summary-write-body-to-file.
7565         (gnus-article-save-coding-system): Don't use coding system object
7566         in XEmacs.
7567         (gnus-read-save-file-name): Add optional `dir-var' argument which
7568         specifies directory in which files are saved; work even if optional
7569         `variable' argument is not specified.
7570         (gnus-summary-write-to-file): Read file name.
7571         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7572         (gnus-summary-write-body-to-file): New function.
7573
7574         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7575         (gnus-summary-local-variables): Add it.
7576         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7577         (gnus-summary-save-article): Remove optional `decode' argument;
7578         determine whether to decode articles by the value of
7579         gnus-default-article-saver; when saving many files using
7580         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7581         it first and use gnus-summary-save-in-file or
7582         gnus-summary-save-body-in-file thereafter unless
7583         gnus-prompt-before-saving is always; move point to article which
7584         will be saved.
7585         (gnus-summary-save-article-file): Revert.
7586         (gnus-summary-write-article-file): Revert.
7587         (gnus-summary-save-article-body-file): Revert.
7588         (gnus-summary-write-article-body-file): New function.
7589
7590 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7591
7592         * gnus-art.el (gnus-default-article-saver): Doc fix.
7593         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7594         from gnus-summary-save-article-coding-system, and default to a
7595         certain coding system.
7596         (gnus-output-to-file): Add coding cookie and encode text according
7597         to gnus-article-save-coding-system; don't use mm-append-to-file.
7598
7599         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7600         gnus-art.el and rename to gnus-article-save-coding-system.
7601         (gnus-summary-save-article): Require gnus-art; don't show all
7602         headers if it decodes articles; don't add coding cookie here;
7603         don't bind mm-text-coding-system-for-write.
7604         (gnus-summary-save-article-file): Save decoded articles.
7605         (gnus-summary-write-article-file): When saving many files, use
7606         gnus-summary-write-to-file first and gnus-summary-save-in-file
7607         thereafter unless gnus-prompt-before-saving is always.
7608         (gnus-summary-save-article-body-file): Save decoded articles.
7609
7610         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7611
7612 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7613
7614         * nnrss.el (nnrss-check-group): Bind hash-index.
7615
7616 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7617
7618         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7619         its hash index.  Store this hash in `nnrss-group-data'.
7620         (nnrss-read-group-data): Update accordingly.
7621
7622 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7623
7624         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7625         entry.
7626
7627         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7628         gnus-article-browse-html-article.
7629
7630 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7631
7632         * gnus-sum.el (gnus-summary-mime-map): Add
7633         gnus-article-browse-html-article.
7634
7635         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7636
7637 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7638
7639         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7640         suitable coding systems in customize.
7641
7642 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7643
7644         * mail-source.el (mail-sources): Fix custom type.
7645
7646 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7647
7648         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7649         (gnus-summary-expire-articles-now): Shorten prompt.
7650
7651         * gmm-utils.el (wid-edit): Require.
7652         (defun-gmm): Renamed from `gmm-defun-compat'.
7653         (gmm-image-search-load-path): Use it.
7654         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7655
7656 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7657
7658         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7659         variable.
7660         (gnus-summary-save-article): Add optional `decode' argument.  If
7661         it is set and gnus-summary-save-article-coding-system is non-nil,
7662         save decoded article.
7663         (gnus-summary-write-article-file): Save decoded article if
7664         gnus-summary-save-article-coding-system is non-nil.
7665
7666         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7667         type.
7668
7669 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7670
7671         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7672
7673 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7674
7675         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7676         first to test gnus-single-article-buffer which may be buffer-local.
7677
7678         * gnus-sum.el (gnus-summary-setup-buffer): Make
7679         gnus-single-article-buffer buffer-local and nil in ephemeral
7680         group; make gnus-article-buffer, gnus-article-current, and
7681         gnus-original-article-buffer always buffer-local.
7682         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7683         group.
7684         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7685
7686 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7687
7688         * nnml.el (nnml-request-compact-group): Compressed files might not
7689         have .gz extension.
7690
7691 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7692
7693         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7694         (mm-copy-to-buffer): Use with-current-buffer.
7695         (mm-display-part): Simplify.
7696         (mm-inlinable-p): Add optional arg `type'.
7697
7698 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7699
7700         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7701         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7702         Try harder to show the attachment internally or externally using
7703         gnus-mime-view-part-as-type.
7704
7705 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7706
7707         * message.el (message-from-style, message-signature-separator)
7708         (message-user-organization-file, message-send-mail-function)
7709         (message-citation-line-function, message-yank-prefix)
7710         (message-indent-citation-function, message-signature)
7711         (message-signature-file, message-signature-insert-empty-line):
7712         Remove autoloads.
7713
7714         * gnus-art.el (gnus-buttonized-mime-types): Remove
7715         "multipart/signed".  Revert 2006-04-26 change.
7716
7717 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7718
7719         * gnus.el (gnus-version-number): Bump version.
7720
7721 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7722
7723         * gnus.el: No Gnus v0.5 is released.
7724
7725 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7726
7727         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7728         fetching articles by message-id.
7729
7730 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7731
7732         * message.el (hashcash): Require hashcash as normal.
7733
7734         * ecomplete.el (ecomplete-highlight-match-line): Use
7735         point-at-eol.
7736         (ecomplete-highlight-match-line): Use `highlight', because that
7737         face exists in both Emacs and XEmacs.
7738
7739         * message.el (message-display-abbrev): Use point-at-bol.
7740
7741         * mail-source.el: Don't require timer/timer-funcs.
7742
7743         * gnus-async.el: Ditto.
7744
7745         * password.el: Ditto.
7746
7747         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7748
7749         * mm-url.el: Ditto.
7750
7751         * gnus-xmas.el: Don't require timer-funcs.
7752
7753         * mm-util.el: Require timer/timer-funcs.
7754
7755 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7756
7757         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7758         Close.
7759
7760 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7761
7762         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7763         unibyte after clear-decrypt function runs.
7764
7765         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7766         returns as a unibyte string.
7767
7768 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7769
7770         * lpath.el: Revert.
7771
7772         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7773         (pgg-gpg-process-sentinel): Revert.
7774
7775         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7776         (pgg-pgp-lookup-key): Revert.
7777
7778         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7779         (pgg-pgp5-lookup-key): Revert.
7780
7781         * pgg.el (pgg-fetch-key): Revert.
7782
7783 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7784
7785         * lpath.el: Fbind string-as-multibyte for XEmacs.
7786
7787         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7788         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7789         (mml1991-pgg-encrypt): Ditto.
7790
7791         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7792         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7793         a multibyte buffer.
7794
7795         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7796         (pgg-pgp-lookup-key): Ditto.
7797
7798         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7799         (pgg-pgp5-lookup-key): Ditto.
7800
7801         * pgg.el (pgg-fetch-key): Ditto.
7802
7803 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7804
7805         * message.el (message-user-organization-file): Check several
7806         locations of the organization file.
7807
7808         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7809         Add gnus-article-view-part-as-type.
7810
7811         * gnus-art.el (gnus-article-view-part-as-type): New function.
7812
7813         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7814         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7815
7816         * mml.el: Simplify autoload.
7817         (mml-mode): defvar dnd-protocol-alist instead of using
7818         symbol-value.
7819         (mml-default-directory): New variable.
7820         (mml-minibuffer-read-file): Use it.
7821         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7822
7823         * message.el (message-citation-line-format): New variable.
7824         (message-insert-formated-citation-line): New function.
7825         (message-citation-line-function): Add
7826         `message-insert-formated-citation-line' to custom type.
7827
7828         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7829         to doc string.
7830
7831         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7832         depending on mm-verify-option.
7833
7834 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7835
7836         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7837         binding pgg-* variables; reimplement the section which prevents
7838         MIME header from being signed.
7839         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7840         pgg-text-mode; remove a blank line at the top of body.
7841
7842         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7843         lines at the top of body; use gnus-newsgroup-charset if there's no
7844         Charset header.
7845
7846 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7847
7848         * message.el (message-self-insert-commands): Doc fix.
7849
7850         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7851         (mm-uu-pgp-encrypted-test): Ditto.
7852         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7853         between header and body; return application/pgp-encrypted handle
7854         if decryption failed; decode decrypted body by charset.
7855
7856         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7857         element match to application/pgp-*.
7858
7859 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7860
7861         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7862         HTML.
7863
7864 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7865
7866         * mail-source.el (mail-source-call-script): Message the error
7867         string.
7868
7869 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7870
7871         * gnus-util.el (gnus-byte-compile): Use it.
7872
7873 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7874
7875         * gnus-util.el (kill-empty-logs): New function.
7876
7877 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7878
7879         * message.el (message-mail-alias-type): Doc fix.
7880         (message-mail-alias-type-p): New function.
7881         (message-send): Use it.
7882         (message-mode): Ditto.
7883         (message-strip-forbidden-properties): Ditto.
7884
7885         * ecomplete.el (ecomplete-database-file-coding-system): New
7886         variable.
7887         (ecomplete-save): Use it.
7888         (ecomplete-setup): Use it.
7889
7890 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7891
7892         * message.el (message-self-insert-commands): New variable.
7893         (message-strip-forbidden-properties): Use it.
7894
7895 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7896
7897         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7898         that doesn't make XEmacs choke.
7899
7900 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7901
7902         * gnus-util.el (gnus-replace-in-string):
7903         Prefer replace-regexp-in-string over of replace-in-string.
7904
7905 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7906
7907         * gnus-util.el (gnus-select-frame-set-input-focus):
7908         Use select-frame-set-input-focus if it is available in XEmacs; use
7909         definition defined in Emacs 22 for old Emacsen.
7910
7911         * dgnushack.el: Autoload unmorse-region for XEmacs.
7912
7913         * lpath.el: Bind cursor-in-non-selected-windows and
7914         select-frame-set-input-focus for XEmacs.
7915
7916 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7917
7918         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7919
7920 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7921
7922         * gnus-registry.el (gnus-registry-cache-save): Remove text
7923         properties when saving via the temp buffer.
7924
7925 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7926
7927         * message.el (message-generate-hashcash): Honor custom type.
7928
7929 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7930
7931         * message.el (message-generate-hashcash): Default to non-nil when
7932         hashcash is found.
7933
7934         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7935         (gnus-refer-thread-limit): Increase default to 500.
7936
7937         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7938
7939         * flow-fill.el (fill-flowed): Allow delete-space.
7940
7941 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7942
7943         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7944         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7945         Remove autoloads.
7946
7947 2006-04-18  Simon Josefsson  <jas@extundo.com>
7948
7949         * message.el (message-generate-hashcash): Default to.
7950
7951 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7952
7953         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7954         concatenating segments rather than before concatenating them.
7955
7956 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7957
7958         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7959
7960 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7961
7962         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
7963
7964         * message.el (message-forward-make-body-plain): Allow
7965         message-forward-ignored-headers to be a list.
7966         (message-remove-ignored-headers): Factor out into function.
7967         (message-forward-make-body-mml): Use it.
7968
7969         * imap.el (imap-quote-specials): New function.
7970         (imap-login-auth): Quote specials.
7971
7972         * rfc2231.el (rfc2231-parse-string): Remove dead code.
7973         (rfc2231-parse-string): Allow concatanation of parameters that
7974         aren't contiguous.  The test case is
7975           (mail-header-parse-content-type "message/external-body;
7976             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
7977             access-type=LOCAL-FILE;
7978             name*1*=plugh%2fhello-sailor%2fbing.pdf")
7979
7980 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7981
7982         * nntp.el (nntp-accept-process-output): Return the value of
7983         `nnheader-accept-process-output'.
7984
7985 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7986
7987         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
7988         (gnus-button-alist): Recognize more diff formats.
7989         (gnus-button-patch): Strip directory.
7990
7991 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7992
7993         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
7994         Emacs 22 when setting focus.
7995
7996 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7997
7998         * gnus-art.el (gnus-article-treat-types): Do treatment of
7999         text/x-verbatim parts.
8000         (gnus-button-patch): New command.
8001
8002         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
8003         addresses that contain invalid characters.
8004
8005 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8006
8007         * message.el (message-put-addresses-in-ecomplete): Use
8008         gnus-replace-in-string.
8009         (message-is-yours-p): Use the more correct
8010         mail-header-parse-address instead of
8011         mail-extract-address-components.
8012         (message-put-addresses-in-ecomplete): Fix typo.
8013
8014         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
8015         keystroke.
8016
8017         * gnus-art.el (gnus-treatment-function-alist): Change order of
8018         newsgroups/generic header folding to avoid double-folding.
8019
8020         * message.el (message-hidden-headers): Add X-Draft-From.
8021
8022         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
8023         command.
8024         (gnus-summary-repeat-search-article-backward): New command.
8025
8026         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
8027         groups in the parent topic.
8028
8029 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
8030
8031         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
8032         (spam-extra-header-to-number): Return the CRM114 number as a
8033         number instead of a string.
8034
8035 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8036
8037         * gnus-art.el (gnus-face-properties-alist): Moved here from
8038         gnus-fun.
8039
8040         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
8041
8042 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8043
8044         * message.el (message-strip-forbidden-properties): Only display on
8045         self-insert-command.
8046
8047         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
8048         reindent.
8049         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
8050
8051 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
8052
8053         * smiley.el (smiley-style): Fix typo.
8054
8055 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8056
8057         * hashcash.el (hashcash-insert-payment-async-2): Use
8058         message-goto-eoh instead of doing it manually.
8059         (mail-add-payment): Use message-narrow-to-header instead of trying
8060         to do the same itself.
8061
8062         * message.el (message-hidden-headers): Add Face.
8063
8064         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
8065         reparenting code.
8066         (gnus-summary-reparent-children): Refactored out code.
8067         (gnus-summary-thread-map): New keystroke.
8068         (gnus-summary-reparent-children): Make into command.
8069
8070         * smiley.el (smiley-style): Default to `medium' if using a large
8071         font.
8072
8073         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
8074         does it itself.
8075
8076         * message.el (message-point-in-header-p): Simplify definition.
8077
8078 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8079
8080         * nnagent.el (nnagent-request-set-mark): Silence log file
8081         writing.
8082         (nnagent-request-set-mark): Use write-region instead of
8083         append-to-file.
8084
8085         * gnus-sum.el (gnus-read-header): Fudge article number if using a
8086         strange select method.
8087
8088         * ecomplete.el (ecomplete-display-matches): Get highlightling
8089         right.
8090         (ecomplete-display-matches): Use literals.
8091         (ecomplete-display-matches): Disable message logging.
8092
8093         * message.el (message-display-abbrev): Small optimization.
8094
8095         * ecomplete.el (ecomplete-display-matches): Allow automatic
8096         display.
8097
8098         * message.el (message-strip-forbidden-properties): Display
8099         abbrevs.
8100         (message-display-abbrev): Get automatic display right.
8101
8102         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8103         keystrokes.
8104
8105 2006-04-13  Romain Francoise  <romain@orebokech.com>
8106
8107         TODO: Backport to v5-10!
8108
8109         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8110         Moved here (and renamed) from gnus-registry.el.
8111
8112         * gnus-registry.el: Require gnus-util.
8113         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8114
8115 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8116
8117         * gnus-group.el (gnus-group-catchup-current): Change
8118         if-then-else-if-then-else into cond.
8119         (gnus-group-catchup): Indent.
8120         (group-name-at-point): New function.
8121         (gnus-fetch-group): Provide default from thing at point.
8122
8123 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8124
8125         * message.el (message-display-abbrev): Fix regexp.
8126
8127         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8128         choosing.
8129         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8130         dead variables.
8131
8132         * message.el (message-newline-and-indent): Remove debugging.
8133         (message-display-abbrev): Use new implementation.
8134
8135 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8136
8137         * gnus-art.el (gnus-article-mode): Set
8138         cursor-in-non-selected-windows to nil.
8139
8140         * smiley.el: Revert previous change.
8141         (smiley-data-directory): defvar it before using it in the
8142         defcustom of `smiley-style'.
8143
8144 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8145
8146         * message.el (message-newline-and-indent): New function.
8147
8148         * ecomplete.el: Implement more bits.
8149
8150         * message.el (message-put-addresses-in-ecomplete): Clean up the
8151         string.
8152
8153         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8154
8155         * gnus-sum.el (gnus-summary-save-parts): Bind
8156         gnus-summary-save-parts-counter and use it to make unique file
8157         names.
8158
8159         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8160
8161         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8162         parameter to say whether to actually parse the individual
8163         addresses.
8164
8165         * message.el (message-put-addresses-in-ecomplete): New function.
8166         (ecomplete): Require.
8167         (message-mail-alias-type): Add ecomplete as an option.
8168
8169 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8170
8171         * flow-fill.el (fill-flowed): Remove trailing space from blank
8172         quoted lines.
8173
8174 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8175
8176         * smiley.el (smiley-style): Move definition later to avoid a
8177         compilation warning.
8178
8179 2006-04-12  Kenichi Handa  <handa@m17n.org>
8180
8181         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8182         buffer and then decode the buffer text if necessary.
8183         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8184         first, and after mm-encode-body, change the buffer to unibyte.
8185         Use mm-disable-multibyte instead of set-buffer-multibyte.
8186
8187 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8188
8189         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8190         Content-Type header instead of Content-Disposition header.
8191         (gnus-mime-inline-part): Ditto.
8192         (gnus-mime-view-part-as-charset): Ignore charset that the part
8193         specifies.
8194
8195         * mm-decode.el (mm-display-part): Work with external parts and
8196         usual parts similarly.
8197
8198         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8199         instead of gnus-display-mime.
8200
8201         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8202         instead of with-temp-buffer.
8203
8204         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8205         tag to summarized topics part in order to encode non-ASCII text.
8206
8207 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8208
8209         * smiley.el (smiley-style): New variable.
8210         (smiley-directory): New function.
8211         (smiley-data-directory): Derive from `smiley-style' using
8212         `smiley-directory'.
8213         (smiley-regexp-alist): Add new entries.
8214
8215         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8216         (gnus-article-browse-delete-temp): Add :version.
8217
8218 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8219
8220         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8221         the sieve region.
8222
8223 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8224
8225         * gnus.el (gnus-version-number): Bump version.
8226
8227 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8228
8229         * gnus.el: No Gnus v0.4 is released.
8230
8231 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8232
8233         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8234         layout.
8235
8236         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8237         unknown charset.
8238
8239         * message.el (message-header-synonyms): Add Original-To to the
8240         default.
8241
8242         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8243         optional parameter.
8244
8245 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8246
8247         * gnus-fun.el (gnus): Require it for gnus-directory.
8248
8249 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8250
8251         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8252
8253 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8254
8255         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8256
8257 2006-04-05  Simon Josefsson  <jas@extundo.com>
8258
8259         * password.el (password-reset): New function.
8260
8261 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8262
8263         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8264         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8265
8266 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8267
8268         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8269         Some whitespace was matched into the url, which broke browsing hits
8270         > 100 when mm-url-use-external was nil.
8271
8272 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8273
8274         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8275         gnus-extra-headers for 'Newsgroups.
8276
8277         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8278         bound.
8279
8280 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8281
8282         * pgg-gpg.el: Clean up process buffers every time gpg processes
8283         complete.
8284
8285 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8286
8287         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8288         doc string.
8289
8290 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8291
8292         * pgg-gpg.el (pgg-gpg-process-filter)
8293         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8294
8295         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8296         lines, temporary fix.
8297
8298 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8299
8300         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8301
8302 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8303
8304         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8305         default-enable-multibyte-characters.  This reverts the change from
8306         revision 6.17 which is no longer necessary because the passphrase
8307         is sent separately now.  GnuPG messages are unreadable under
8308         multibyte locales with default-enable-multibyte-characters set to
8309         nil.
8310
8311 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8312
8313         * message.el (message-tool-bar-gnome): Move "spell".
8314
8315 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8316
8317         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8318         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8319         instead.
8320
8321 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8322
8323         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8324         newsgroups handling for NNTP overviews which don't include
8325         Newsgroups.
8326
8327 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8328
8329         * message.el (message-resend): Bind message-generate-hashcash to nil.
8330
8331 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8332
8333         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8334         when searching for already-paid recipients.
8335
8336 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8337
8338         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8339         passphrases when it is not needed.
8340         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8341         passphrase stuff from gpg, should only be necessary when you use
8342         gpg with a smartcard.
8343
8344 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8345
8346         * mml.el (mml-insert-mime): Ignore cached contents of
8347         message/external-body part.
8348
8349         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8350         (mm-insert-part): Ditto.
8351
8352 2006-03-23  Simon Josefsson  <jas@extundo.com>
8353
8354         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8355         Reiner.
8356         (pgg-gpg-use-agent-p): Use it again.
8357
8358 2006-03-23  Simon Josefsson  <jas@extundo.com>
8359
8360         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8361         older emacsen.
8362         (pgg-gpg-use-agent-p): Don't use it.
8363
8364 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8365
8366         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8367         if we can.
8368
8369 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8370
8371         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8372         (pgg-gpg-update-agent): New function.
8373         (pgg-gpg-use-agent-p): New function.
8374         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8375         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8376         (pgg-gpg-sign-region): Use it.
8377
8378 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8379
8380         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8381         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8382
8383 2006-03-21  Simon Josefsson  <jas@extundo.com>
8384
8385         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8386         <wilde@sha-bang.de>.
8387         (pgg-gpg-use-agent): New variable.
8388         (pgg-gpg-process-region): Use it.
8389         (pgg-gpg-encrypt-region): Likewise.
8390         (pgg-gpg-encrypt-symmetric-region): Likewise.
8391         (pgg-gpg-decrypt-region): Likewise.
8392         (pgg-gpg-sign-region): Likewise.
8393         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8394
8395 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8396
8397         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8398
8399         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8400         Add comment on version.
8401
8402 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8403
8404         * smiley.el: Add missing test smiley.
8405
8406 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8407
8408         * mm-decode.el (mm-with-part): New macro.
8409         (mm-get-part): Use it; work with message/external-body as well.
8410         (mm-save-part): Treat name and filename equally.
8411
8412         * mm-extern.el (mm-extern-cache-contents): New function.
8413         (mm-inline-external-body): Use it; force the part to be displayed;
8414         move undisplayer added to the cached handle to the parent.
8415
8416         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8417         (gnus-mime-view-part-as-type): Work with message/external-body.
8418
8419         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8420
8421 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8422
8423         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8424         images in image-load-path.  [Sync with image.el, revision 1.60, in
8425         Emacs.]
8426
8427 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8428
8429         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8430         path rather than symbol.  Always return list of directories.
8431         Guarantee that image directory comes first.  [Sync with image.el,
8432         revision 1.59, in Emacs.]
8433
8434         * message.el (message-make-tool-bar): Adjust to new API of
8435         `gmm-image-load-path-for-library'.
8436
8437         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8438
8439         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8440
8441 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8442
8443         * gnus-art.el (gnus-article-only-boring-p):
8444         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8445         intangible text.
8446         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8447
8448 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8449
8450         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8451         `defun' instead of `gmm-defun-compat'.
8452
8453 2006-03-14  Simon Josefsson  <jas@extundo.com>
8454
8455         * message.el (message-unique-id): Don't use message-number-base36
8456         if (user-uid) is a float.
8457         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8458
8459 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8460
8461         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8462
8463         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8464         empty line between a part and a message part.
8465
8466 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8467
8468         * smiley.el: Add more test smileys.
8469         (smiley-data-directory, smiley-regexp-alist)
8470         (gnus-smiley-file-types): Fix doc strings.
8471         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8472         adding new elements.
8473         (smiley-mouse-map): Unused code.  Make it a comment.
8474
8475 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8476
8477         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8478         scan latest NoCeM messages instead of old ones.
8479         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8480         delimiters that are recently used.
8481         (gnus-nocem-load-cache): Add autoload cookie.
8482
8483         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8484
8485         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8486         level which is larger than gnus-use-nocem is specified.
8487
8488         * gnus-group.el (gnus-group-get-new-news): Ditto.
8489
8490 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8491
8492         * gnus-util.el (gnus-tool-bar-update): New function.
8493
8494         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8495         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8496
8497         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8498
8499         * gnus-group.el (gnus-group-redraw-when-idle)
8500         (gnus-group-redraw-check): Remove.
8501         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8502
8503 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8504
8505         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8506         if optional last element is specified in splits (FIELD VALUE...).
8507
8508 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8509
8510         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8511         to gmm-image-load-path-for-library.  Call with no-error argument.
8512         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8513
8514         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8515
8516         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8517
8518         * gmm-utils.el (gmm-image-load-path): Remove alias.
8519
8520 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8521
8522         * gmm-utils.el (gmm-image-load-path): Add alias.
8523
8524         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8525         nnml-generate-nov-databases-1.
8526         (nnml-generate-nov-databases): Use it.
8527         (nnml-generate-nov-databases-directory): Document no-active
8528         argument.
8529
8530         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8531         directory if path is t.  Add no-error.
8532
8533         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8534         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8535
8536         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8537         resetting gnus-article-browse-html-temp-list.
8538
8539         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8540         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8541         Add example to docstring.  Rename local variables.  Move error
8542         checks to default case in cond and simplify.
8543
8544 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8545
8546         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8547         handle is multipart when calling it recursively.
8548         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8549
8550 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8551
8552         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8553         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8554
8555 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8556
8557         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8558         is loaded.
8559
8560         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8561         loaded.
8562
8563 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8564
8565         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8566         to "Emacs 23 (unicode)" in doc string.
8567
8568         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8569         "Emacs 23 (unicode)" in comment.
8570
8571 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8572
8573         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8574
8575         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8576         characters 160 through 255 in Emacs 23.
8577
8578 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8579
8580         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8581         gnus-article-browse-html-temp.
8582         (gnus-article-browse-delete-temp): Make it customizable.  Add
8583         `file'.  Adjust doc string.
8584         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8585         query for each file.  Adjust doc string.
8586         (gnus-article-browse-html-parts): Add
8587         `gnus-article-browse-delete-temp-files' to
8588         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8589
8590 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8591
8592         * gnus-art.el (gnus-article-browse-html-temp)
8593         (gnus-article-browse-delete-temp): New variables.
8594         (gnus-article-browse-delete-temp-files): New function.
8595         (gnus-article-browse-html-parts): Use it.
8596
8597 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8598
8599         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8600
8601         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8602         string.
8603
8604         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8605         gnus-summary-insert-new-articles when unplugged.  Remove
8606         gnus-summary-search-article-forward.
8607
8608         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8609         display-visual-class instead of display-color-cells.
8610
8611 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8612
8613         * dgnushack.el: Autoload customize-group for XEmacs.
8614
8615         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8616         message/* containing non-ASCII text properly.
8617
8618 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8619
8620         * message.el: Require gmm-utils, remove autoloads.
8621         (message-tool-bar): Set default based on
8622         gmm-tool-bar-style.
8623         (message-tool-bar-gnome): Add gmm-customize-mode.
8624
8625         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8626         gmm-tool-bar-style.
8627         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8628
8629         * gnus-group.el (gnus-group-tool-bar): Set default based on
8630         gmm-tool-bar-style.
8631         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8632
8633         * gmm-utils.el (gmm-image-directory): Rename variable from
8634         gmm-image-load-path.
8635         (gmm-image-load-path): Use gmm-image-directory.
8636         (gmm-customize-mode): New function.
8637         (gmm-tool-bar-style): New variable.
8638
8639         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8640         gnus-group-redraw-line-number.
8641         (gnus-group-redraw-check): Simplify.
8642         (gnus-group-tool-bar-update): Remove redraw check.
8643         (gnus-group-make-tool-bar): Add redraw check.
8644
8645 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8646
8647         * gnus-art.el (gnus-button): Add missing parentheses.
8648
8649 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8650
8651         * lpath.el: Fbind line-number-at-pos.
8652
8653 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8654
8655         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8656
8657 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8658
8659         * gnus-art.el (gnus-button): New face.
8660         (gnus-article-button-face): Use it.
8661
8662         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8663         gnus-summary-next-page.  Re-order.
8664
8665         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8666         next-node are now included.
8667         (gnus-group-redraw-line-number): New internal variable.
8668         (gnus-group-redraw-check): Helper function for updating the tool
8669         bar.
8670         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8671
8672         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8673
8674         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8675         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8676         Use it to match format of Spamassassin 3.0 and later.  Reported by
8677         IRIE Tetsuya <irie@t.email.ne.jp>.
8678         (spam-check-bogofilter)
8679         (spam-bogofilter-register-with-bogofilter): Fix args of
8680         `gnus-error' calls.
8681
8682 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8683
8684         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8685         unnecessary interaction when sending queued mails.  Reported by
8686         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8687
8688 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8689
8690         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8691         first or last are nil.
8692
8693 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8694
8695         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8696
8697 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8698
8699         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8700
8701 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8702
8703         * dns.el (query-dns): Protect more against buggy tcp output.
8704
8705 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8706
8707         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8708         nov.php.
8709
8710 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8711
8712         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8713         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8714         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8715         output on the server side.
8716         (nnweb-google-create-mapping): Update regexps and add some
8717         progress indication.
8718
8719 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8720
8721         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8722         gnus-agent-toggle-plugged.  Re-order icons.
8723         (gnus-group-tool-bar-gnome): Add
8724         gnus-group-{prev,next}-unread-group.
8725         (gnus-group-tool-bar-gnome): Re-order icons.
8726
8727         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8728         gnus-summary-insert-new-articles.
8729
8730         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8731         comments.
8732
8733         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8734         also available in Emacs 21.3.
8735
8736         * message.el (message-fix-before-sending): Change "Emacs 22" to
8737         "Emacs 23 (unicode)" in comment.
8738
8739         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8740         "Emacs 23 (unicode)" in comment.
8741
8742         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8743         comment.
8744         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8745
8746         * mm-view.el (mm-fill-flowed): Add :version.
8747
8748 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8749
8750         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8751         and load-path.
8752
8753 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8754
8755         * message.el: Autoload gmm-image-load-path.
8756         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8757         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8758         consitency.
8759
8760         * gmm-utils.el (gmm-image-load-path): Also search in
8761         "../etc/images".  Don't set gmm-image-load-path if we don't find
8762         the image.
8763
8764 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8765
8766         * gmm-utils.el (gmm-image-load-path): Don't make
8767         `gmm-image-load-path' include subdirectories which the second arg
8768         `image' might specify.
8769
8770         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8771         subdirectory to icon file names.
8772
8773         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8774
8775 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8776
8777         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8778         gmm-image-load-path calls.
8779
8780         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8781
8782         * message.el (message-make-tool-bar): Ditto.
8783
8784         * mml.el (mml-preview): Added comment concerning tool bar icons.
8785
8786         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8787         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8788
8789         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8790         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8791
8792         * message.el (message-tool-bar-gnome): Use new icon names.
8793         (message-make-tool-bar): Use `gmm-image-load-path'.
8794
8795         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8796         functions from MH-E.
8797         (gmm-image-load-path): New variable from MH-E.
8798         (gmm-image-load-path): New function from MH-E.  Added arguments
8799         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8800         *-image-load-path-called-flag.
8801
8802 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8803
8804         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8805
8806 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8807
8808         * nnimap.el (nnimap-request-move-article): Change folder back to
8809         source group before deleting.
8810
8811 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8812
8813         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8814
8815         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8816         mm-url.
8817
8818         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8819
8820 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8821
8822         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8823         coding system which mm-charset-to-coding-system returns for a
8824         given charset is valid.
8825
8826 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8827
8828         * html2text.el (html2text-remove-tag-list):
8829         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8830
8831 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8832
8833         * gnus-cus.el: Revert 2005-10-17 change.
8834
8835 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8836
8837         * gnus-art.el (article-strip-banner): Call
8838         article-really-strip-banner only when the regexp match is made.
8839
8840 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8841
8842         * gnus-art.el (article-strip-banner): Use
8843         gnus-extract-address-components instead of
8844         mail-header-parse-addresses to make it work with non-ASCII text;
8845         remove mail-encode-encoded-word-string.
8846
8847         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8848         values which are surrounded with \"...\"; make it never cause a
8849         Lisp error; give up parsing of parameters if it failed in
8850         extracting type.
8851
8852 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8853
8854         * smime.el (smime-cert-by-ldap-1): Fix bug where
8855         `smime-ldap-search' returns results without userCertificates.
8856
8857 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8858
8859         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8860
8861 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8862
8863         * spam.el (spam-check-spamassassin-headers): Adapt format for
8864         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8865         <ari@mbf.ocn.ne.jp>.
8866         (spam-list-of-processors): Add spam-use-gmane.
8867
8868 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8869
8870         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8871         make-temp-file; make it work with XEmacs as well.
8872
8873         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8874         mm-make-temp-file.
8875
8876         * mm-decode.el (mm-display-external): Use the 3rd arg of
8877         mm-make-temp-file.
8878         (mm-create-image-xemacs): Ditto.
8879
8880 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8881
8882         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8883         with message-narrow-to-headers.
8884         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8885         (gnus-draft-check-draft-articles): New function.
8886         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8887
8888 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8889
8890         * gnus-art.el (gnus-article-browse-html-parts):
8891         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8892         Don't use suffix argument for mm-make-temp-file for Emacs 21
8893         compatibility.  Remove useless `format'.
8894
8895 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8896
8897         * nnweb.el (nnweb-google-wash-article): Update regexps.
8898         (nnweb-group-alist): Use defvoo instead of defvar.
8899
8900 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8901
8902         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8903         re-loading nn* modules.
8904
8905 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8906
8907         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8908         for `tool-bar-mode' and don't check it's default-value.
8909
8910         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8911
8912         * message.el (message-make-tool-bar): Ditto.
8913
8914         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8915         `substring'.  Shorten tmp-file name.
8916
8917         * gnus.el: Remove bogus comment.
8918
8919 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8920
8921         * gnus-art.el (gnus-article-browse-html-parts): New function.
8922         (gnus-article-browse-html-article): New function for viewing html
8923         articles with a browser.
8924
8925 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8926
8927         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8928         in elisp.
8929         (pgg-gpg-encrypt-symmetric-region): Ditto.
8930         (pgg-gpg-sign-region): Ditto.
8931
8932         * pgg-def.el (pgg-text-mode): New variable.
8933
8934         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8935         (mml2015-pgg-encrypt): Ditto.
8936
8937         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8938         (mml1991-pgg-encrypt): Ditto.
8939
8940 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8941
8942         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8943         message-make-date instead of current-time-string.
8944
8945         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8946         to gnus-decoded which mm-uu might set.
8947
8948 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8949
8950         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8951         don't decode quoted parameters; remove misimported Emacs code.
8952         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8953         (rfc2231-decode-encoded-string): Don't use split-string which
8954         behaves differently according to Emacs version; use
8955         mm-decode-coding-region to convert charset to coding-system.
8956         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8957         (rfc2231-encode-string): Remove misimported Emacs code.
8958
8959 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8960
8961         * gnus-art.el (article-decode-charset): Don't use ignore-errors
8962         when calling mail-header-parse-content-type.
8963         (article-de-quoted-unreadable): Ditto.
8964         (article-de-base64-unreadable): Ditto.
8965         (article-wash-html): Ditto.
8966
8967         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
8968         calling mail-header-parse-content-type and
8969         mail-header-parse-content-disposition.
8970         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
8971         mail-header-parse-content-type.
8972
8973         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
8974         insert charset and format parameters; encode description after
8975         inserting it to buffer.
8976         (mml-insert-parameter): Fold lines properly even if a parameter is
8977         segmented into two or more lines; change the max column to 76.
8978
8979         * rfc1843.el (rfc1843-decode-article-body): Don't use
8980         ignore-errors when calling mail-header-parse-content-type.
8981
8982         * rfc2231.el (rfc2231-parse-string): Return at least type if
8983         possible; don't cause an error even if it fails in parsing of
8984         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8985         (rfc2231-encode-string): Don't break lines at the beginning, leave
8986         it to mml-insert-parameter.
8987
8988         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
8989         calling mail-header-parse-content-type.
8990
8991 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
8992
8993         * spam-report.el (spam-report-gmane-use-article-number):
8994         Improve doc string.
8995         (spam-report-gmane-internal): Check if a suitable header was found
8996         in the article.
8997
8998 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8999
9000         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
9001         (rfc2231-encode-string): Make param*=value always begin with LWSP.
9002
9003 2006-02-05  Romain Francoise  <romain@orebokech.com>
9004
9005         Update copyright notices of all files in the gnus directory.
9006
9007 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9008
9009         * nnweb.el (nnweb-request-group): Avoid growing overview files.
9010
9011 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9012
9013         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
9014         segmented lines of parameter value to cope with Thunderbird 1.5
9015         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
9016         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9017         (rfc2231-encode-string): Don't make lines exceeding 76 column.
9018
9019 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
9020
9021         * mml.el (mml-generate-mime-1): Correct the order of inline signed
9022         parts.
9023
9024 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9025
9026         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
9027         there's only one active file for all servers.
9028         (nnweb-request-scan): Make sure nnweb-articles is initialized on
9029         solid groups.  Gnus might have used a FAST request to select the group.
9030         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
9031         and nnweb-search redundantly in the active file.
9032         (nnweb-request-list): Don't list bogus groups.  There can only be one.
9033         (nnweb-request-create-group): Don't use ARGS.
9034         (nnweb-possibly-change-server, nnweb-request-group): Remove some
9035         initialisations.  Let nnoo do the work.
9036
9037 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9038
9039         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
9040         Say the part has been decoded.
9041
9042         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
9043
9044 2006-01-31  Kevin Ryde  <user42@zip.com.au>
9045
9046         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
9047         mailcap-viewer-test-cache when there's no 'test clause, since that
9048         will invert the meaning of a "nil" test previously determined by
9049         mailcap-mailcap-entry-passes-test.
9050
9051 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9052
9053         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
9054         compiling.
9055
9056         * gnus-sum.el: Ditto.
9057
9058         * message.el: Don't bind tool-bar-map when compiling.
9059
9060 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
9061
9062         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
9063
9064 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9065
9066         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
9067         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
9068         current Google Groups.
9069
9070 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
9071
9072         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
9073         and tool-bar-mode.
9074
9075         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
9076         and tool-bar-mode.
9077
9078         * message.el (message-tool-bar-update): Simplify.
9079         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
9080
9081         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
9082         gnus-summary-buffer.
9083         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
9084         gnus-summary-reply.
9085
9086         * gmm-utils.el (gmm): Add :version.
9087
9088 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9089
9090         * Makefile.in (clean): New rule.
9091         (distclean): Use it.
9092
9093 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9094
9095         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9096         autoload.
9097
9098 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9099
9100         * gmm-utils.el (gmm-verbose): Add :group.
9101
9102 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9103
9104         * message.el: Change some comments WRT tool-bars.
9105
9106         * gnus-sum.el (gnus-summary-tool-bar)
9107         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9108         (gnus-summary-tool-bar-zap-list): New variables.
9109         (gnus-summary-make-tool-bar): Complete rewrite using
9110         `gmm-tool-bar-from-list'.
9111
9112         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9113         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9114         variables.
9115         (gnus-group-make-tool-bar): Complete rewrite using
9116         `gmm-tool-bar-from-list'.
9117         (gnus-group-tool-bar-update): New function.
9118
9119         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9120
9121 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9122
9123         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9124         is dissected into a single part of which the type is the same as
9125         the given one; decode charset.
9126
9127 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9128
9129         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9130         into alists as symbol not string, since that's what
9131         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9132         look for.
9133
9134 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9135
9136         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9137         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9138
9139         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9140
9141 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9142
9143         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9144         (gnus-xmas-mime-security-button-menu): New function.
9145
9146         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9147         (gnus-mime-security-button-menu): New definition.
9148         (gnus-mime-security-button-map): Use them.
9149         (gnus-mime-security-button-menu): New function.
9150         (gnus-insert-mime-security-button): Addition to help echo.
9151         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9152         (gnus-mime-security-pipe-part): New functions.
9153
9154         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9155         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9156
9157         * mm-decode.el (mm-handle-set-disposition): Remove.
9158         (mm-handle-set-description): Remove.
9159
9160 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9161
9162         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9163         (mm-w3m-standalone-supports-m17n-p): New function.
9164         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9165         w3m usage.
9166
9167         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9168         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9169
9170 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9171
9172         * message.el (message-tool-bar-zap-list): Use
9173         gmm-tool-bar-zap-list as custom type.
9174         (message-tool-bar-update): New function.
9175         (message-tool-bar, message-tool-bar-gnome)
9176         (message-tool-bar-retro): Add message-tool-bar-update.
9177         (message-tool-bar-gnome): Add flyspell-buffer.
9178
9179         * gnus-util.el (gnus-error): Describe `args'.
9180
9181         * gmm-utils.el (gmm-error): Describe `args'.
9182         (gmm-tool-bar-zap-list): New widget.
9183         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9184
9185 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9186
9187         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9188         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9189         the number of recursive calls.
9190
9191         * mm-decode.el (mm-handle-set-disposition): New macro.
9192         (mm-handle-set-description): New macro.
9193
9194 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9195
9196         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9197         encoding.
9198
9199 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9200
9201         * message.el (message-tool-bar-zap-list, message-tool-bar)
9202         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9203         (message-tool-bar-local-item-from-menu): Remove.
9204         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9205         (message-make-tool-bar): New function.
9206         (message-mode): Use `message-make-tool-bar'.
9207
9208         * gmm-utils.el: New file.
9209         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9210         (gmm-lazy): New widget copied from `nnmail.el'.
9211         (gmm-tool-bar-from-list): New function for creating customizable
9212         tool bars.
9213         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9214         output.
9215         (gmm): Add :prefix to defgroup.
9216
9217 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9218
9219         * gmm-utils.el (gmm-widget-p): New function.
9220
9221 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9222
9223         * mml.el (mml-attach-file): Describe `description' in doc string.
9224         (mml-menu): Add Emacs MIME manual and PGG manual.
9225
9226 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9227
9228         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9229
9230 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9231
9232         * nntp.el (nntp-end-of-line): Doc fix.
9233
9234 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9235
9236         * imap.el (imap-open): Handle case where buffer is a buffer
9237         object.
9238
9239 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9240
9241         * gnus-delay.el (gnus-delay): Don't autoload.
9242         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9243         to be re-loaded when customizing the `gnus-delay' group.
9244
9245 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9246
9247         * message.el (message-insert-citation-line): Use newlines.
9248
9249 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9250
9251         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9252         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9253         these routines, so the passphrase can be managed externally and
9254         passed in to the system.
9255         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9256         pgg-add-passphrase-to-cache function.
9257
9258         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9259         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9260         these routines, so the passphrase can be managed externally and
9261         passed in to the system.
9262         (pgg-pgp5-sign-region): Use new name of
9263         pgg-add-passphrase-to-cache function.
9264
9265 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9266
9267         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9268         part of the decoded armor to find the key-identifier.
9269         (pgg-gpg-lookup-key-owner): New function to return the
9270         human-readable identifier of a key owner.
9271         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9272         itself.
9273         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9274         the key value) if we have a key and can match it against a secret
9275         key.  Also, added a note pointing out fact that the prompt only
9276         indicates the first matching key.
9277
9278         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9279         pgg-decrypt-region.
9280         (pgg-add-passphrase-to-cache): Rename from
9281         `pgg-add-passphrase-cache' to reduce confusion (all callers
9282         changed).
9283         (pgg-remove-passphrase-from-cache): Rename from
9284         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9285         changed).
9286         (pgg-read-passphrase, pgg-add-passphrase-cache)
9287         (pgg-remove-passphrase-cache): Add informative docstrings.
9288         (pgg-decrypt): Convey provided passphrase in subordinate call to
9289         pgg-decrypt-region.
9290
9291 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9292
9293         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9294         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9295         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9296         'passphrase' argument, so the passphrase can be managed externally
9297         and then passed in to the system.
9298
9299         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9300         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9301         so the passphrase cache can be used reliably with identifiers
9302         besides a pgp packet's key id.
9303
9304         * pgg-gpg.el (pgg-gpg-encrypt-region)
9305         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9306         (pgg-gpg-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
9310         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9311         'notruncate' argument, so the passphrase cache can be used
9312         reliably with identifiers besides a pgp packet's key id.
9313
9314 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9315
9316         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9317         symmetric encryption.
9318         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9319         encrypted session key.
9320         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9321         message ask for the passphrase in a proper way.
9322
9323         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9324         New user commands for symmetric encryption.
9325
9326 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9327
9328         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9329
9330         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9331
9332 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9333
9334         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9335
9336 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9337
9338         * mm-decode.el (mm-inlined-types): Add application/pgp.
9339         (mm-automatic-display): Ditto.
9340
9341         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9342         part as text.
9343
9344 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9345
9346         * nnrss.el: Update copyright.
9347         (nnrss-opml-import): Query whether to subscribe to each entry.
9348
9349         * gnus-art.el:
9350         * gnus-sum.el:
9351         * gnus-xmas.el:
9352         * messagexmas.el:
9353         * mm-uu.el:
9354         * mm-view.el: Update copyright.
9355
9356 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9357
9358         * message.el (message-info): New function.
9359         (message-mode-menu): Add it.
9360         Update copyright.
9361
9362         * ChangeLog: Fix and update copyright.
9363
9364 2006-01-13  Romain Francoise  <romain@orebokech.com>
9365
9366         * message.el (message-forward-subject-name-subject): Prefer the
9367         address to 'nowhere' if the sender has no name.
9368         Fix typo.  Update copyright year.
9369
9370 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9371
9372         * gnus-art.el (article-wash-html): Use
9373         gnus-summary-show-article-charset-alist if a numeric arg is given.
9374         (gnus-article-wash-html-with-w3m-standalone): New function.
9375
9376         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9377         mm-inline-text-html-render-with-w3m-standalone.
9378         (mm-text-html-washer-alist): Map w3m-standalone to
9379         gnus-article-wash-html-with-w3m-standalone.
9380         (mm-inline-text-html-render-with-w3m-standalone): New function.
9381
9382 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9383
9384         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9385         Improve LaTeX.
9386
9387 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9388
9389         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9390         (nnrss-request-article): Render text/plain parts as HTML.
9391
9392         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9393         the buffer.
9394
9395 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9396
9397         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9398         custom definition of `gnus-posting-styles'.
9399
9400         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9401         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9402
9403 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9404
9405         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9406         Use nntp for bug archive.
9407
9408 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9409
9410         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9411         parts.
9412         (nnrss-normalize-date): New function converts ISO 8601 date into
9413         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9414         (nnrss-check-group): Use it.
9415
9416 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9417
9418         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9419
9420         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9421         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9422         (nnrss-insert-w3): Ditto.
9423
9424 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9425
9426         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9427         the articles to be forwarded including the case where neither a
9428         number of articles nor a region is specified.
9429
9430 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9431
9432         * nnrss.el (nnrss-request-article): Fix last change; fill
9433         text/plain parts.
9434
9435 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9436
9437         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9438         in text/plain part.
9439         (nnrss-check-group): Don't add excessive newline to dc:subject.
9440
9441 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9442
9443         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9444         article.
9445
9446 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9447
9448         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9449         (nnml-use-compressed-files, nnml-save-mail): Support other
9450         comression programs such as bzip2.
9451
9452 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9453
9454         * dns.el (query-dns): Make sure we check the buffer size before
9455         removing tcp headers.
9456
9457 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9458
9459         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9460         remove MIME buttons associated with multipart/alternative parts.
9461         (gnus-mime-display-alternative): Tag buttons using `article-type'
9462         text property.
9463
9464         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9465         associated with multipart/alternative parts.
9466
9467         * gnus-art.el (gnus-signature-separator): Fix custom type.
9468
9469         * mm-decode.el (mm-inlined-types): Fix custom type.
9470         (mm-keep-viewer-alive-types): Ditto.
9471         (mm-automatic-display): Ditto.
9472         (mm-attachment-override-types): Ditto.
9473         (mm-inline-override-types): Ditto.
9474         (mm-automatic-external-display): Ditto.
9475
9476 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9477
9478         * spam-report.el (spam-report-user-mail-address)
9479         (spam-report-user-agent): New variables.
9480         (spam-report-url-ping-plain): Use spam-report-user-agent.
9481
9482 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9483
9484         * gnus-art.el (gnus-button-handle-custom): Do not just use
9485         `customize-apropos' for any "M-x customize-*" button but the
9486         function called for.  Accept both the function name and its
9487         argument in order to achieve this.
9488         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9489         function name to `gnus-button-handle-custom' in case of "M-x
9490         customize-*" buttons.
9491
9492 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9493
9494         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9495         multipart/alternative and add xref to mm-discouraged-alternatives
9496         in doc string.
9497
9498         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9499         gnus-buttonized-mime-types in doc string.
9500
9501 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9502
9503         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9504         Suggest image/.* in the doc string.
9505
9506 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9507
9508         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9509         message-marks (Debian bug #342521).
9510
9511 2005-12-12  Simon Josefsson  <jas@extundo.com>
9512
9513         * password.el (password-read-from-cache): Add.
9514         (password-read): Use it.
9515
9516 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9517
9518         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9519         us-ascii as a MIME charset.
9520
9521         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9522         against the case where the 2nd arg TYPE is nil.
9523
9524 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9525
9526         * pop3.el (pop3-stream-type): Fix custom version.
9527
9528         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9529
9530 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9531
9532         * mm-decode.el (mm-display-external): Add missing cdr.
9533
9534 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9535
9536         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9537         RFC1524) if it is in mailcap or add a suffix according to
9538         mailcap-mime-extensions when generating a temp filename; postpone
9539         deleting a temp file for 2 seconds for some wrappers, shell
9540         scripts, and so on, which might exit right after having started a
9541         viewer command as a background job.
9542
9543 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9544
9545         * nntp.el (nntp-marks-directory): Fix custom group.
9546
9547         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9548         steps when < 10.
9549
9550         * gnus-start.el (gnus-no-server-1): Mention
9551         `gnus-level-default-subscribed' in doc string.
9552
9553 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9554
9555         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9556         parens.
9557
9558 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9559
9560         * gnus-xmas.el (gnus-use-toolbar): Revert.
9561         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9562         gnus-use-toolbar is default.
9563
9564         * messagexmas.el (message-use-toolbar): Revert.
9565         (message-setup-toolbar): Use global default-toolbar if
9566         message-use-toolbar is default.
9567
9568 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9569
9570         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9571         according to default-toolbar-visible-p.
9572
9573         * messagexmas.el (message-use-toolbar): Ditto.
9574
9575 2005-11-26  Dave Love  <fx@gnu.org>
9576
9577         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9578         (tls-program, tls-success): Provide openssl alternative.
9579
9580         * starttls.el: Doc fixes.
9581         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9582         SERVICE to PORT.
9583
9584         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9585         port null or service name.
9586         (starttls-negotiate): Autoload.
9587
9588 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9589
9590         * message.el (message-kill-to-signature): Fix interactive spec.
9591
9592 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9593
9594         * pop3.el (pop3-open-server): Recognize a string as a service name.
9595
9596 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9597
9598         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9599
9600 2005-11-23  Dave Love  <fx@gnu.org>
9601
9602         Add pop3s, pop3/starttls.
9603
9604         * pop3.el (pop3-authentication-scheme): Clarify doc.
9605         (open-tls-stream, starttls-open-stream): Autoload.
9606         (pop3-stream-type): New.
9607         (pop3-open-server): Use it.
9608
9609         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9610         for POP.
9611         (mail-source-keyword-map): Add :stream for POP.
9612         (mail-source-fetch-pop): Use pop3-stream-type.
9613
9614 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9615
9616         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9617         of current-time-string.
9618
9619 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9620
9621         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9622         date header.
9623
9624 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9625
9626         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9627         it can seriously impact performance as it bypasses the agent's
9628         local caches.
9629
9630 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9631
9632         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9633         must be explicitly online rather than "not explicitly offline" for
9634         its flags to be synchronized.
9635
9636         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9637         that gnus-uu-unmark-thread will function correctly.
9638
9639         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9640         1024K is instead displayed as 1M.
9641
9642 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9643
9644         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9645
9646 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9647
9648         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9649
9650 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9651
9652         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9653         error message to display actual error condition.
9654         (gnus-agent-save-local): Avoid saving symbols that are bound to
9655         nil as they simply result in a warning message in
9656         gnus-agent-read-local.
9657
9658 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9659
9660         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9661         rather than make-variable-buffer-local for file-precious-flag.
9662
9663 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9664
9665         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9666         for duplicates which are removed.  The invalid sort check then
9667         triggers a rescan after the sort as sorting may have moved
9668         duplicate entries such that they can be cheaply detected.
9669
9670 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9671
9672         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9673
9674 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9675
9676         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9677         internal variable to a custom variable.  Changed default value
9678         from compressed(2) to uncompressed(1).
9679         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9680         support for uncompressed agentview files.  Taken together, reading
9681         the agentview file should now be 6-7 times faster.
9682
9683 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9684
9685         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9686         as a buffer-local variable.  This avoids creating truncated
9687         dribble files as a result of a hang up, eg.
9688
9689 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9690
9691         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9692         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9693         XEmacs.
9694
9695 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9696
9697         * gnus-start.el (gnus-start-draft-setup): Enforce
9698         `gnus-draft-mode' for nndraft:drafts at startup.
9699
9700         * gnus.el (gnus-splash): Change custom group.
9701         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9702         allow-list argument.
9703
9704         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9705         string.
9706
9707 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9708
9709         * gnus-art.el (gnus-default-article-saver): Add user-defined
9710         `function' to custom type.
9711
9712 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9713
9714         * imap.el (imap-open): Handle case where buffer is a buffer
9715         object.
9716
9717 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9718
9719         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9720         long lines.
9721         (gnus-cache-delete-group): Wrap doc strings.
9722
9723         * gnus-agent.el (gnus-agent-rename-group)
9724         (gnus-agent-delete-group): Wrap doc strings.
9725
9726 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9727
9728         * messagexmas.el (message-use-toolbar): Change the valid values
9729         into default, top, bottom, left, and right.
9730         (message-toolbar-thickness): New variable.
9731         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9732         well.
9733         (message-setup-toolbar): Make it work.
9734
9735         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9736         (gnus-use-toolbar): Change the valid values into default, top,
9737         bottom, left, and right.
9738         (gnus-toolbar-thickness): New variable.
9739         (gnus-xmas-setup-toolbar): New function.
9740         (gnus-xmas-setup-group-toolbar): Use it.
9741         (gnus-xmas-setup-summary-toolbar): Use it.
9742
9743 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9744
9745         * gnus-start.el (gnus-1): Add "native" to
9746         gnus-predefined-server-alist.
9747
9748         * gnus.el (gnus-method-to-server): Don't add "native" to the
9749         lists here, because that leads to problems when
9750         gnus-select-method is bound.
9751
9752 2005-11-09  Simon Josefsson  <jas@extundo.com>
9753
9754         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9755         use (not sort-by-date) instead.
9756
9757 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9758
9759         * gnus-delay.el (gnus-delay-group): Don't autoload.
9760         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9761         to be re-loaded when customizing the `gnus-delay' group.
9762
9763 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9764
9765         * message.el: Revert last changes.
9766         (message-insert-citation-line): Use newlines.
9767
9768 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9769
9770         * message.el (message-courtesy-message)
9771         (message-mark-insert-begin, message-mark-insert-end)
9772         (message-elide-ellipsis, message-cancel-message)
9773         (message-add-header, message-change-subject)
9774         (message-cross-post-followup-to-header)
9775         (message-cross-post-insert-note, message-reduce-to-to-cc)
9776         (message-widen-reply, message-delete-not-region)
9777         (message-kill-to-signature, message-insert-signature)
9778         (message-insert-importance-high, message-insert-importance-low)
9779         (message-insert-or-toggle-importance)
9780         (message-insert-disposition-notification-to)
9781         (message-indent-citation, message-yank-original)
9782         (message-cite-original-without-signature, message-cite-original)
9783         (message-insert-citation-line, message-position-on-field)
9784         (message-fix-before-sending, message-send-mail-partially)
9785         (message-send-mail, message-send-mail-with-sendmail)
9786         (message-send-mail-with-qmail, message-send-news)
9787         (message-check-news-header-syntax, message-generate-headers)
9788         (message-insert-courtesy-copy, message-fill-address)
9789         (message-fill-header, message-shorten-references)
9790         (message-setup-1, message-cancel-news)
9791         (message-forward-make-body-plain, message-forward-make-body-mime)
9792         (message-forward-make-body-mml, message-encode-message-body)
9793         (message-forward-make-body-digest-plain)
9794         (message-forward-make-body-digest-mime)
9795         (message-use-alternative-email-as-from): Insert `hard-newline'
9796         instead of ordinary newlines.
9797
9798 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9799
9800         * message.el (message-generate-headers): Downcase the argument
9801         given to message-check-element.
9802
9803 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9804
9805         * nntp.el (nntp-authinfo-rejected): New error condition.
9806         (nntp-wait-for): Use new error condition to signal authentication
9807         error.
9808         (nntp-retrieve-data): Rethrow new error condition to break out of
9809         recursive call to nntp-send-authinfo.
9810
9811 2005-11-08  Romain Francoise  <romain@orebokech.com>
9812
9813         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9814         (gnus-summary-exit-map): Bind to `Z p'.
9815         (gnus-summary-make-menu-bar): Add menu item.
9816
9817 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9818
9819         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9820         (gnus-treat-*): Add `first' in all doc strings.
9821
9822         * gnus-group.el (gnus-group-compact-group): Fix typo.
9823
9824 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9825
9826         * gnus.el (gnus-parameters-case-fold-search): New variable.
9827         (gnus-parameters-get-parameter): Use it.
9828
9829         * gnus-score.el (gnus-home-score-file): Doc fix.
9830
9831 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9832
9833         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9834
9835 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9836
9837         * mm-util.el (mm-special-display-p): New function.
9838
9839         * mml.el (mml-preview): Use it; doc fix.
9840
9841 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9842
9843         * imap.el (imap-open): Handle case where buffer is a buffer object.
9844
9845 2005-10-29  Romain Francoise  <romain@orebokech.com>
9846
9847         * message.el (message-fix-before-sending): Fix comment.
9848
9849 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9850
9851         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9852
9853 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9854
9855         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9856         Used in gnus-score.el.
9857
9858 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9859
9860         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9861
9862 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9863
9864         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9865         whitespace removed in revision 7.8.  Use concatenated string to
9866         protect trailing whitespace.
9867
9868 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9869
9870         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9871         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9872         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9873         Courier IMAP ("some version from 2004").  Mostly based on similar
9874         code in the same function.
9875
9876 2005-10-26  Didier Verna  <didier@xemacs.org>
9877
9878         * gnus-group.el (gnus-group-compact-group): Invalidate original
9879         article buffer.
9880         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9881         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9882         NOV database and in article itself.
9883         Invalidate article backlog.
9884
9885 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9886
9887         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9888
9889 2005-10-26  Simon Josefsson  <jas@extundo.com>
9890
9891         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9892         part of 2004-07-25 change.
9893
9894 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9895
9896         * message.el (message-display-completion-list): New function.
9897         (message-expand-group): Use it; make sure the Completions buffer
9898         is modifiable.
9899 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9900
9901         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9902         user-mail-name is an empty string.
9903
9904 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9905
9906         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9907         depending on gnus-score-decay-constant.
9908
9909         * encrypt.el (encrypt-insert-file-contents)
9910         (encrypt-write-file-contents): Don't use `gnus-message'.
9911
9912         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9913         arguments.
9914         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9915         arguments to mm-uu-verbatim-marks-extract.
9916         (mm-uu-hide-markers): New variable.
9917         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9918
9919         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9920         (gnus-convert-image-to-face-command): Use "convert" by default to
9921         allow other input image formats.
9922         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9923         accordingly.
9924
9925 2005-10-23  Simon Josefsson  <jas@extundo.com>
9926
9927         * imap.el (imap-gssapi-program): Align command line parameters
9928         with latest GNU SASL.
9929         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9930
9931 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9932
9933         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9934         HTML.
9935         (nnslashdot-request-article): Ditto.
9936
9937         * lpath.el (featurep): Add nobreak-char-display.
9938
9939 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9940
9941         * mail-source.el (mail-source-fetch-pop): Require pop3.
9942         (mail-source-check-pop): Ditto.
9943
9944 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9945
9946         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9947         errors.
9948
9949 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9950
9951         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9952         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9953
9954         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9955
9956         * mm-bodies.el (mm-decode-string): Call
9957         `mm-charset-to-coding-system' with allow-override argument.
9958
9959 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9960
9961         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
9962         (rfc2047-charset-to-coding-system): New function.
9963         (rfc2047-decode-encoded-words): New function.
9964         (rfc2047-decode-region): Use them.
9965         (rfc2047-decode-cte): Remove.
9966         (rfc2047-parse-and-decode): Remove.
9967         (rfc2047-decode): Remove.
9968
9969 2005-10-15  Kenichi Handa  <handa@m17n.org>
9970
9971         * rfc2047.el (rfc2047-decode-cte): New function.
9972         (rfc2047-decode-region): Change the way to decode successive
9973         encoded-words: decode B- or Q-encoding in each encoded-word,
9974         concatenate them, and decode it as charset.
9975
9976 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9977
9978         * lpath.el: Fbind codepage-setup for XEmacs.
9979
9980 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
9981
9982         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
9983         widget-move-and-invoke.
9984         (gnus-custom-mode): Use gnus-custom-map.
9985
9986 2005-10-15  Bill Wohler  <wohler@newt.com>
9987
9988         * message.el (message-tool-bar-map): Renamed image file from
9989         mail_send to mail/send.
9990
9991 2005-10-16  Masatake YAMATO  <jet@gyve.org>
9992
9993         * message.el (message-expand-group): Pass the common
9994         prefix substring of completion to `display-completion-list'.
9995
9996 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
9997
9998         * mml-sec.el (mml-secure-method): New internal variable.
9999         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
10000         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
10001         functions using mml-secure-method.
10002
10003         * mml.el (mml-mode-map): Add key bindings for those functions.
10004         (mml-menu): Simplify security menu entries.  Suggested by Jesper
10005         Harder <harder@myrealbox.com>.
10006         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
10007         end of message if point is the headers of the message.
10008
10009         * message.el (message-in-body-p): New function.
10010
10011         * assistant.el: Autoload gnus-util and netrc.
10012
10013         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
10014         Use `mm-charset-override-alist' only when decoding.
10015
10016         * mm-bodies.el (mm-decode-body): Call
10017         `mm-charset-to-coding-system' with allow-override argument.
10018
10019         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
10020         `filename' from Content-Disposition if Content-Type doesn't
10021         provide `name'.
10022         (gnus-mime-view-part-as-type): Set default instead of
10023         initial-input.
10024
10025 2005-10-09  Daniel Brockman  <daniel@brockman.se>
10026
10027         * format-spec.el (format-spec): Propagate text properties of % spec.
10028
10029 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
10030
10031         * gnus-art.el (gnus-treat-predicate): Add `first'.
10032
10033 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
10034
10035         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
10036         (mm-charset-override-alist): New variable.
10037         (mm-charset-to-coding-system): Use it.
10038         (mm-codepage-setup): New helper function.
10039         (mm-charset-eval-alist): New variable.
10040         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
10041         about unknown charsets.
10042
10043         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
10044
10045 2005-10-04  David Hansen  <david.hansen@gmx.net>
10046
10047         * nnrss.el (nnrss-request-article): Add support for the comments tag.
10048         (nnrss-check-group): Ditto.
10049
10050 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
10051
10052         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
10053         Rename x-gnus-verbatim to x-verbatim.
10054         (mm-uu-type-alist): Fix regexp for verbatim-marks.
10055
10056         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
10057         x-verbatim.
10058
10059         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
10060
10061         * gnus-util.el (gnus-remove-duplicates): Remove.
10062
10063         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
10064         instead of gnus-remove-duplicates.
10065
10066         * message.el (message-remove-duplicates): Remove.
10067         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
10068         message-remove-duplicates.
10069
10070         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
10071         available, else use implementation from `delete-dups'.
10072
10073         * message.el (message-insert-expires): New function.
10074         (message-mode-map): Add key binding.
10075         (message-mode-field-menu): Add menu entry.
10076         (message-mode): Document it.
10077         (message-make-expires-date): Use `message-make-date'.
10078
10079 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
10080
10081         * message.el (message-make-expires-date): New function.
10082
10083 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10084
10085         * Makefile.in (list-installed-shadows): New entry.
10086         (install): Use it.
10087         (remove-installed-shadows): New entry.
10088
10089         * dgnushack.el (dgnushack-default-load-path): New variable.
10090         (dgnushack-find-lisp-shadows): New function.
10091         (dgnushack-remove-lisp-shadows): New function.
10092
10093 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10094
10095         * Makefile.in (install-el-elc): New entry.
10096         (install): Use it so that .el files are necessarily installed.
10097
10098 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10099
10100         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10101
10102 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10103
10104         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10105         function rather than the diff-mode.el package.
10106         (mm-display-external): Use with-current-buffer.
10107         (mm-viewer-completion-map, mm-viewer-completion-map):
10108         Move initialization inside declaration.
10109
10110 2005-09-29  Simon Josefsson  <jas@extundo.com>
10111
10112         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10113         autoload mail-check-payment.
10114         (spam-check-hashcash): Define unconditionally, since hashcash.el
10115         is part of Gnus now.  Ignore errors from payment checking.
10116
10117 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10118
10119         * message.el (message-bold-region, message-unbold-region): Rename
10120         from `bold-region' and `unbold-region'.
10121
10122         * message.el: Remove useless autoloads.
10123
10124 2005-09-28  Simon Josefsson  <jas@extundo.com>
10125
10126         * message.el (message-use-idna): Default to t.
10127         (message-use-idna): Test whether encoding works too.  Doc fix.
10128
10129 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10130
10131         * nntp.el (nntp-warn-about-losing-connection): Remove.
10132
10133 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10134
10135         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10136         customizable.  Change default value.
10137         (mm-uu-diff-groups-regexp): Change default value.
10138         (mm-uu-type-alist): Add doc string.
10139         (mm-uu-configure): Add doc string.  Make it interactive.
10140         (mm-uu-tex-groups-regexp): New variable.
10141         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10142         (mm-uu-type-alist): Add LaTeX documents.
10143         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10144         of "text/verbatim".
10145         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10146
10147         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10148         instead of "text/verbatim".
10149
10150         * message.el (message-mark-inserted-region)
10151         (message-mark-insert-file): Use slrn style marks when called with
10152         prefix argument.
10153
10154 2005-09-27  Simon Josefsson  <jas@extundo.com>
10155
10156         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10157
10158 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10159
10160         * message.el (message-remove-duplicates): New function.
10161         Implementation borrowed from `gnus-remove-duplicates'.
10162         (message-idna-to-ascii-rhs): Also encode idna addresses in
10163         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10164         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10165         only ask about the same idna domain once per header and also tell
10166         in what header to replace the idna domain.
10167
10168         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10169         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10170         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10171         a header is decoded and not just the last one.
10172
10173 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10174
10175         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10176         has been decoded.
10177
10178         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10179         (mm-insert-part): Don't modify text if it has been decoded.
10180
10181         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10182         decoded.
10183
10184         * mm-view.el (mm-inline-text): Don't strip text props unless
10185         decoding enriched or richtext parts.
10186
10187 2005-09-25  Romain Francoise  <romain@orebokech.com>
10188
10189         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10190         * gnus-start.el (gnus-subscribe-interactively):
10191         * gnus-uu.el (gnus-uu-grab-articles):
10192         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10193         space.
10194
10195 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10196
10197         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10198         * mm-view.el (mm-view-pkcs7-decrypt):
10199         * gnus-sum.el (gnus-summary-limit-to-extra)
10200         (gnus-summary-respool-article, gnus-read-move-group-name):
10201         * gnus-score.el (gnus-summary-increase-score):
10202         * gnus-util.el (gnus-completing-read-with-default):
10203         * gnus-art.el (gnus-read-save-file-name)
10204         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10205         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10206         * message.el (message-check-news-header-syntax):
10207         Follow convention for reading with the minibuffer.
10208
10209 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10210
10211         * spam-report.el (spam-report-url-ping-plain):
10212         Use gnus-extended-version as User-Agent.
10213
10214         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10215         default value is nil.
10216
10217         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10218         (mm-uu-verbatim-marks-extract): New function.
10219         (mm-uu-extract): New face.
10220         (mm-uu-copy-to-buffer): Use it.
10221
10222         * spam-report.el (spam-report-gmane-ham): Renamed from
10223         `spam-report-gmane-unspam'.
10224         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10225         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10226
10227         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10228         Autoload.
10229         (spam-report-gmane-unregister-routine): Renamed
10230         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10231
10232 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10233
10234         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10235         (spam-report-gmane-unregister-routine): Add support for gmane
10236         unregistration.
10237
10238         * spam-report.el (spam-report-gmane-unspam)
10239         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10240         (spam-report-gmane): Change to take a single article and do unspam
10241         registration.
10242
10243 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10244
10245         * mm-url.el (mm-url-decode-entities): Fix regexp.
10246
10247 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10248
10249         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10250         default to nil, to be able to use Gnus at all.  If the default
10251         switches to something else, then the function should be fixed not
10252         be exceedingly slow.
10253
10254 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10255
10256         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10257         fail hard.
10258
10259         * spam-report.el: Add better Keywords line.
10260
10261         * spam.el: Add Maintainer and better Keywords line.
10262
10263 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10264
10265         * gnus-art.el (gnus-article-replace-part)
10266         (gnus-mime-replace-part): New functions.
10267         (gnus-mime-action-alist, gnus-mime-button-commands)
10268         (gnus-mime-save-part-and-strip): Added file argument.
10269         (gnus-article-part-wrapper): Added interactive argument.
10270
10271         * gnus-sum.el (gnus-summary-mime-map): Add
10272         `gnus-article-replace-part'.
10273
10274 2005-09-19  Didier Verna  <didier@xemacs.org>
10275
10276         The nnml compaction feature:
10277         * nnml.el (nnml-request-compact-group): New function.
10278         * nnml.el (nnml-request-compact): New function.
10279         * gnus-int.el (gnus-request-compact-group): New function.
10280         * gnus-int.el (gnus-request-compact): New function.
10281         * gnus-group.el (gnus-group-compact-group): New function.
10282         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10283         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10284         * gnus-srvr.el (gnus-server-compact-server): New function.
10285         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10286         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10287
10288 2005-09-18  Deepak Goel  <deego@gnufans.org>
10289
10290         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10291         format spec.
10292
10293 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10294
10295         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10296
10297 2005-09-15  Romain Francoise  <romain@orebokech.com>
10298
10299         * message.el (message-fill-paragraph): Clarify docstring.
10300
10301 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10302
10303         * gnus-art.el (gnus-mime-display-part): Protect against broken
10304         MIME messages.
10305
10306 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10307
10308         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10309         before parsing header.
10310
10311 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10312
10313         * html2text.el (html2text-replace-list): Add new entities.
10314
10315 2005-09-11  Romain Francoise  <romain@orebokech.com>
10316
10317         * message.el (message-alternative-emails): Improve docstring.
10318         (message-setup-1): Call `message-use-alternative-email-as-from'
10319         after `message-setup-hook' to give it precedence over posting
10320         styles, etc.
10321         (message-use-alternative-email-as-from): Add docstring.  Remove
10322         the original From header if present.
10323
10324         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10325         (nnml-save-mail): Use it.
10326
10327         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10328         articles.  Add new argument `silent'.
10329         (gnus-uu-mark-all): Report the total number of marked articles.
10330
10331 2005-09-10  Romain Francoise  <romain@orebokech.com>
10332
10333         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10334         (gnus-uu-mark-series): Likewise.
10335
10336 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10337
10338         * spam-report.el (spam-report-gmane): Fix generation of spam
10339         report URL.
10340
10341 2005-09-10  Simon Josefsson  <jas@extundo.com>
10342
10343         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10344         t, based on discussion on the ding list with Robert Epprecht
10345         <epprecht@solnet.ch>.
10346
10347 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10348
10349         * spam-report.el (spam-report-gmane): Make it work without
10350         X-Report-Spam header.  Gmane now only provides Archived-At.
10351         This is only used if `spam-report-gmane-use-article-number' is nil.
10352         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10353
10354         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10355         make `gnus-summary-sort-by-recipient' work with threading.
10356
10357         * nnweb.el (nnweb-google-wash-article): Print a message if article
10358         is not available.
10359
10360 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10361
10362         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10363         change.  Decode text/* parts content before displaying.
10364
10365 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10366
10367         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10368
10369 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10370
10371         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10372
10373         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10374         url-package-name, url-package-version,
10375         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10376         w3m-display-inline-images, and w3m-minor-mode-map.
10377
10378 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10379
10380         * message.el (message-tab-body-function): Fix mismatched custom type.
10381
10382         * gnus.el (gnus-group-change-level-function): Ditto.
10383
10384         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10385
10386         * gnus-art.el (gnus-signature-limit)
10387         (gnus-article-mime-part-function): Ditto.
10388
10389 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10390
10391         * mml.el (mml-mode): Silence the byte compiler.
10392
10393         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10394         using `(sit-for 0)' before moving the point to the specified part;
10395         skip unbuttonized parts.
10396         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10397         return to the summary window if gnus-auto-select-part is non-nil.
10398
10399 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10400
10401         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10402         variables.
10403         (mml-dnd-attach-file, mml-mode): Use them.
10404
10405         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10406         Make fetching article by MID work again for Google Groups.  Added
10407         FIXME concerning gnus-group-make-web-group.
10408
10409         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10410         Don't depend on Gnus by using mail-extract-address-components if
10411         gnus-extract-address-components is not bound.
10412
10413 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10414
10415         * gnus-art.el (gnus-mime-display-security): Don't display the
10416         signature, but only the signed part.
10417
10418 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10419
10420         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10421
10422         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10423         list, not listp.
10424
10425 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10426
10427         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10428         when encoding.
10429
10430         * mm-bodies.el (mm-decode-content-transfer-encoding):
10431         De-canonicalize CRLF for all text content types, not just
10432         text/plain.
10433
10434 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10435
10436         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10437         valid article; point arrow and cursor at the MIME button.
10438
10439 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10440
10441         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10442         Suggested by Dan Christensen <jdc@uwo.ca>.
10443
10444         * mm-decode.el (mm-save-part): Enable change of prompt.
10445
10446 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10447
10448         * gnus-msg.el (gnus-inews-add-send-actions): Made
10449         `message-post-method' lambda parameter ARG `&optional'.
10450
10451 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10452
10453         * gnus-sum.el (gnus-summary-mime-map): Added
10454         gnus-article-save-part-and-strip, gnus-article-delete-part and
10455         gnus-article-jump-to-part.
10456
10457         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10458         (gnus-article-edit-part): Use it.
10459         (gnus-article-part-wrapper): Added no-handle argument.
10460         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10461         functions.
10462
10463 2005-08-29  Romain Francoise  <romain@orebokech.com>
10464
10465         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10466         docstring.
10467         (gnus-face-from-file): Likewise.
10468
10469 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10470
10471         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10472         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10473         non-nil.
10474         (gnus-auto-select-part): New variable.
10475         (gnus-article-jump-to-part): New function.
10476         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10477         (gnus-mime-delete-part): Allow selecting specified part after
10478         deleting or stripping parts.
10479         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10480         part if argument is bogus.
10481
10482 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10483
10484         * gnus-art.el (w3m-minor-mode-map):
10485         * gnus-spec.el (gnus-newsrc-file-version):
10486         * gnus-util.el (nnmail-active-file-coding-system)
10487         (gnus-original-article-buffer, gnus-user-agent):
10488         * gnus.el (gnus-ham-process-destinations)
10489         (gnus-parameter-ham-marks-alist)
10490         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10491         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10492         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10493         * mm-decode.el (gnus-current-window-configuration):
10494         * mm-extern.el (gnus-article-mime-handles):
10495         * mm-url.el (url-current-object, url-package-name)
10496         (url-package-version):
10497         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10498         (smime-keys, w3m-cid-retrieve-function-alist)
10499         (w3m-current-buffer, w3m-display-inline-images)
10500         (w3m-minor-mode-map):
10501         * mml-smime.el (gnus-extract-address-components):
10502         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10503         (gnus-newsrc-hashtb, message-default-charset)
10504         (message-deletable-headers, message-options)
10505         (message-posting-charset, message-required-mail-headers)
10506         (message-required-news-headers):
10507         * mml1991.el (mc-pgp-always-sign):
10508         * mml2015.el (mc-pgp-always-sign):
10509         * nnheader.el (nnmail-extra-headers):
10510         * rfc1843.el (gnus-decode-encoded-word-function)
10511         (gnus-decode-header-function, gnus-newsgroup-name):
10512         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10513
10514 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10515
10516         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10517         the end of the date treatments.
10518
10519 2005-08-15  Simon Josefsson  <jas@extundo.com>
10520
10521         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10522         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10523         Capello and Romain Francoise.
10524         (pgg-fetch-key-function): Removed, not used?
10525         (pgg-insert-url-with-w3): Require url, to get
10526         url-insert-file-contents regardless of where it is defined.
10527
10528 2005-08-13  Romain Francoise  <romain@orebokech.com>
10529
10530         * message.el (message-cite-original-1): New function.
10531         (message-cite-original): Use it.
10532         (message-cite-original-without-signature): Ditto.
10533
10534 2005-08-08  Romain Francoise  <romain@orebokech.com>
10535
10536         * message.el (message-yank-empty-prefix): New variable.
10537         (message-indent-citation): Use it.
10538         (message-cite-original-without-signature): Respect X-No-Archive.
10539
10540 2005-08-08  Simon Josefsson  <jas@extundo.com>
10541
10542         * pgg.el: Autoload url-insert-file-contents instead of loading
10543         w3/url.
10544         (pgg-insert-url-with-w3): Don't load url here.
10545
10546 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10547
10548         * message.el (message-kill-to-signature): Don't insert newline at
10549         bol.
10550         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10551
10552 2005-08-06  Romain Francoise  <romain@orebokech.com>
10553
10554         * message.el (message-user-fqdn): Fix typo in docstring.
10555
10556 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10557
10558         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10559
10560         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10561
10562 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10563
10564         * mm-bodies.el (mm-encode-body): Use coding system rather than
10565         charset to encode text.
10566
10567         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10568         number of charsets if utf-8 is available (XEmacs).
10569
10570 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10571
10572         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10573         taken from `gnus-button-mid-or-mail-regexp'.
10574         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10575         (gnus-button-alist): Improve regexp for domain part of the MIDs
10576         for news:localpart@domain buttons.
10577         (gnus-button-ctan-directory-regexp): Update.
10578
10579 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10580
10581         * sieve-manage.el (sieve-manage-interactive-login): Use
10582         make-local-variable rather than make-variable-buffer-local.
10583         (sieve-manage-open): Ditto.
10584         (sieve-manage-authenticate): Ditto.
10585
10586         * mml.el (mml-generate-mime-1): Make the content type default to
10587         text/plain if the filename is not specified.
10588
10589 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10590
10591         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10592         instead of insert-buffer.
10593
10594         * message.el (message-yank-original): Ditto; set the mark at the
10595         end of the yanked message.
10596
10597 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10598
10599         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10600         lines to scroll rather than to stop it.
10601
10602         * mml.el (mml-generate-default-type): Add doc string.
10603         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10604         default to application/octet-stream when determining the content
10605         type if it is not specified for the part or the mml contents; add
10606         a comment about mml-generate-default-type.
10607
10608 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10609
10610         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10611         make it default to application/octet-stream when determining the
10612         content type if it is not specified for the external contents.
10613
10614 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10615
10616         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10617         segmented parameter but also other parameters might be there.
10618
10619 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10620
10621         * mm-decode.el (mm-display-external): Delete temp file, directory
10622         and buffer immediately if the external process is exited.
10623
10624 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10625
10626         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10627         fewer lines than that of scroll-margin.
10628         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10629
10630 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10631
10632         * gnus-art.el (gnus-article-next-page): Revert.
10633         (gnus-article-beginning-of-window): New macro.
10634         (gnus-article-next-page-1): Use it.
10635         (gnus-article-prev-page): Ditto.
10636         (gnus-article-edit-part): Use insert-buffer-substring instead of
10637         insert-buffer.
10638         (gnus-article-edit-exit): Ditto.
10639
10640         * gnus-util.el (gnus-beginning-of-window): Remove.
10641         (gnus-end-of-window): Remove.
10642
10643         * lpath.el: Don't bind header-line-format and scroll-margin.
10644
10645 2005-07-25  Simon Josefsson  <jas@extundo.com>
10646
10647         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10648         to have the url package without w3.  Reported by Daiki Ueno
10649         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10650
10651 2005-07-20  Didier Verna  <didier@xemacs.org>
10652
10653         * gnus-diary.el: Remove the description comment (nndiary is now
10654         properly documented in the Gnus manual).
10655         Fix the spelling of "Back End".
10656         * nndiary.el: Ditto.
10657         Fix the copyright notice.
10658
10659 2005-07-18  Romain Francoise  <romain@orebokech.com>
10660
10661         * gnus-sum.el (gnus-summary-to-prefix)
10662         (gnus-summary-newsgroup-prefix): New variables.
10663         (gnus-summary-from-or-to-or-newsgroups): Use them.
10664
10665 2005-07-17  Romain Francoise  <romain@orebokech.com>
10666
10667         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10668         space as it's generally not especially interesting to the user.
10669
10670 2005-07-16  Romain Francoise  <romain@orebokech.com>
10671
10672         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10673         nil to avoid prompting and file modification if one of the
10674         messages at the top of the nnfolder file contains a copyright
10675         notice.
10676         Update copyright notice.
10677
10678         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10679         instead of `current-time-string' as the latter creates a time
10680         string that is not RFC 2822 compliant (it lacks the zone).
10681         Update copyright notice.
10682
10683 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10684
10685         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10686         for text/rtf.  Display default in prompt.  Pass default for M-n.
10687
10688         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10689
10690 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10691
10692         * gnus-msg.el (gnus-button-mailto): Remove
10693         save-selected-window-window hackery because it relies on
10694         save-selected-window internals.
10695
10696 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10697
10698         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10699         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10700         (gnus-article-prev-page): Ditto.
10701
10702         * gnus-util.el (gnus-beginning-of-window): New function.
10703         (gnus-end-of-window): New function.
10704
10705         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10706
10707 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10708
10709         * gnus-score.el (gnus-score-edit-all-score): Set
10710         gnus-score-edit-exit-function to gnus-score-edit-done and call
10711         gnus-message.
10712
10713 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10714
10715         * gnus-msg.el (gnus-button-mailto): Remove
10716         save-selected-window-window hackery because it relies on
10717         save-selected-window internals.
10718
10719 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10720
10721         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10722         add-minor-mode.
10723         (gnus-binary-mode): Ditto.
10724
10725         * gnus-topic.el (gnus-topic-mode): Ditto.
10726
10727 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10728
10729         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10730         (gnus-article-prev-page): Take scroll-margin into consideration.
10731
10732 2005-07-04  Lute Kamstra  <lute@gnu.org>
10733
10734         Update FSF's address in GPL notices.
10735
10736 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10737
10738         * gnus.el (gnus-exit):
10739         * gnus-group.el (gnus-group-icons):
10740         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10741
10742         * gnus-nocem.el (gnus-nocem):
10743         * message.el (message-various, message-buffers, message-sending)
10744         (message-interface, message-forwarding, message-insertion)
10745         (message-headers, message-news, message-mail):
10746         * pgg-gpg.el (pgg-gpg):
10747         * pgg-parse.el (pgg-parse):
10748         * pgg-pgp.el (pgg-pgp):
10749         * pgg-pgp5.el (pgg-pgp5):
10750         * pop3.el (pop3): Finish `defgroup' description with period.
10751
10752 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10753
10754         * gnus-art.el (article-display-face): Improve the efficiency.
10755         (article-display-x-face): Ditto; remove grey x-face stuff.
10756
10757 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10758
10759         * gnus-art.el (article-display-face): Correct the position in
10760         which Faces are inserted.
10761
10762 2005-06-29  Didier Verna  <didier@xemacs.org>
10763
10764         * gnus-art.el (article-display-face): Display faces in correct
10765         order.
10766
10767 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10768
10769         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10770         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10771         (gnus-nocem-check-article): Fetch the Type header.
10772         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10773         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10774         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10775         make sure gnus-nocem-hashtb is initialized.
10776         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10777         (gnus-nocem-unwanted-article-p): Ditto.
10778
10779         * pgg.el (pgg-verify): Return the verification result.
10780
10781 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10782
10783         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10784         is ascii.
10785
10786 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10787
10788         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10789         `show-nonbreak-escape'.
10790
10791 2005-06-23  Lute Kamstra  <lute@gnu.org>
10792
10793         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10794
10795         * dig.el (dig-mode):
10796         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10797
10798 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10799
10800         * nnimap.el (nnimap-split-download-body): Fix spellings.
10801
10802 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10803
10804         * gnus-art.el (gnus-article-encrypt-body):
10805         * gnus-cus.el (gnus-score-customize):
10806         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10807         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10808
10809 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10810
10811         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10812         header by looking for magic "MII" at the beginnig.
10813
10814 2005-06-16  Miles Bader  <miles@gnu.org>
10815
10816         * gnus-xmas.el (gnus-xmas-group-startup-message):
10817         Use renamed gnus-splash face.
10818
10819         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10820         (assistant-field-face): New backward-compatibility alias for renamed
10821         face.
10822         (assistant-render-text): Use renamed assistant-field face.
10823
10824         * spam.el (spam): Remove "-face" suffix from face name.
10825         (spam-face): New backward-compatibility alias for renamed face.
10826         (spam-face, spam-initialize): Use renamed spam face.
10827
10828         * message.el (message-header-to, message-header-cc)
10829         (message-header-subject, message-header-newsgroups)
10830         (message-header-other, message-header-name)
10831         (message-header-xheader, message-separator, message-cited-text)
10832         (message-mml): Remove "-face" suffix from face names.
10833         (message-header-to-face, message-header-cc-face)
10834         (message-header-subject-face, message-header-newsgroups-face)
10835         (message-header-other-face, message-header-name-face)
10836         (message-header-xheader-face, message-separator-face)
10837         (message-cited-text-face, message-mml-face):
10838         New backward-compatibility aliases for renamed faces.
10839         (message-font-lock-keywords): Use renamed message faces.
10840
10841         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10842         (sieve-test-commands, sieve-tagged-arguments):
10843         Remove "-face" suffix from face names.
10844         (sieve-control-commands-face, sieve-action-commands-face)
10845         (sieve-test-commands-face, sieve-tagged-arguments-face):
10846         New backward-compatibility aliases for renamed faces.
10847         (sieve-control-commands-face, sieve-action-commands-face)
10848         (sieve-test-commands-face, sieve-tagged-arguments-face):
10849         Use renamed sieve faces.
10850
10851         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10852         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10853         (gnus-group-news-3-empty, gnus-group-news-4)
10854         (gnus-group-news-4-empty, gnus-group-news-5)
10855         (gnus-group-news-5-empty, gnus-group-news-6)
10856         (gnus-group-news-6-empty, gnus-group-news-low)
10857         (gnus-group-news-low-empty, gnus-group-mail-1)
10858         (gnus-group-mail-1-empty, gnus-group-mail-2)
10859         (gnus-group-mail-2-empty, gnus-group-mail-3)
10860         (gnus-group-mail-3-empty, gnus-group-mail-low)
10861         (gnus-group-mail-low-empty, gnus-summary-selected)
10862         (gnus-summary-cancelled, gnus-summary-high-ticked)
10863         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10864         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10865         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10866         (gnus-summary-low-undownloaded)
10867         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10868         (gnus-summary-low-unread, gnus-summary-normal-unread)
10869         (gnus-summary-high-read, gnus-summary-low-read)
10870         (gnus-summary-normal-read, gnus-splash):
10871         Remove "-face" suffix from face names.
10872         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10873         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10874         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10875         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10876         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10877         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10878         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10879         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10880         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10881         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10882         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10883         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10884         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10885         (gnus-summary-normal-ticked-face)
10886         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10887         (gnus-summary-normal-ancient-face)
10888         (gnus-summary-high-undownloaded-face)
10889         (gnus-summary-low-undownloaded-face)
10890         (gnus-summary-normal-undownloaded-face)
10891         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10892         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10893         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10894         (gnus-splash-face):
10895         New backward-compatibility aliases for renamed faces.
10896         (gnus-group-startup-message): Use renamed gnus faces.
10897
10898         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10899         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10900         (gnus-server-agent): Remove "-face" suffix from face names.
10901         (gnus-server-agent-face, gnus-server-opened-face)
10902         (gnus-server-closed-face, gnus-server-denied-face)
10903         (gnus-server-offline-face):
10904         New backward-compatibility aliases for renamed faces.
10905         (gnus-server-agent-face, gnus-server-opened-face)
10906         (gnus-server-closed-face, gnus-server-denied-face)
10907         (gnus-server-offline-face): Use renamed gnus faces.
10908
10909         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10910         Remove "-face" suffix from face names.
10911         (gnus-picon-xbm-face, gnus-picon-face):
10912         New backward-compatibility aliases for renamed faces.
10913
10914         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10915         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10916         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10917         (gnus-cite-11): Remove "-face" suffix from face names.
10918         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10919         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10920         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10921         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10922         New backward-compatibility aliases for renamed faces.
10923         (gnus-cite-attribution-face, gnus-cite-face-list)
10924         (gnus-article-boring-faces): Use renamed gnus faces.
10925
10926         * gnus-art.el (gnus-signature, gnus-header-from)
10927         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10928         (gnus-header-content): Remove "-face" suffix from face names.
10929         (gnus-signature-face, gnus-header-from-face)
10930         (gnus-header-subject-face, gnus-header-newsgroups-face)
10931         (gnus-header-name-face, gnus-header-content-face):
10932         New backward-compatibility aliases for renamed faces.
10933         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10934
10935         * gnus-sum.el (gnus-summary-selected-face)
10936         (gnus-summary-highlight): Use renamed gnus faces.
10937         * gnus-group.el (gnus-group-highlight): Likewise.
10938
10939 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10940
10941         * gnus-sieve.el (gnus-sieve-article-add-rule):
10942         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10943         * spam-stat.el (spam-stat-buffer-change-to-spam)
10944         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10945
10946         * message.el (message-is-yours-p):
10947         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10948
10949 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10950
10951         * mm-view.el (mm-inline-text): Withdraw the last change.
10952
10953 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10954
10955         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10956         executing enriched-decode.
10957
10958 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10959
10960         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
10961         charset of tar files.
10962
10963 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
10964
10965         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
10966
10967 2005-06-04  Lute Kamstra  <lute@gnu.org>
10968
10969         * nnfolder.el (nnfolder-read-folder): Make sure that undo
10970         information is never recorded.
10971
10972 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10973
10974         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
10975
10976 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10977
10978         * pop3.el (pop3-apop): Run md5 in the binary mode.
10979
10980         * starttls.el (starttls-set-process-query-on-exit-flag):
10981         Use eval-and-compile.
10982
10983 2005-05-31  Simon Josefsson  <jas@extundo.com>
10984
10985         * smime.el (smime-replace-in-string): Define.
10986         (smime-cert-by-ldap-1): Use it.
10987
10988 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10989
10990         * gnus-art.el (article-display-x-face): Replace
10991         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10992
10993         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
10994         set-process-query-on-exit-flag or process-kill-without-query.
10995
10996         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
10997         loop instead of replace-regexp.
10998
10999         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
11000         instead of process-kill-without-query if it is available.
11001
11002         * lpath.el: Fbind ldap-search-entries.
11003
11004         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
11005         instead of find-file-hooks if it is available.
11006
11007         * mml1991.el: Bind pgg-default-user-id when compiling.
11008
11009         * mml2015.el: Bind pgg-default-user-id when compiling.
11010
11011         * nndraft.el (nndraft-request-associate-buffer):
11012         Use write-contents-functions instead of write-contents-hooks if it is
11013         available.
11014
11015         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
11016         instead of find-file-hooks if it is available.
11017
11018         * nntp.el (nntp-open-connection): Replace
11019         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11020         (nntp-open-ssl-stream): Ditto.
11021         (nntp-open-tls-stream): Ditto.
11022
11023         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
11024         set-process-query-on-exit-flag or process-kill-without-query.
11025         (starttls-open-stream-gnutls): Use it instead of
11026         process-kill-without-query.
11027         (starttls-open-stream): Ditto.
11028
11029 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
11030
11031         * smime.el (smime-cert-by-ldap-1): Don't use
11032         replace-regexp-in-string.
11033
11034 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
11035
11036         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
11037
11038         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
11039         in PEM format.  Adjust to the XEmacs compability.
11040
11041 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
11042
11043         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
11044         by `string-to-number'.
11045         * gnus-agent.el (gnus-agent-regenerate-group)
11046         (gnus-agent-fetch-articles): Ditto.
11047         * gnus-art.el (gnus-button-fetch-group): Ditto.
11048         * gnus-cache.el (gnus-cache-generate-active)
11049         (gnus-cache-articles-in-group): Ditto.
11050         * gnus-group.el (gnus-group-set-current-level)
11051         (gnus-group-insert-group-line): Ditto.
11052         * gnus-score.el (gnus-score-set-expunge-below)
11053         (gnus-score-set-mark-below, gnus-summary-score-effect)
11054         (gnus-summary-score-entry): Ditto.
11055         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
11056         (gnus-soup-pack): Ditto.
11057         * gnus-spec.el (gnus-xmas-format): Ditto.
11058         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
11059         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
11060         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
11061         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
11062         * nndb.el (nndb-get-remote-expire-response): Ditto.
11063         * nndiary.el (nndiary-parse-schedule-value)
11064         (nndiary-string-to-number, nndiary-request-replace-article)
11065         (nndiary-request-article): Ditto.
11066         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
11067         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
11068         * nneething.el (nneething-make-head): Ditto.
11069         * nnfolder.el (nnfolder-request-article)
11070         (nnfolder-retrieve-headers): Ditto.
11071         * nnheader.el (nnheader-file-to-number): Ditto.
11072         * nnkiboze.el (nnkiboze-request-article): Ditto.
11073         * nnmail.el (nnmail-process-unix-mail-format)
11074         (nnmail-process-babyl-mail-format): Ditto.
11075         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
11076         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
11077         (nnmh-request-create-group, nnmh-request-list-1)
11078         (nnmh-request-group, nnmh-request-article): Ditto.
11079         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
11080         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
11081         * nnsoup.el (nnsoup-make-active): Ditto.
11082         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
11083         * nntp.el (nntp-find-group-and-number)
11084         (nntp-retrieve-headers-with-xover): Ditto.
11085         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
11086         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
11087         (pgg-format-key-identifier): Ditto.
11088         * pop3.el (pop3-last, pop3-stat): Ditto.
11089         * qp.el (quoted-printable-decode-region): Ditto.
11090
11091         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11092         of concat.
11093
11094 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11095
11096         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11097
11098         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11099
11100         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11101
11102         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11103
11104         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11105
11106         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11107
11108         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11109         (gnus-carpal-mode): Ditto.
11110
11111         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11112         (gnus-browse-mode): Ditto.
11113
11114         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11115
11116         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11117
11118 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11119
11120         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11121
11122 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11123
11124         * gnus-util.el (gnus-run-mode-hooks): New function.
11125
11126         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11127
11128         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11129         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11130
11131 2005-05-27  Lute Kamstra  <lute@gnu.org>
11132
11133         * dns-mode.el (dns-mode): Specify customization group.
11134
11135 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11136
11137         * gnus-agent.el (gnus-agent-make-mode-line-string):
11138         Use mode-line-highlight as mouse-face.
11139
11140 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11141
11142         * canlock.el (canlock): Change the parent group to news.
11143
11144         * deuglify.el (gnus-outlook-deuglify): Add :group.
11145
11146         * dig.el (dig): Add :group.
11147
11148         * dns-mode.el (dns-mode): Add :group.
11149
11150         * encrypt.el (encrypt): Add :group.
11151
11152         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11153         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11154         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11155         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11156         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11157
11158         * gnus-diary.el (gnus-diary): Add :group.
11159
11160         * gnus.el (gnus-group-news-1-face): Add :group.
11161         (gnus-group-news-1-empty-face): Ditto.
11162         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11163         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11164         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11165         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11166         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11167         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11168         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11169         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11170         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11171         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11172         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11173         (gnus-summary-high-ticked-face): Ditto.
11174         (gnus-summary-low-ticked-face): Ditto.
11175         (gnus-summary-normal-ticked-face): Ditto.
11176         (gnus-summary-high-ancient-face): Ditto.
11177         (gnus-summary-low-ancient-face): Ditto.
11178         (gnus-summary-normal-ancient-face): Ditto.
11179         (gnus-summary-high-undownloaded-face): Ditto.
11180         (gnus-summary-low-undownloaded-face): Ditto.
11181         (gnus-summary-normal-undownloaded-face): Ditto.
11182         (gnus-summary-high-unread-face): Ditto.
11183         (gnus-summary-low-unread-face): Ditto.
11184         (gnus-summary-normal-unread-face): Ditto.
11185         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11186         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11187
11188         * hashcash.el (hashcash): New custom group.
11189         (hashcash-default-payment): Add :group.
11190         (hashcash-payment-alist): Ditto.
11191         (hashcash-default-accept-payment): Ditto.
11192         (hashcash-accept-resources): Ditto.
11193         (hashcash-path): Ditto.
11194         (hashcash-extra-generate-parameters): Ditto.
11195         (hashcash-double-spend-database): Ditto.
11196         (hashcash-in-news): Ditto.
11197
11198         * message.el (message-minibuffer-local-map): Add :group.
11199
11200         * netrc.el (netrc): Add :group.
11201
11202         * sieve-manage.el (sieve-manage-log): Add :group.
11203         (sieve-manage-default-user): Diito.
11204         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11205         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11206         (sieve-manage-authenticators): Ditto.
11207         (sieve-manage-authenticator-alist): Ditto.
11208         (sieve-manage-default-port): Ditto.
11209
11210         * sieve-mode.el (sieve-control-commands-face): Add :group.
11211         (sieve-action-commands-face): Ditto.
11212         (sieve-test-commands-face): Ditto.
11213         (sieve-tagged-arguments-face): Ditto.
11214
11215         * smime.el (smime): Add :group.
11216
11217         * spam-report.el (spam-report): Add :group.
11218
11219         * spam.el (spam, spam-face): Add :group.
11220
11221 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11222
11223         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11224         return \n.\n.\n at the end of articles.  Protect against that.
11225         (nntp-with-open-group): Allow debugging.
11226
11227         * nnheader.el (mail-header-set-extra): Make into a function
11228         because I just could't understand how to quote the list properly.
11229
11230         * dns.el (query-dns-cached): New function.
11231
11232 2005-05-26  Lute Kamstra  <lute@gnu.org>
11233
11234         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11235
11236 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11237
11238         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11239
11240         * gnus-art.el: Don't autoload mail-extract-address-components.
11241
11242         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11243         eval-and-compile to evaluate it.
11244
11245         * hashcash.el: Don't autoload executable-find.
11246
11247         * nndb.el: Don't declare the nndb back end two or more times; don't
11248         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11249
11250         * nntp.el: Autoload format-spec instead of format; use
11251         eval-and-compile to evaluate autoload forms.
11252
11253 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11254
11255         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11256
11257 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11258
11259         * gnus.el (gnus-version-number): Bump version.
11260
11261 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11262
11263         * gnus.el: No Gnus v0.3 is released.
11264
11265 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11266
11267         * lpath.el (featurep): Bind show-nonbreak-escape.
11268
11269 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11270
11271         * gnus-art.el (gnus-article-edit-part): Disable undo.
11272
11273 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11274
11275         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11276         gnus-article-date-lapsed-new-header is t if date timer is active;
11277         skip headers in which the original date value is empty.
11278         (gnus-article-save-original-date): Redefine it as a macro.
11279         (gnus-display-mime): Use it.
11280
11281 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11282
11283         * gnus-art.el (article-date-ut): Support converting date in
11284         forwarded parts as well.
11285         (gnus-article-save-original-date): New function.
11286         (gnus-display-mime): Use it.
11287
11288 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11289
11290         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11291         enclosure element of <item>.
11292
11293 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11294
11295         * message.el (message-kill-buffer-query): Renamed from
11296         `message-kill-buffer-query-if-modified'.  Added :version.
11297
11298 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11299
11300         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11301         window layout.
11302
11303 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11304
11305         * mml.el: Autoload dnd when compiling.
11306
11307 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11308
11309         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11310         x-dnd-*.
11311
11312 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11313
11314         * qp.el (quoted-printable-encode-region): Save excursion.
11315
11316 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11317
11318         * message.el (message-kill-buffer-query-if-modified): Add new variable
11319         so the user can kill a modified message buffer quickly.
11320         (message-kill-buffer): Use it.
11321
11322 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11323
11324         * lpath.el: Fbind display-time-event-handler; don't fbind
11325         string-to-multibyte.
11326
11327         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11328
11329 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11330
11331         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11332         contained in text because xml.el decodes entities) with LFs.
11333
11334 2005-04-11  Lute Kamstra  <lute@gnu.org>
11335
11336         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11337         differently.
11338
11339 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11340
11341         * mm-util.el (mm-detect-coding-region): Typo.
11342
11343 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11344
11345         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11346
11347 2005-04-06  Deepak Goel  <deego@gnufans.org>
11348
11349         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11350         user-function allow user modifications of the scores.
11351         (spam-stat-score-buffer-user): New function, to allow
11352         user-computed modifications to the score.
11353         (spam-stat-score-buffer-user-functions): List of additional
11354         scoring functions.
11355         (spam-stat-error-holder): Global temporary error holder.
11356         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11357         variable.
11358
11359 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11360
11361         * gnus-registry.el (gnus-registry-clean-empty-function)
11362         (gnus-registry-trim, gnus-registry-fetch-groups)
11363         (gnus-registry-delete-group): Groups that match
11364         `gnus-registry-ignored-groups' are removed from the registry
11365         entries, not just ignored for splitting.  This helps clean up the
11366         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11367         to get all the groups a message ID is in.
11368
11369         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11370         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11371         (spam-stat-score-buffer-user-functions): Add :number custom type.
11372
11373 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11374
11375         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11376         argument in XEmacs.
11377
11378         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11379         (nnrss-request-group): Decode group name first.
11380         (nnrss-request-article): Make a text/plain article if mml-to-mime
11381         failed.
11382         (nnrss-get-encoding): Return a compatible encoding according to
11383         nnrss-compatible-encoding-alist.
11384         (nnrss-find-el): Use consp instead of listp.
11385         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11386
11387 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11388
11389         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11390         which Emacs 20 doesn't support.
11391         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11392
11393 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11394
11395         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11396         silence the byte compiler inside the defun.
11397
11398         * gnus-demon.el (parse-time-string): Add autoload.
11399
11400         * gnus-delay.el (parse-time-string): Add autoload.
11401
11402         * gnus-art.el (parse-time-string): Add autoload.
11403
11404         * nnultimate.el (parse-time): Require for `parse-time-string'.
11405
11406 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11407
11408         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11409
11410         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11411
11412         * smime.el (smime-ldap-host-list): Add :version.
11413
11414 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11415
11416         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11417         pass it to `gnus-browse-read-group'.
11418         (gnus-browse-read-group): Add NUMBER argument and pass it to
11419         `gnus-group-read-ephemeral-group'.
11420
11421         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11422         argument and pass it to `gnus-group-read-group'.
11423
11424 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11425
11426         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11427         mm-xemacs-find-mime-charset-1 if we have the mule feature
11428         available at runtime.
11429
11430 2005-03-25  Werner Lemberg  <wl@gnu.org>
11431
11432         * nnmaildir.el: Replace `illegal' with `invalid'.
11433
11434 2005-03-23  Lute Kamstra  <lute@gnu.org>
11435
11436         * time-date.el: Add comment on time value formats.
11437         Don't require parse-time.
11438         (with-decoded-time-value): New macro.
11439         (encode-time-value): New function.
11440         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11441         (days-to-time): Return a valid time value when arg is huge.
11442         (time-since): Use time-subtract.
11443         (time-to-number-of-days): Use time-to-seconds.
11444
11445 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11446
11447         * gnus-start.el (gnus-display-time-event-handler):
11448         Check display-time-timer at runtime rather than only at load time
11449         in case display-time-mode is turned off in the mean time.
11450
11451 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11452
11453         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11454         used.
11455
11456         * nneething.el (nneething-map-file-directory): Derive from
11457         `gnus-directory'.
11458
11459         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11460         the To/Cc button.
11461
11462 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11463
11464         * nnmaildir.el (nnmaildir-request-accept-article):
11465         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11466
11467 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11468
11469         * gnus-async.el: Require timer-funcs at compile time when in
11470         XEmacs for `run-with-idle-timer'.
11471
11472 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11473
11474         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11475         autoloaded function.
11476
11477 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11478
11479         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11480
11481 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11482
11483         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11484
11485 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11486
11487         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11488         gnus-expert-user to default.
11489
11490 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11491
11492         * nnimap.el (nnimap-open-server): Ditto.
11493
11494         * imap.el (imap-authenticate): Fix typo.
11495
11496 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11497
11498         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11499         buffer (since IMAP server might return FETCH response out of
11500         order, and the nntp buffer must be sorted).
11501
11502 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11503
11504         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11505         comparison on string.
11506
11507         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11508         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11509         (gnus-agent-summary-fetch-series): Modified to protect against
11510         gnus-agent-summary-fetch-group clearing processable flags.
11511         (gnus-agent-synchronize-group-flags): Update live group buffer as
11512         synchronization may occur due to the user toggle the plugged
11513         status.
11514         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11515         successfully downloaded.
11516         (gnus-agent-expire-group-1): Avoid using markers when the overview
11517         is in ascending order; greatly improves performance.
11518         (gnus-agent-regenerate-group): Use
11519         gnus-agent-synchronize-group-flags to reset read status in both
11520         gnus and server.
11521         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11522
11523 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11524
11525         * message.el: Don't autoload former message-utils variables.
11526         (message-strip-subject-trailing-was): Change doc string.
11527
11528         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11529         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11530         (nnweb-google-search): Add "hl=en" here.
11531         (nnweb-google-parse-1, nnweb-google-create-mapping):
11532         Don't hardcode URL.
11533
11534 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11535
11536         * message.el (message-get-reply-headers, message-followup):
11537         Mention related variables `message-use-followup-to' and
11538         `message-use-mail-followup-to', in the information buffer.
11539
11540         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11541         of broken groups(-beta).google.com.
11542
11543 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11544
11545         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11546         parameter to invoked gnus-request-move-article; remove the
11547         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11548         all at once instead of once per article.
11549         (gnus-summary-remove-process-mark): Accept a list of articles as
11550         well as a single article for processing.
11551
11552         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11553         parameter.
11554
11555         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11556
11557         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11558
11559         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11560         parameter.
11561
11562         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11563         parameter.
11564
11565         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11566         parameter and remove the gnus-sum-hint-move-is-internal variable.
11567
11568         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11569         parameter.
11570
11571         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11572         parameter.
11573
11574         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11575         parameter.
11576
11577         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11578
11579         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11580         parameter.
11581
11582         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11583         parameter.
11584
11585 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11586
11587         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11588         a more conservative way.
11589
11590 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11591
11592         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11593         buffer, so it moves the window's cursor.
11594
11595 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11596
11597         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11598         `mm-dissect-multipart' and receive the from field as an (optional)
11599         argument from `mm-dissect-multipart'.
11600         (mm-dissect-multipart): Receive the from field as an argument and
11601         pass it on when we call `mm-dissect-buffer' on MIME parts.
11602         Fixes verification/decryption of signed/encrypted MIME parts.
11603
11604 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11605
11606         * gnus-sum.el (gnus-summary-move-article): Set
11607         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11608         whatever it calls (right now, only nnimap-request-move article
11609         respects it).
11610
11611         * nnimap.el (nnimap-request-move-article): When
11612         gnus-sum-hint-move-is-internal is set, don't do the extra
11613         nnimap-request-article.
11614
11615 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11616
11617         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11618
11619         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11620         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11621
11622         * gnus-sum.el (gnus-summary-caesar-message):
11623         Apply `gnus-treat-article' after rotation.
11624
11625         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11626         doc string.
11627
11628 2005-02-22  Simon Josefsson  <jas@extundo.com>
11629
11630         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11631         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11632         <arne@arnested.dk>.
11633         (encrypt): Add password-cache and password-cache-expiry as group
11634         members.
11635
11636 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11637
11638         * smime.el (smime-ldap-host-list): Doc fix.
11639         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11640         cache) password.
11641         (smime-sign-region): Use it.
11642         (smime-decrypt-region): Use it.
11643         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11644         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11645         fails.
11646         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11647         certificate from DER to PEM format rather than calling openssl.
11648
11649         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11650
11651         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11652         for signing/encryption.
11653
11654         * mml.el (mml-parse-1): Use them.
11655
11656 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11657
11658         * nnrss.el (nnrss-verbose): Removed.
11659         (nnrss-request-group): Use `nnheader-message' instead.
11660
11661 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11662
11663         * nnrss.el (nnrss-verbose): New variable.
11664         (nnrss-request-group): Make it say nnrss is requesting a group.
11665
11666 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11667
11668         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11669         Handle news URL with given port correctly.
11670
11671 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11672
11673         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11674         containing special characters.
11675
11676         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11677
11678         * mml.el (mime-to-mml): Ditto.
11679
11680         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11681         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11682         (rfc2047-decode-region): Quote decoded words containing special
11683         characters when rfc2047-quote-decoded-words-containing-tspecials
11684         is non-nil.
11685
11686 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11687
11688         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11689
11690         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11691
11692 2005-02-15  Simon Josefsson  <jas@extundo.com>
11693
11694         * nnimap.el (nnimap-debug): Doc fix.
11695
11696         * imap.el (imap-debug): Doc fix.
11697
11698 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11699
11700         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11701
11702 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11703
11704         * gnus.el (spam-contents): Improve docs for spam-contents
11705         parameter in its variable incarnation.
11706
11707 2005-02-14  Simon Josefsson  <jas@extundo.com>
11708
11709         * smime-ldap.el: Use require instead of load-library for ldap.
11710         (smime-ldap-search): Indent.
11711         (smime-ldap-search-internal): Shorten line.
11712
11713         * smime.el (smime-cert-by-dns): Add doc-string.
11714         (smime-cert-by-ldap-1): Indent.
11715
11716         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11717         mml-smime-get-dns-ldap.
11718         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11719
11720 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11721
11722         * smime.el: Require smime-ldap.
11723         (smime-ldap-host-list): New variable.
11724         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11725
11726         * mml-smime.el (mml-smime-encrypt-query): New function.
11727         (mml-smime-encrypt-query): Use it.
11728
11729         * smime-ldap.el: New file.
11730
11731 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11732
11733         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11734
11735 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11736
11737         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11738         argument in doc string.  Make query for type more clear.
11739
11740 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11741
11742         * gnus.el (gnus-group-startup-message): Search for gnus images in
11743         etc/images/gnus.
11744         * mm-util.el (mm-image-load-path): Likewise.
11745         * smiley.el (smiley-data-directory): Search for smilies in
11746         etc/images/smilies.
11747
11748 2005-02-09  Kim F. Storm  <storm@cua.dk>
11749
11750         Change Emacs release version from 21.4 to 22.1 throughout.
11751         Change Emacs development version from 21.3.50 to 22.0.50.
11752
11753 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11754
11755         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11756
11757         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11758         non-Mule XEmacs as well.
11759         (mm-decompress-buffer): Signal an error intentionally if it does
11760         not decompress compressed data because auto-compression-mode is
11761         disabled.
11762
11763 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11764
11765         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11766         an ID in the registry even if it has no groups.
11767
11768 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11769
11770         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11771         merge it into mm-decompress-buffer.
11772         (gnus-mime-copy-part): Use the MIME part charset, the value which
11773         a user specified or gnus-newsgroup-charset for decoding, like
11774         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11775         save-buffer what was used.  Suggested by Kevin Ryde
11776         <user42@zip.com.au>.
11777         (gnus-mime-inline-part): Allow the name parameter as well as the
11778         filename parameter; force decompressing of compressed data; always
11779         display contents being not decoded as unibyte.
11780
11781         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11782         as well as the filename parameter.
11783
11784         * mm-util.el (mm-decompress-buffer): Merge
11785         gnus-mime-jka-compr-maybe-uncompress.
11786         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11787         of compressed data.
11788
11789 2005-02-08  Simon Josefsson  <jas@extundo.com>
11790
11791         * imap.el (imap-log): Doc fix.
11792
11793 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11794
11795         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11796         the coding cookies; decompress compressed parts.
11797
11798         * mml.el (mml-generate-mime-1): Add the charset parameter according
11799         to the value which a user specified manually or the coding cookie.
11800
11801         * mm-util.el (mm-string-to-multibyte): New function.
11802         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11803         (mm-coding-system-to-mime-charset): New function.
11804         (mm-decompress-buffer): New function.
11805         (mm-find-buffer-file-coding-system): New function.
11806
11807         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11808         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11809         parts.
11810
11811 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11812
11813         * mm-view.el (mm-display-inline-fontify): Decode a part according
11814         to the charset parameter.
11815
11816 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11817
11818         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11819         prefix arg is neither nil nor a number, as info specifies.
11820
11821 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11822
11823         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11824         timestamps.
11825
11826 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11827
11828         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11829         groups error checking and notify user.
11830
11831 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11832
11833         * message.el (message-send-mail-function): Check existence of
11834         sendmail-program first before using default value
11835         `message-send-mail-with-sendmail'.  Otherwise use more generic
11836         `smtpmail-send-it'.
11837
11838 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11839
11840         * nntp.el (nntp-request-update-info): Always return nil.
11841
11842 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11843
11844         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11845
11846 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11847
11848         * message.el (message-beginning-of-line): Change the behavior when
11849         invoked between BOL and : so that it first moves backward.
11850
11851 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11852
11853         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11854         article buffer when editing of the article is discarded.
11855         (gnus-article-prepare): Revert.
11856
11857 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11858
11859         * gnus-art.el (gnus-article-prepare):
11860         Remove message-strip-forbidden-properties from the local hook.
11861
11862 2005-01-27  Simon Josefsson  <jas@extundo.com>
11863
11864         * password.el (password-cache-add): Only start one timer per key.
11865         Reported by Derek Atkins <warlord@MIT.EDU>.
11866
11867 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11868
11869         * run-at-time.el: Removed.  It is no longer needed as
11870         timer-funcs.el in the xemacs-base package has a working version of
11871         `run-at-time'.
11872
11873         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11874
11875         * password.el: Require timer-funcs instead of run-at-time in
11876         XEmacs.
11877         Remove `password-run-at-time' macro.
11878         (password-cache-add): Use `run-at-time' instead of
11879         `password-run-at-time'.
11880
11881         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11882         Remove `nnheader-cancel-function-timers' alias,
11883         `cancel-function-timers' exists in XEmacs in timer-funcs.
11884
11885         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11886         for `run-with-idle-timer'.
11887
11888         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11889         for `run-at-time'.
11890
11891         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11892         for `with-timeout'.
11893
11894         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11895         the same as for XEmacs 21.4.
11896         No need to ignore `run-with-idle-timer', this function exists in
11897         XEmacs now in timer-funcs.el in the xemacs-base package.
11898         (dgnushack-compile): No need to delete
11899         run-at-time.el from the list of files to compile because it
11900         doesn't exist anymore.
11901
11902 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11903
11904         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11905         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11906
11907 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11908
11909         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11910         sensitively.
11911
11912 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11913
11914         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11915
11916 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11917
11918         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11919         which will be inserted according to the multibyteness of a buffer
11920         rather than the type of contents.  Suggested by ARISAWA Akihiro
11921         <ari@mbf.ocn.ne.jp>.
11922
11923         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11924         of string which old xml.el may return rather than a string.
11925
11926 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11927
11928         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11929
11930 2005-01-16  Simon Josefsson  <jas@extundo.com>
11931
11932         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11933         idn/idna.el isn't available.
11934         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11935         <michael@waxrat.com>.
11936
11937         * hashcash.el: Remove non-FSF copyright header.
11938
11939         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11940         (hashcash-generate-payment): Use it.
11941         (hashcash-generate-payment-async): Use it.
11942
11943 2005-01-15  Simon Josefsson  <jas@extundo.com>
11944
11945         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11946         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11947
11948         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11949         gnus-summary-idna-message.
11950         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11951         (gnus-summary-idna-message): New function.
11952
11953 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11954
11955         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11956         gnus-novice-user.
11957
11958 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11959
11960         * nnrss.el (nnrss-request-delete-group): Delete entries in
11961         nnrss-group-alist as well.
11962         (nnrss-save-server-data): Insert newline.
11963
11964 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
11965
11966         * gnus.el (gnus-user-agent): Use list of symbols instead of
11967         symbols.  Display full version number for (S)XEmacs.  Optionally
11968         display (S)XEmacs codename.
11969
11970         * gnus-util.el (gnus-emacs-version): Update for new
11971         `gnus-user-agent'.
11972
11973         * gnus-msg.el (gnus-extended-version): Make it possible to omit
11974         Gnus version.
11975
11976 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
11977
11978         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
11979         which is unreadable in some setups.
11980
11981 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11982
11983         * gnus-spec.el (gnus-update-format-specifications): Flush the
11984         group format spec cache if it doesn't support decoded group names.
11985
11986 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11987
11988         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
11989         Allow to apply decay on score files matching a regexp.
11990
11991 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11992
11993         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
11994         compatibility in %g and %c.
11995
11996 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11997
11998         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
11999         name for only %g and %c.
12000         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
12001         of gnus-tmp-group to decoded group name.
12002         (gnus-group-make-rss-group): Exclude `/'s from group names.
12003
12004 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12005
12006         * nnrss.el (nnrss-get-encoding): Fix regexp.
12007
12008 2004-12-27  Simon Josefsson  <jas@extundo.com>
12009
12010         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
12011         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
12012         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
12013
12014 2004-12-17  Kim F. Storm  <storm@cua.dk>
12015
12016         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
12017
12018         * gnus-sum.el (gnus-summary-mode-map): Likewise.
12019
12020 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12021
12022         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
12023
12024 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12025
12026         * nnrss.el: Require rfc2047 and mml.
12027         (nnrss-file-coding-system): New variable.
12028         (nnrss-format-string): Redefine it as an inline function.
12029         (nnrss-decode-group-name): New function.
12030         (nnrss-string-as-multibyte): Remove.
12031         (nnrss-retrieve-headers): Decode group name; don't use
12032         nnrss-format-string.
12033         (nnrss-request-group): Decode group name.
12034         (nnrss-request-article): Decode group name; allow a Message-ID as
12035         well as an article number; don't use nnrss-format-string; encode a
12036         Message-ID string which may contain non-ASCII characters; use
12037         mml-to-mime to compose a MIME article.
12038         (nnrss-request-expire-articles): Decode group name.
12039         (nnrss-request-delete-group): Decode group name.
12040         (nnrss-fetch): Clarify error message.
12041         (nnrss-read-server-data): Use insert-file-contents instead of load;
12042         bind file-name-coding-system; use multibyte buffer.
12043         (nnrss-save-server-data): Bind coding-system-for-write to the
12044         value of nnrss-file-coding-system; bind file-name-coding-system;
12045         add coding cookie.
12046         (nnrss-read-group-data): Use insert-file-contents instead of load;
12047         bind file-name-coding-system; use multibyte buffer.
12048         (nnrss-save-group-data): Bind coding-system-for-write to the
12049         value of nnrss-file-coding-system; bind file-name-coding-system.
12050         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
12051         make it work with non-ASCII text.
12052         (nnrss-find-el): Make it work with old xml.el as well.
12053
12054 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12055
12056         * nnrss.el (nnrss-get-encoding): New function.
12057         (nnrss-fetch): Use unibyte buffer initially; bind
12058         coding-system-for-read while performing mm-url-insert; remove ^Ms;
12059         decode contents according to the encoding attribute.
12060         (nnrss-save-group-data): Add coding cookie.
12061         (nnrss-mime-encode-string): New function.
12062         (nnrss-check-group): Use it to encode subject and author.
12063
12064 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
12065
12066         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
12067         imaginary variable.
12068
12069 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12070
12071         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
12072         correctly even if there are wide characters.
12073
12074 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
12075
12076         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
12077         downcased symbol names; make a new cache instead of reusing
12078         bbdb-hashtable.
12079
12080 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12081
12082         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12083         concatenating segments rather than before concatenating them.
12084         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12085
12086         * message.el (message-get-reply-headers): Bind `extra'.
12087
12088 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12089
12090         * message.el (message-extra-wide-headers): New variable.
12091         (message-get-reply-headers): Use it.
12092
12093 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12094
12095         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12096         (gnus-agent-group-pathname): Ditto.
12097
12098         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12099
12100         * gnus-group.el (gnus-group-make-group): Decode group name.
12101         (gnus-group-make-rss-group): Register the group data after opening
12102         the nnrss group.
12103
12104 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12105
12106         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12107         by expiry now get marked as read.
12108
12109 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12110
12111         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12112
12113 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12114
12115         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12116         unify Latin characters in XEmacs.
12117         (mm-find-mime-charset-region): Use it.
12118
12119 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12120
12121         * gnus-util.el (gnus-delete-directory): New function.
12122
12123         * gnus-agent.el (gnus-agent-delete-group): Use it.
12124
12125         * gnus-cache.el (gnus-cache-delete-group): Use it.
12126
12127 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12128
12129         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12130         names.
12131
12132 2004-12-16  Simon Josefsson  <jas@extundo.com>
12133
12134         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12135
12136 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12137
12138         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12139
12140         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12141         (gnus-group-set-current-level): Decode group name.
12142
12143 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12144
12145         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12146         failed.
12147
12148 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12149
12150         * gnus-group.el (gnus-group-delete-group): Decode group name.
12151         (gnus-group-make-rss-group): Encode group name.
12152         (gnus-group-catchup-current): Decode group name.
12153         (gnus-group-kill-group): Decode group name.
12154
12155 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12156
12157         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12158
12159 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12160
12161         * gnus-group.el (gnus-group-make-rss-group):
12162         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12163
12164         * gnus-start.el (gnus-setup-news): Honor user's setting to
12165         gnus-message-archive-method.  Suggested by Lute Kamstra
12166         <lute@gnu.org>.
12167
12168 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12169
12170         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12171         global counterparts of the buffer-local variables.
12172
12173 2004-11-16  Romain Francoise  <romain@orebokech.com>
12174
12175         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12176         counterparts of the buffer-local variables.
12177
12178 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12179
12180         * message.el (message-forbidden-properties): Fixed typo in doc
12181         string.
12182
12183 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12184
12185         * gnus-util.el (gnus-replace-in-string): Added doc string.
12186
12187         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12188         to avoid problems when splitting mails with many recipients.
12189
12190 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12191
12192         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12193         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12194
12195 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12196
12197         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12198         if there is no hashtable in memory or file modification time is
12199         newer than cached timestamp.
12200
12201 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12202
12203         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12204         not-matching option.
12205
12206 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12207
12208         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12209         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12210         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12211         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12212         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12213         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12214
12215 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12216
12217         * message.el (message-forward-make-body-mml): Remove headers
12218         according to message-forward-ignored-headers if a message is decoded.
12219
12220 2004-12-02  Romain Francoise  <romain@orebokech.com>
12221
12222         * message.el (message-forward-make-body-plain): Always remove
12223         headers according to message-forward-ignored-headers.
12224
12225 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12226
12227         * spam.el (spam-summary-prepare-exit): Remove the
12228         gnus-summary-limit pop for now, it has problems with ham marks for
12229         me.
12230
12231 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12232
12233         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12234         correctly.
12235
12236 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12237
12238         * format-spec.el (format-spec): Message the char.
12239
12240 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12241
12242         * gnus-art.el (gnus-split-methods): Reformat comments.
12243
12244         * spam.el (spam-summary-prepare-exit): Remove article limits
12245         before exiting the summary buffer.
12246
12247 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12248
12249         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12250         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12251
12252         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12253         order to silence the byte compiler.
12254
12255         * spam.el: Fix the way to silence the byte compiler, which
12256         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12257         bbdb-search-simple, spam-BBDB-register-routine,
12258         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12259         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12260         spam-stat-buffer-is-spam, spam-stat-load,
12261         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12262         spam-stat-save and spam-stat-split-fancy.
12263
12264 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12265
12266         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12267         which may confuse users.
12268         (canlock-password-for-verify): Ditto.
12269
12270         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12271
12272         * gnus-art.el (gnus-emphasis-alist): Ditto.
12273
12274         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12275
12276         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12277
12278         * gnus-start.el (gnus-save-killed-list): Ditto.
12279
12280         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12281         (gnus-sum-thread-tree-root): Ditto.
12282         (gnus-sum-thread-tree-false-root): Ditto.
12283         (gnus-sum-thread-tree-single-indent): Ditto.
12284
12285         * message.el (message-courtesy-message): Ditto.
12286         (message-archive-note): Ditto.
12287         (message-subscribed-address-file): Ditto.
12288         (message-user-fqdn): Ditto.
12289
12290         * spam-report.el (spam-report-gmane-regex): Ditto.
12291
12292         * spam.el (spam-blackhole-good-server-regex): Ditto.
12293
12294 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12295
12296         * mml.el (mml-preview): Widen the message buffer before copying
12297         the contents to the preview buffer; sort headers before previewing.
12298
12299         * message.el (message-hidden-headers): Fix the way to avoid a bug
12300         in the `repeat' widget in Emacs 21.3 or earlier.
12301
12302 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12303
12304         * message.el (message-hidden-headers): Default to "^References:".
12305         Improve customization type.  Suggested by Reiner Steib
12306         <Reiner.Steib@gmx.de>.
12307
12308 2004-11-25  Romain Francoise  <romain@orebokech.com>
12309
12310         * message.el (message-strip-forbidden-properties): Remove check for
12311         obsolete `message-hidden' text property, hidden headers are not
12312         accessible in the buffer anymore.
12313
12314 2004-11-22  Romain Francoise  <romain@orebokech.com>
12315
12316         * message.el (message-header-format-alist): Add `From' in list
12317         so that it can be sorted.
12318         (message-fix-before-sending): Widen and sort headers before
12319         sending.
12320         (message-hide-headers): Use narrowing to hide headers by moving
12321         them to the top of the buffer and narrowing to the region
12322         underneath.
12323
12324 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12325
12326         * message.el (message-strip-forbidden-properties): Bind
12327         buffer-read-only (etc) to nil.
12328
12329 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12330
12331         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12332         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12333
12334 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12335
12336         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12337
12338 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12339
12340         * dns.el (query-dns): Use sit-for to time instead of
12341         accept-process-output, since that doesn't seem to work on udp
12342         sockets.
12343
12344 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12345
12346         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12347
12348 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12349
12350         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12351         doc string.  Improve doc string.
12352
12353 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12354
12355         * nntp.el (nntp-request-update-info): Return nil if
12356         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12357         may not call gnus-activate-group which uselessly issues the GROUP
12358         commands for all nntp groups and wastes time.  Reported by Romain
12359         Francoise <romain@orebokech.com>.
12360
12361         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12362
12363 2004-11-15  Simon Josefsson  <jas@extundo.com>
12364
12365         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12366         headers separately.
12367         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12368         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12369
12370 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12371
12372         * gnus-start.el (gnus-convert-old-newsrc):
12373         Assign legacy-gnus-agent to 5.10.7.
12374
12375 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12376
12377         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12378         start of the lines.
12379
12380 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12381
12382         * hashcash.el (hashcash-default-payment): Change default to 20.
12383         (hashcash-default-accept-payment): Change default to 20.
12384         (hashcash-process-alist): New variable.
12385         (hashcash-generate-payment-async): Add.
12386         (hashcash-already-paid-p): Add.
12387         (hashcash-insert-payment): Don't generate payments twice.
12388         (hashcash-insert-payment-async): Add.
12389         (hashcash-insert-payment-async-2): Add.
12390         (hashcash-cancel-async): Add.
12391         (hashcash-wait-async): Add.
12392         (hashcash-processes-running-p): Add.
12393         (hashcash-wait-or-cancel): Add.
12394         (mail-add-payment): New optional argument.  Conditionally start
12395         asynchronous calculation.
12396         (mail-add-payment-async): Add.
12397
12398         * message.el (message-send-mail): Wait for asynchronous hashcash
12399         results.  Don't clobber existing X-Hashcash headers.
12400         (message-setup-1): Call mail-add-payment-async when
12401         message-generate-hashcash is non-nil.
12402
12403 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12404
12405         * message.el (message-use-alternative-email-as-from): Examine the
12406         From header as well; use message-make-from in order to include a
12407         user's full name.
12408
12409 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12410
12411         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12412         default; improve customization type.
12413         (gnus-emphasis-custom-with-format): New macro.
12414         (gnus-emphasis-custom-value-to-external): New function.
12415         (gnus-emphasis-custom-value-to-internal): New function.
12416
12417 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12418
12419         * dns.el (query-dns): Resolve reverse addresses.
12420
12421 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12422
12423         * gnus-group.el (gnus-group-get-new-news): Use it.
12424
12425         * gnus-start.el (gnus-check-reasonable-setup): New function.
12426
12427 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12428
12429         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12430         "Args out of range" error.  Reported by Arnaud Giersch
12431         <arnaud.giersch@free.fr>.
12432
12433 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12434
12435         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12436
12437 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12438
12439         * spam.el (spam group): Add :version.
12440
12441         * pgg-def.el (pgg group): Add :version.
12442
12443 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12444
12445         * gnus-art.el (gnus-article-edit-article): Don't associate the
12446         article buffer with a draft file.  This is a temporary measure
12447         against the 2004-08-22 change to gnus-article-edit-mode.
12448
12449 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12450
12451         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12452         (html2text-format-tags): Remove unused variable `attr'.
12453
12454 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12455
12456         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12457
12458         * tls.el (tls-process-connection-type, tls-success)
12459         (tls-certtool-program): Add :version.
12460
12461         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12462         (starttls-extra-arguments, starttls-process-connection-type)
12463         (starttls-connect, starttls-failure, starttls-success): Add :version.
12464
12465         * spam-stat.el (spam-stat): Add :version.
12466
12467         * sieve.el (sieve): Add :version.
12468
12469         * sha1.el (sha1): Add :version.
12470         (sha1-use-external): Remove redundant version.
12471
12472         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12473         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12474         (nnmail-split-fancy-match-partial-words)
12475         (nnmail-split-lowercase-expanded): Add :version.
12476
12477         * nndiary.el (nndiary): Add :version.
12478
12479         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12480
12481         * mml-sec.el (mml-default-sign-method)
12482         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12483         Add :version.
12484
12485         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12486
12487         * mm-url.el (mm-url-use-external, mm-url-program)
12488         (mm-url-arguments): Add :version.
12489
12490         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12491         (mm-attachment-file-modes, mm-decrypt-option)
12492         (mm-w3m-safe-url-regexp): Add :version.
12493
12494         * message.el (message-cite-prefix-regexp)
12495         (message-sendmail-envelope-from, message-minibuffer-local-map)
12496         (message-user-fqdn, message-completion-alist): Add :version.
12497
12498         * gnus-win.el (gnus-configure-windows-hook)
12499         (gnus-use-frames-on-any-display): Add :version.
12500
12501         * gnus-art.el (gnus-article-address-banner-alist)
12502         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12503         (gnus-treat-from-picon, gnus-treat-mail-picon)
12504         (gnus-treat-x-pgp-sig): Add :version.
12505
12506         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12507         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12508         (gnus-summary-article-delete-hook)
12509         (gnus-summary-display-while-building): Add :version.
12510
12511         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12512         (gnus-get-top-new-news-hook): Add :version.
12513
12514         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12515         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12516
12517         * gnus-registry.el (gnus-registry): Add :version.
12518
12519         * gnus-spec.el (gnus-use-correct-string-widths)
12520         (gnus-make-format-preserve-properties): Add :version.
12521
12522         * gnus.el (gnus-group-charter-alist)
12523         (gnus-group-fetch-control-use-browse-url)
12524         (gnus-install-group-spam-parameters): Add :version.
12525
12526         * gnus-diary.el (gnus-diary): Add :version.
12527
12528         * gnus-delay.el (gnus-delay): Add :version.
12529
12530         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12531         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12532         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12533         Add :version.
12534
12535         * gnus-agent.el (gnus-agent-max-fetch-size)
12536         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12537         (gnus-agent-prompt-send-queue): Add :version.
12538
12539         * deuglify.el (gnus-outlook-deuglify): Add :version.
12540
12541         * html2text.el: Beautify code.  Improve doc strings.  Some
12542         checkdoc cleanup.
12543         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12544
12545 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12546
12547         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12548
12549 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12550
12551         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12552         when package is loaded.
12553
12554         * spam.el (spam-summary-score-preferred-header): Add global preference
12555         for people who want to override the default SpamAssassin over
12556         Bogofilter preference (when both are set).
12557         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12558         (spam-user-format-function-S): Check
12559         spam-summary-score-preferred-header.
12560         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12561         (spam-user-format-function-S): Format the score correctly.
12562
12563 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12564
12565         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12566         signature file.  Suggested by Manoj Srivastava
12567         <srivasta@golden-gryphon.com>.
12568
12569         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12570         iso-2022-jp even in the Japanese language environment.
12571         Suggested by Jason Rumney <jasonr@gnu.org>.
12572
12573 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12574
12575         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12576         use the same characters as the dummy marks; make it free from
12577         getting affected by the language environment.
12578         (gnus-summary-read-group-1): Update mark positions only when the
12579         format spec is updated.
12580
12581         * gnus-spec.el (gnus-update-format-specifications): Return a list
12582         of updated types.
12583
12584 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12585
12586         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12587         of boundp to check if display-warning is available.
12588
12589 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12590
12591         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12592
12593 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12594
12595         * nnspool.el (nnspool-spool-directory): Use news-path if the
12596         news-directory variable is not bound.
12597
12598         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12599         function instead of display-warning if it is not available.
12600
12601 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12602
12603         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12604         v5-10: Use `point-at-bol'.
12605
12606 2004-10-26  Simon Josefsson  <jas@extundo.com>
12607
12608         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12609         <chenggao@gmail.com>.
12610
12611 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12612
12613         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12614         instead.
12615
12616 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12617
12618         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12619         to remove a server from the nnimap-server-buffer-alist.
12620         (nnimap-open-connection, nnimap-close-server): Use it.
12621
12622         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12623
12624 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12625
12626         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12627         running the major-mode function.
12628
12629 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12630
12631         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12632         dummy marks in the right way.
12633
12634 2004-10-18  David Edmondson  <dme@dme.org>
12635
12636         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12637         excessively.
12638
12639 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12640
12641         * gnus-util.el (gnus-split-references): Accept a nil references
12642         string and go on blissfully.
12643
12644         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12645         cases where the references string is non-nil but has no references.
12646
12647         * encrypt.el: Add autoload tags.
12648
12649         * spam.el (spam-resolve-registrations-routine): Remove article
12650         from unregistration list too.  Reported by David Hanak
12651         <dhanak@isis.vanderbilt.edu>
12652
12653 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12654
12655         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12656         nil.  Changed custom type.
12657
12658 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12659
12660         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12661
12662         * gnus-sum.el (gnus-summary-move-article): Use it.
12663
12664 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12665
12666         * encrypt.el: Add autoload cookies.
12667
12668         * spam.el (spam-backend-article-list-property)
12669         (spam-backend-get-article-todo-list)
12670         (spam-backend-put-article-todo-list)
12671         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12672         Resolve registrations separately.
12673         (spam-register-routine): Format comments.
12674         (spam-unregister-routine, spam-register-routine): Always call with
12675         specific-articles, no default list.
12676         (spam-summary-prepare-exit): Use the spam-classifications function.
12677
12678         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12679         gnus-encrypt.el.
12680
12681         * encrypt.el: Copied from gnus-encrypt.el.
12682
12683         * gnus-encrypt.el: Commented that it's obsolete.
12684
12685 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12686
12687         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12688         (gnus-score-save): Use it.
12689
12690         * message.el (message-bury): Use `window-dedicated-p'.
12691
12692 2004-10-15  Simon Josefsson  <jas@extundo.com>
12693
12694         * pop3.el (top-level): Don't require nnheader.
12695         (pop3-read-timeout): Add.
12696         (pop3-accept-process-output): Add.
12697         (pop3-read-response, pop3-retr): Use it.
12698
12699 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12700
12701         * spam.el (spam-register-routine): Move comment.
12702         (spam-verify-bogofilter): Use 'unknown for the initial
12703         spam-bogofilter-valid state, not 'never.
12704
12705         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12706         for netrc-machine.
12707
12708         * nnimap.el (nnimap-open-connection): Use
12709         netrc-machine-user-or-password.
12710
12711 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12712
12713         * gnus-registry.el (gnus-registry-unload-hook):
12714         Set as a variable with add-hook.
12715
12716         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12717         of news-path.
12718
12719         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12720
12721         * spam.el: Delete duplicate `provide'.
12722         (spam-unload-hook): Set as a variable with add-hook.
12723
12724 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12725
12726         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12727         in the doc string.
12728
12729         * message.el (message-ignored-news-headers)
12730         (message-ignored-supersedes-headers)
12731         (message-ignored-resent-headers)
12732         (message-forward-ignored-headers): Improve custom type.
12733
12734 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12735
12736         * message.el (message-tokenize-header): Fix 2004-09-06 change
12737         which used point-min in the wrong place.
12738
12739 2004-10-12  Simon Josefsson  <jas@extundo.com>
12740
12741         * tls.el (tls-certtool-program): New variable.
12742         (tls-certificate-information): New function, based on
12743         ssl-certificate-information.
12744
12745 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12746
12747         * compface.el: Move the version of ELisp-based uncompface program
12748         to the contrib directory because of the copyright problem.
12749
12750 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12751
12752         * message.el (message-kill-buffer): Raise the current frame.
12753
12754 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12755
12756         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12757
12758         * gnus.el (message-y-or-n-p): Autoload.
12759
12760         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12761         (pop3-password-required, pop3-authentication-scheme)
12762         (pop3-leave-mail-on-server): Made customizable.
12763         (pop3): New custom group.
12764         (pop3-retr): Remove `sleep-for' statements.
12765         Suggested by Dave Love <fx@gnu.org>.
12766
12767         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12768         Windows/DOS.
12769
12770         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12771         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12772         Dave Love <fx@gnu.org>.
12773
12774         * mml.el (mml-minibuffer-read-disposition): Require match.
12775         Suggested by Dave Love <fx@gnu.org>.
12776
12777 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12778
12779         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12780         doc string.
12781
12782 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12783
12784         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12785
12786 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12787
12788         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12789         instead of calling `mm-insert-inline', to decode text/* parts
12790         before displaying them.
12791
12792 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12793
12794         * mm-uu.el (mm-uu-text-plain-type): New variable.
12795         (mm-uu-pgp-signed-extract-1): Use it.
12796         (mm-uu-pgp-encrypted-extract-1): Use it.
12797         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12798         bind mm-uu-text-plain-type with that value.
12799         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12800         mm-uu-dissect.
12801
12802 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12803
12804         * gnus-group.el (gnus-update-group-mark-positions):
12805         * gnus-sum.el (gnus-update-summary-mark-positions):
12806         * message.el (message-check-news-body-syntax):
12807         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12808         of string-as-multibyte.
12809
12810 2004-10-05  Juri Linkov  <juri@jurta.org>
12811
12812         * gnus-group.el (gnus-update-group-mark-positions):
12813         * gnus-sum.el (gnus-update-summary-mark-positions):
12814         * message.el (message-check-news-body-syntax):
12815         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12816         8-bit unibyte values to a multibyte string for search functions.
12817
12818 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12819
12820         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12821         (mm-uu-dissect-text-parts): New function.
12822
12823         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12824         dissect text parts.
12825
12826         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12827         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12828
12829         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12830
12831         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12832         gnus-current-topics instead of gnus-current-topic.
12833
12834 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12835
12836         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12837
12838 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12839
12840         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12841         where approriate.
12842
12843         * nnml.el (nnml-generate-active-info): do.
12844
12845         * nndiary.el (nndiary-generate-active-info): do.
12846
12847         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12848         (gnus-topic-move): do.
12849
12850         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12851         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12852
12853         * gnus-srvr.el (gnus-server-prepare)
12854         (gnus-server-open-all-servers): do.
12855
12856         * gnus-msg.el (gnus-summary-cancel-article)
12857         (gnus-summary-resend-message)
12858         (gnus-summary-mail-crosspost-complaint): do.
12859
12860         * gnus-move.el (gnus-change-server): do.
12861
12862         * gnus-group.el (gnus-group-unmark-all-groups)
12863         (gnus-group-set-current-level): do.
12864
12865 2004-10-04  Simon Josefsson  <jas@extundo.com>
12866
12867         * message.el (message-generate-hashcash): Doc fix.
12868
12869 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12870
12871         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12872         avoid infinite recursion via gnus-get-function.
12873
12874 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12875
12876         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12877
12878         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12879
12880         * nnmail.el (nnmail-split-history): do.
12881
12882         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12883         (nnml-request-delete-group): do.
12884
12885         * nnslashdot.el (nnslashdot-read-groups): do.
12886
12887         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12888         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12889
12890         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12891         (nnspool-sift-nov-with-sed): Use last.
12892         (nnspool-retrieve-headers-with-nov): Use mapc.
12893         (nnspool-request-newgroups): Use dolist.
12894         (nnspool-request-group): Use last.
12895
12896         * nntp.el (nntp-read-server-type): Use dolist.
12897
12898         * nnvirtual.el (nnvirtual-create-mapping)
12899         (nnvirtual-update-read-and-marked): Use dolist.
12900         (nnvirtual-convert-headers): Simplify.
12901
12902 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12903
12904         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12905         support for sync'ing tick marks.
12906
12907 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12908
12909         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12910         there's no visible header.
12911
12912 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12913
12914         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12915         necessary, pass full group name to gnus-request-set-marks.
12916
12917 2004-10-01  Simon Josefsson  <jas@extundo.com>
12918
12919         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12920         acroread.
12921
12922 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12923
12924         * spam-report.el (spam-report-gmane): Fix interactive.
12925
12926         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12927
12928         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12929         when writing file.
12930         (gnus-agent-synchronize-flags): Don't default to being
12931         interactive.
12932
12933 2004-09-30  Simon Josefsson  <jas@extundo.com>
12934
12935         * message.el (message-generate-hashcash): Add.
12936         (message-send-mail): Use it, call mail-add-payment.
12937
12938 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12939
12940         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12941
12942 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12943
12944         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12945         gnus-requst-update-info with explicit code to sync the in-memory
12946         info read flags with the marks being sync'd to the backend.
12947
12948         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12949
12950 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12951
12952         * spam.el (spam-verify-bogofilter): Add new function.
12953         (spam-check-bogofilter)
12954         (spam-bogofilter-register-with-bogofilter): Use it.
12955         (spam-verify-bogofilter): Add small fixes.
12956
12957 2004-09-28  Simon Josefsson  <jas@extundo.com>
12958
12959         * hashcash.el (hashcash-generate-payment): Revert.
12960
12961 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12962
12963         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
12964         gnus-extract-references instead of gnus-split-references.
12965
12966         * gnus-util.el (gnus-extract-references): Add new function, analogous
12967         to gnus-split-references but extracts only the message-ID without
12968         anything extra.
12969
12970         * hashcash.el (hashcash-generate-payment)
12971         (hashcash-check-payment): Do the right thing if hashcash-path is
12972         nil (because the hashcash program could not be found).
12973
12974         * spam.el (spam-use-hashcash): Remove comment.
12975
12976 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
12977
12978         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
12979         (gnus-cache-enter-article, gnus-cache-remove-article)
12980         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
12981
12982         * gnus-async.el (gnus-async-prefetch-remove-group): do.
12983
12984         * gnus-art.el (article-hide-boring-headers)
12985         (article-translate-strings, article-display-face)
12986         (gnus-article-mime-match-handle-first)
12987         (gnus-article-highlight-headers)
12988         (gnus-article-add-buttons-to-head): do.
12989
12990 2004-09-27  Simon Josefsson  <jas@extundo.com>
12991
12992         * hashcash.el: New version, from
12993         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
12994         ../contrib/.
12995
12996 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12997
12998         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
12999
13000 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
13001
13002         * gnus-dup.el (gnus-dup-open): Use mapc.
13003         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
13004
13005         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
13006         Reported by Stefan Wiens <s.wi@gmx.net>.
13007
13008         * gnus.el (gnus-shutdown): Use dolist.
13009
13010         * gnus-undo.el (gnus-undo): Use mapc.
13011
13012         * nnrss.el (nnrss-generate-active): do.
13013
13014         * message.el (message-cite-original-without-signature)
13015         (message-cite-original): Use mapc.
13016         (message-do-actions, message-make-forward-subject): Use dolist.
13017
13018 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13019
13020         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
13021         deletion to remove entire duplicate line.  Fixes merged article
13022         number bug.
13023
13024 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13025
13026         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
13027         servers that are offline.  Avoids having gnus-agent-toggle-plugged
13028         first ask if you want to open a server and then, even when you
13029         responded with no, asking if you want to synchronize the server's
13030         flags.
13031         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
13032         multi-line expressions.
13033         (gnus-agent-synchronize-group-flags): New internal function.
13034         Updates marks in memory (in the info structure) AND in the
13035         backend.
13036
13037         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
13038
13039         * nnagent.el (nnagent-request-set-mark): Use
13040         gnus-agent-synchronize-group-flags, not backend's request-set-mark
13041         method, to ensure that synchronization updates marks in the
13042         backend and in the info (in memory) structure.
13043
13044 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13045
13046         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
13047         convention fully; don't miss the root article of a thread; make
13048         the X-Draft-From header with correct article numbers.
13049
13050 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
13051
13052         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
13053         unless plugged.  Disable the agent so that an open failure causes
13054         an error.
13055
13056         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
13057         Reverted 2004-09-21 change.  The backend must be opened while
13058         synchronizing flags even when the backend stores the flags
13059         locally.
13060
13061 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
13062
13063         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
13064         in `header' match.  Reported by Svend Tollak Munkejord.
13065
13066         * message.el (message-cite-original): Fix use of
13067         `message-cite-articles-with-x-no-archive'.
13068
13069 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13070
13071         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
13072         (gnus-window-to-buffer): Ditto.
13073
13074         * mml.el (mml-preview-buffer): New variable.
13075         (mml-preview): Manage window layout with gnus-buffer-configuration.
13076
13077         * gnus-msg.el (gnus-setup-message): Put article numbers into the
13078         X-Draft-From header even if those articles aren't quoted.
13079
13080 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
13081
13082         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
13083         (gnus-request-set-mark, gnus-request-update-mark): Use new
13084         g-s-t-u-l-m to decide to use backend even when unplugged.
13085
13086 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13087
13088         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
13089         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
13090
13091 2004-09-20  Simon Josefsson  <jas@extundo.com>
13092
13093         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13094         "utf-16-le".
13095
13096 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13097
13098         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13099
13100 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13101
13102         * uudecode.el (uudecode-use-external): Add :version.
13103
13104         * smime.el (smime-CA-file, smime-encrypt-cipher)
13105         (smime-dns-server): Add :version.
13106
13107         * smiley.el (gnus-smiley-file-types): Add :version.
13108
13109         * sha1.el (sha1-use-external): Add :version.
13110
13111         * pgg-def.el (pgg-query-keyserver): Add :version.
13112
13113         * nnmail.el (nnmail-fancy-expiry-targets)
13114         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13115         Add :version.
13116
13117         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13118         (nnimap-retrieve-groups-asynchronous): Add :version.
13119         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13120
13121         * mml.el (mml-content-disposition-parameters)
13122         (mml-insert-mime-headers-always): Add :version.
13123
13124         * mm-util.el (mm-coding-system-priorities): Add :version.
13125
13126         * mm-decode.el (mm-inline-text-html-with-images)
13127         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13128         (mm-verify-option): Add :version.
13129         (mm-text-html-renderer): Change :version.
13130
13131         * message.el (message-fcc-externalize-attachments)
13132         (message-required-headers, message-draft-headers)
13133         (message-subject-trailing-was-query)
13134         (message-subject-trailing-was-ask-regexp)
13135         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13136         (message-mark-insert-end, message-archive-header)
13137         (message-archive-note, message-cross-post-default)
13138         (message-cross-post-note, message-followup-to-note)
13139         (message-cross-post-note-function, message-use-mail-followup-to)
13140         (message-subscribed-address-functions)
13141         (message-subscribed-address-file, message-subscribed-addresses)
13142         (message-subscribed-regexps, message-allow-no-recipients)
13143         (message-yank-cited-prefix, message-signature-insert-empty-line)
13144         (message-hidden-headers, message-hierarchical-addresses)
13145         (message-mail-user-agent, message-use-idna)
13146         (message-valid-fqdn-regexp)
13147         (message-strip-special-text-properties, message-header-synonyms)
13148         (message-beginning-of-line, message-tab-body-function): Add :version.
13149         (message-insert-canlock, message-wide-reply-confirm-recipients):
13150         Change :version.
13151
13152         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13153         and :version.
13154         (mail-source-delete-old-incoming-confirm)
13155         (mail-source-movemail-program): Add :version.
13156
13157         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13158         (gnus-agent-cache, gnus-agent): Change :version.
13159
13160         * gnus-util.el (gnus-use-byte-compile): Change :version.
13161
13162         * gnus-sum.el (gnus-summary-make-false-root-always)
13163         (gnus-summary-default-high-score)
13164         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13165         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13166         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13167         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13168         (gnus-sum-thread-tree-single-indent)
13169         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13170         (gnus-sum-thread-tree-leaf-with-other)
13171         (gnus-sum-thread-tree-single-leaf): Add :version.
13172         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13173         (gnus-article-loose-mime): Change :version.
13174
13175         * gnus-start.el (gnus-backup-startup-file)
13176         (gnus-save-startup-file-via-temp-buffer): Add :version.
13177
13178         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13179         (gnus-server-offline-face): Add :version.
13180
13181         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13182
13183         * gnus-msg.el (gnus-gcc-externalize-attachments)
13184         (gnus-debug-files, gnus-debug-exclude-variables)
13185         (gnus-discouraged-post-methods): Change :version.
13186         (gnus-confirm-mail-reply-to-news)
13187         (gnus-confirm-treat-mail-like-news): Add :version.
13188
13189         * gnus-int.el (gnus-server-unopen-status): Add :version.
13190
13191         * gnus-group.el (gnus-group-jump-to-group-prompt)
13192         (gnus-large-ephemeral-newsgroup)
13193         (gnus-fetch-old-ephemeral-headers): Add :version.
13194
13195         * gnus-fun.el (gnus-x-face-directory)
13196         (gnus-convert-pbm-to-x-face-command)
13197         (gnus-convert-image-to-x-face-command)
13198         (gnus-convert-image-to-face-command): Add :version.
13199
13200         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13201
13202         * gnus-cite.el (gnus-cite-blank-line-after-header)
13203         (gnus-article-boring-faces): Add :version.
13204
13205         * gnus-art.el (gnus-buttonized-mime-types)
13206         (gnus-inhibit-mime-unbuttonizing)
13207         (gnus-treat-display-face)
13208         (gnus-treat-body-boundary): Change :version.
13209         (gnus-body-boundary-delimiter, gnus-picon-databases)
13210         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13211         (gnus-treat-date-english, gnus-treat-fold-headers)
13212         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13213         (gnus-treat-mail-picon, gnus-treat-wash-html)
13214         (gnus-article-encrypt-protocol)
13215         (gnus-use-idna, gnus-article-over-scroll)
13216         (gnus-mime-display-multipart-alternative-as-mixed)
13217         (gnus-mime-display-multipart-related-as-mixed)
13218         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13219         (gnus-ctan-url, gnus-button-ctan-handler)
13220         (gnus-button-handle-ctan-bogus-regexp)
13221         (gnus-button-ctan-directory-regexp)
13222         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13223         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13224         (gnus-button-man-level, gnus-button-emacs-level)
13225         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13226
13227         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13228         (gnus-agent-go-online): Change :version.
13229         (gnus-agent-expire-unagentized-dirs)
13230         (gnus-agent-auto-agentize-methods): Add :version.
13231
13232         * flow-fill.el (fill-flowed-display-column)
13233         (fill-flowed-encode-column): Add :version.
13234
13235         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13236         (gnus-outlook-deuglify-unwrap-max)
13237         (gnus-outlook-deuglify-cite-marks)
13238         (gnus-outlook-deuglify-unwrap-stop-chars)
13239         (gnus-outlook-deuglify-no-wrap-chars)
13240         (gnus-outlook-deuglify-attrib-cut-regexp)
13241         (gnus-outlook-deuglify-attrib-verb-regexp)
13242         (gnus-outlook-deuglify-attrib-end-regexp)
13243         (gnus-outlook-display-hook): Add :version.
13244
13245         * binhex.el (binhex-use-external): Add :version.
13246
13247 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13248
13249         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13250         and `invisible'.
13251
13252 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13253
13254         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13255         in gnus-registry-trim.
13256
13257 2004-09-13  Simon Josefsson  <jas@extundo.com>
13258
13259         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13260
13261         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13262
13263         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13264         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13265         <yamaoka@jpl.org>.
13266         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13267         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13268         <yamaoka@jpl.org>.
13269
13270         * sieve.el (sieve-manage-mode): Ditto.
13271
13272 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13273
13274         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13275
13276 2004-09-11  Simon Josefsson  <jas@extundo.com>
13277
13278         * dns-mode.el: Add.
13279
13280         * mm-view.el (mm-display-dns-inline): Add.
13281
13282         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13283         (mm-automatic-display): Ditto.
13284
13285         * mailcap.el (mailcap-mime-data): Add text/dns.
13286         (mailcap-mime-extensions): Map .soa to text/dns.
13287
13288 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13289
13290         * gnus-art.el (article-decode-mime-words, article-babel)
13291         (gnus-article-highlight-signature, gnus-article-add-buttons)
13292         (gnus-signature-toggle): Remove unnecessary bindings of
13293         `inhibit-read-only' inherited from v5.10 merge.
13294
13295 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13296
13297         * nntp.el (nntp): New customization group.
13298         (nntp-authinfo-file): Add customization group.
13299
13300         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13301
13302         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13303
13304         * gnus.el (to-address, to-list, subscribed)
13305         (large-newsgroup-initial): Ditto.
13306
13307         * flow-fill.el (fill-flowed-display-column)
13308         (fill-flowed-encode-column): Ditto.
13309
13310 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13311
13312         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13313         Use point-min rather than 1.
13314         (message-send-mail): Use buffer-size rather than point-max.
13315
13316         * gnus-sum.el (gnus-summary-search-article-forward):
13317         Signal a specific `search-failed' rather than a generic `error'.
13318
13319         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13320         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13321         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13322
13323 2004-09-10  Simon Josefsson  <jas@extundo.com>
13324
13325         * nndb.el (require): Remove tcp and duplicate cl.
13326
13327 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13328
13329         * gnus-agent.el (directory-files-and-attributes): Move forward.
13330
13331 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13332
13333         * gnus-agent.el (directory-files-and-attributes): Optionally
13334         defined to support XEmacs.
13335
13336 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13337
13338         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13339         to avoid run-time CL dependencies.
13340         (gnus-agent-unfetch-articles): New function.
13341         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13342         article numbers even when local .overview file is missing.
13343         (gnus-agent-read-article-number): New function.  Only accepts
13344         27-bit article numbers.
13345         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13346         gnus-agent-read-article-number.
13347         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13348         from backend while recognizing that article numbers in .overview
13349         must be valid.
13350         (gnus-agent-update-files-total-fetched-for): Use
13351         directory-files-and-attributes to improve performance.
13352         * gnus-int.el (gnus-request-move-article): Use
13353         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13354         improve performance.
13355
13356         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13357         some users confused by references to .newsrc when they only have a
13358         .newsrc.eld file.
13359         (gnus-convert-mark-converter-prompt)
13360         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13361         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13362         New function.  Used internally to only display 'gnus converting
13363         files' message when actually necessary.
13364
13365         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13366         methods now autoloaded.
13367
13368 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13369
13370         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13371         identifiers.
13372
13373 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13374
13375         * gnus-picon.el: Fix indentation and closing parenthesis.
13376
13377 2004-09-01  Simon Josefsson  <jas@extundo.com>
13378
13379         * message.el (message-canlock-generate): Require sha1, not
13380         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13381         to require within a function.  Sadly, if sha1.el isn't loaded, the
13382         let binding in m-c-g will hide the defcustom definition, which is
13383         bad.)
13384
13385         * canlock.el: Require sha1, not sha1-el.
13386
13387         * message.el: Don't autoload sha1 (there is a autoload cookie in
13388         sha1.el).
13389
13390         * sha1-el.el: Renamed to sha1.el.
13391
13392 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13393
13394         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13395
13396 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13397
13398         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13399
13400 2004-08-30  Kim F. Storm  <storm@cua.dk>
13401
13402         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13403
13404         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13405         Add :group 'nnimap.
13406
13407 2004-08-30  Andreas Schwab  <schwab@suse.de>
13408
13409         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13410         ?* and ?\;.
13411
13412         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13413         and ?\' to symbol instead of whitespace.
13414
13415 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13416
13417         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13418
13419         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13420         instead of re-search-forward.
13421
13422         * gnus-uu.el (gnus-uu-save-article): Ditto.
13423         (gnus-uu-post-encode-uuencode): Ditto.
13424
13425         * html2text.el (html2text-clean-list-items): Ditto.
13426         (html2text-clean-dtdd): Ditto.
13427         (html2text-format-tags): Ditto.
13428
13429         * message.el (message-send-mail-with-sendmail): Fix regexp.
13430         (message-fill-field-general): Use search-forward instead of
13431         re-search-forward.
13432         (unbold-region): Ditto.
13433
13434         * nnrss.el (nnrss-request-article): Ditto.
13435
13436         * nnslashdot.el (nnslashdot-request-article): Ditto.
13437
13438         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13439
13440         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13441         "Unrecognized menu descriptor" error in XEmacs.
13442
13443 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13444
13445         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13446         parent article of a sparse article in the thread hashtb.
13447
13448 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13449
13450         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13451         (nnmail-expand-newtext): Lowercase expanded entries if
13452         nnmail-split-lowercase-expanded is non-nil.
13453
13454 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13455
13456         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13457
13458         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13459         of gnus-tmp-news-method into string under XEmacs.  It will be
13460         passed to gnus-correct-length which takes only a string argument.
13461
13462 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13463
13464         * gnus-util.el (gnus-bind-print-variables): New macro.
13465         (gnus-prin1): Use it.
13466         (gnus-prin1-to-string): Use it.
13467         (gnus-pp): New function.
13468         (gnus-pp-to-string): New function.
13469
13470         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13471         Replace pp-to-string with gnus-pp-to-string.
13472         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13473         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13474         * gnus-msg.el (gnus-debug): Ditto.
13475         * gnus-score.el (gnus-score-save): Ditto.
13476         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13477         gnus-pp-to-string.
13478         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13479         with gnus-pp.
13480         * score-mode.el (gnus-score-pretty-print): Ditto.
13481         * webmail.el (webmail-debug): Ditto.
13482
13483 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13484
13485         * gnus-art.el (article-display-face, article-display-x-face):
13486         Use buffer-read-only.
13487
13488 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13489
13490         * gnus-art.el (article-hide-list-identifiers):
13491         Bind inhibit-read-only as t.
13492
13493 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13494
13495         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13496
13497 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13498
13499         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13500         (gnus-narrow-to-page): Don't assume point-min == 1.
13501         (gnus-article-edit-mode): Derive from message-mode.
13502
13503         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13504         point-min == 1.
13505
13506         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13507         Disable incorrect use of `assert'.
13508
13509         * message.el (message-mode): Set comment-start-skip.
13510
13511
13512 2004-08-22  Sam Steingold  <sds@gnu.org>
13513
13514         * pop3.el (pop3-leave-mail-on-server): New user variable.
13515         (pop3-movemail): Delete mail only when it is nil.
13516
13517 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13518
13519         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13520
13521         * mml.el (mml-preview): Use `pop-to-buffer'.
13522
13523         * message.el (message-goto-mail-followup-to): Insert after "To".
13524         (message-carefully-insert-headers): Add comment.
13525
13526         * gnus.el: Remove unused variable `gnus-article-check-size'.
13527
13528         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13529
13530         * gnus-art.el (gnus-button-alist): Improve
13531         `gnus-button-handle-library' entry.
13532
13533 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13534
13535         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13536         downcase, since XEmacs capitalizes error messages differently.
13537
13538 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13539
13540         * nntp.el: Add (require 'gnus) due to reference to
13541         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13542
13543 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13544
13545         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13546         `mm-fill-flowed'.
13547
13548         * mm-decode.el (mm-dissect-singlepart): Check it.
13549
13550 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13551
13552         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13553         'imap' for netrc parsing.
13554
13555 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13556
13557         * mailcap.el (mailcap-mime-data): Mark as risky.
13558
13559 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13560
13561         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13562         may be included in the encoded word.
13563         (rfc2047-encode): Don't append a space if the encoded word
13564         includes close parenthesis.
13565
13566 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13567
13568         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13569         of text within parentheses.
13570
13571 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13572
13573         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13574         (gnus-encrypt-write-file-contents): Make the password key the file
13575         name PLUS the cipher, not just the cipher.  Also remove failed
13576         passwords from the cache.
13577
13578 2004-08-06  Simon Josefsson  <jas@extundo.com>
13579
13580         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13581         fix.
13582
13583 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13584
13585         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13586         LWSP.
13587
13588 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13589
13590         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13591         to append in-reply-to: data to the references: header.
13592
13593         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13594         (netrc-parse): Use gnus-encrypt.el functions.
13595
13596         * gnus-encrypt.el: Add new file for encryption support; currently
13597         does only a few GPG ciphers and an internal XOR cipher.
13598
13599         * password.el: Add comments on using password-read-and-add.
13600         (password-read-and-add): Add function to read and add the
13601         password to the cache at once.
13602
13603 2004-07-28  Simon Josefsson  <jas@extundo.com>
13604
13605         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13606         parameter (but don't use it, for now).
13607
13608         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13609         instead of hard coding to nil.
13610
13611 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13612
13613         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13614         as mm-inline-image-xemacs does.
13615
13616 2004-07-26  Simon Josefsson  <jas@extundo.com>
13617
13618         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13619         Revert part of 2004-07-17 change below.
13620
13621 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13622
13623         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13624         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13625
13626 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13627
13628         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13629         quotes that actually start with ">" at the beginning of the
13630         lines.
13631
13632 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13633
13634         * rfc2047.el (rfc2047-encode-region): Fix last change.
13635         (rfc2047-encode-parameter): Remove useless concat.
13636
13637 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13638
13639         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13640         encode special characters; fix some kind of misconfigured headers;
13641         signal a real error if debug-on-quit or debug-on-error is non-nil.
13642         (rfc2047-encode-max-chars): New variable.
13643         (rfc2047-encode-1): Use it.
13644         (rfc2047-encode-parameter): New function.
13645
13646         * mml.el (mml-insert-parameter): Remove an excessive space.
13647
13648 2004-07-17  Simon Josefsson  <jas@extundo.com>
13649
13650         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13651         Kai Grossjohann <kai@emptydomain.de>.
13652         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13653         (gnus-group-make-menu-bar): Ditto.
13654
13655         * gnus-util.el (gnus-group-server): Add.
13656
13657 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13658
13659         * message.el (message-clone-locals): Clone sendmail and smtp
13660         variables.
13661
13662 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13663
13664         * rfc2047.el (rfc2047-encode-region): Fix last change.
13665
13666 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13667
13668         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13669         characters as non-special.
13670
13671 2004-07-09  Simon Josefsson  <jas@extundo.com>
13672
13673         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13674         Users will lose all flag changes made while unplugged with
13675         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13676         good default.  See numerous reports on ding mailing list.
13677
13678 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13679
13680         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13681         add generate-head-function and generate-article-function to the
13682         rfc822-forward entry.
13683         (nndoc-rfc822-forward-generate-article): New function.
13684         (nndoc-rfc822-forward-generate-head): New function.
13685
13686         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13687
13688 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13689
13690         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13691         respect display group parameter and gnus-summary-expunge-below.
13692         (gnus-articles-to-read): Remove unused reference to display group
13693         parameter.
13694
13695 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13696
13697         * nnheader.el (nnheader-uniquify-message-id): New experimental
13698         variable.
13699         (nnheader-nov-read-message-id): Use it.
13700
13701         * spam-report.el (spam-report-gmane): Add interactive.
13702
13703 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13704
13705         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13706         qp-or-base64 for the application/* types.
13707
13708 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13709
13710         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13711
13712 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13713
13714         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13715         trim value.
13716
13717 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13718
13719         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13720         New macro and function.
13721         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13722
13723 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13724
13725         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13726         after-load-alist.
13727
13728 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13729
13730         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13731         update info that isn't there.
13732
13733 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13734
13735         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13736         entry.
13737
13738 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13739
13740         * mm-view.el (mm-inline-render-with-function): Use multibyte
13741         buffer; decode html source by charset.
13742
13743         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13744
13745         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13746         Mule-UCS is loaded under XEmacs.
13747         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13748
13749 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13750
13751         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13752
13753 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13754
13755         * mm-util.el (mm-coding-system-p): Return a coding-system.
13756         (mm-mime-mule-charset-alist): Use shift_jis instead of
13757         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13758         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13759         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13760         instead of japanese-shift-jis and iso-latin-1 respectively in
13761         order to share the default value with both Emacs and XEmacs-mule.
13762         (mm-mule-charset-to-mime-charset): Make
13763         mm-coding-system-priorities effective.
13764         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13765         while predicating of candidates upon the priorities.
13766
13767 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13768
13769         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13770         gnus-uu-invert-processable.
13771
13772         * gnus.el: Autoload gnus-uu-invert-processable.
13773
13774 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13775
13776         * mm-util.el (mm-with-multibyte-buffer): New macro.
13777
13778         * rfc2047.el (rfc2047-encode-string): Use it.
13779         (rfc2047-encode-region): Move point to the end of the region after
13780         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13781
13782 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13783
13784         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13785         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13786
13787 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13788
13789         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13790         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13791         Karl Chen <quarl@nospam.quarl.org>.
13792
13793 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13794
13795         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13796         invalid addresses.
13797
13798 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13799
13800         * spam.el: Change section markers, revise TODO list.
13801         (spam-backends): Make new master list of all installed backends.
13802         (spam-summary-exit-behavior): Add new variable to determine how
13803         messages moves are done at summary exit.
13804         (spam-move-spam-nonspam-groups-only)
13805         (spam-process-ham-in-nonham-groups)
13806         (spam-process-ham-in-spam-groups): Remove variables, the
13807         spam-summary-exit-behavior variable should be used to manage this
13808         behavior.
13809         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13810         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13811         and spam-old-spam-articles.
13812         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13813         Add empty variables, placeholders for the backends they represent.
13814         (spam-set-difference): Move, unchanged.
13815         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13816         unless the user has a processor variable.
13817         (spam-classifications, spam-classification-valid-p)
13818         (spam-backend-properties, spam-backend-property-valid-p)
13819         (spam-backend-function-type-valid-p)
13820         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13821         (spam-report-articles-gmane, spam-report-articles-resend):
13822         Remove functions, they are not needed.
13823         (spam-install-backend-super, spam-backend-list)
13824         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13825         (spam-backend-function, spam-backend-ham-registration-function)
13826         (spam-backend-spam-registration-function)
13827         (spam-backend-ham-unregistration-function)
13828         (spam-backend-spam-unregistration-function)
13829         (spam-backend-statistical-p, spam-backend-mover-p)
13830         (spam-install-backend-alias, spam-install-checkonly-backend)
13831         (spam-install-mover-backend, spam-install-nocheck-backend)
13832         (spam-install-backend, spam-install-statistical-backend)
13833         (spam-install-statistical-checkonly-backend): Add backend installation
13834         support.
13835         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13836         (spam-group-processor-p): Use the new backend code and respect the
13837         summary exit behavior.
13838         (spam-mark-spam-as-expired-and-move-routine): Remove.
13839         (spam-summary-prepare): Change to use the new spam-old-articles
13840         variable.
13841         (spam-copy-or-move-routine, spam-copy-spam-routine)
13842         (spam-move-spam-routine, spam-copy-ham-routine)
13843         (spam-move-ham-routine): Add code to copy/move ham or spam.
13844         (spam-fetch-field-fast): Improve doc and code, plus allow the
13845         'number request.
13846         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13847         variables.
13848         (spam-split, spam-find-spam): Use the new backend code.
13849         (spam-registration-functions): Remove variable.
13850         (spam-unregister-routine): Add convenience wrapper.
13851         (spam-log-undo-registration, spam-register-routine)
13852         (spam-log-processing-to-registry)
13853         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13854         where possible.
13855         (spam-check-gmane-xref, spam-check-regex-headers)
13856         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13857         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13858         (spam-check-bogofilter-headers, spam-check-spamoracle)
13859         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13860         (spam-check-crm114-headers): Use the spam-split-group that
13861         spam-split prepares, no need to determine it every time.
13862
13863         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13864         to the nnheader-parse-naked-head call.
13865
13866         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13867
13868         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13869         the nnheader-nov-read-message-id call.
13870
13871 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13872
13873         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13874         gnus-activate-group twice.  Suggested by Markus Peter
13875         <warp@spin.de>.
13876
13877 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13878
13879         * gnus-art.el (gnus-article-time-format): Exchange the order of
13880         day and month in the default value; fix customization type.
13881         (article-date-ut): Use add-text-properties.
13882         (article-make-date-line): Use message-make-date instead of
13883         current-time-string.
13884
13885         * message.el (message-fetch-field): Don't use set-text-properties.
13886         (message-make-date): Simplify.
13887
13888         * messagexmas.el (message-xmas-make-date): New function.
13889         (message-xmas-redefine): Defalias message-make-date to it.
13890
13891 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13892
13893         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13894         (rfc2047-encode-region): Treat text within parentheses as special;
13895         show the original text when error has occurred.
13896
13897         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13898         already-computed method to gnus-activate-group.
13899
13900         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13901         same select-methods identical Lisp objects.
13902
13903         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13904         object when modifying the info.
13905
13906 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13907
13908         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13909         gnus-opened-servers since it has never been opened with the new
13910         configuration yet.
13911
13912 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13913
13914         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13915         arg to nnheader-generate-fake-message-id.
13916
13917 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13918
13919         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13920         number and build a fake message ID localized to a group and
13921         article number (so it's repeatable from that point on).
13922         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13923         ID format.
13924
13925         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13926         nnheader-generate-fake-message-id with the article number.
13927
13928 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13929
13930         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13931         end-of-buffer.
13932
13933 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13934
13935         * message.el (message-ignored-supersedes-headers): Add Approved.
13936
13937 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13938
13939         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13940         goto-char.
13941         (rfc2047-encode): Fold the line before encoding.
13942
13943 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13944
13945         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13946         folding -- not all headers can be folded, and this should be done
13947         by the message composition mode.  Probably.  I think.
13948
13949 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13950
13951         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13952         fast.
13953
13954         * gnus-ems.el (gnus-remove-image): Don't use
13955         message-text-with-property; remove only the image found first.
13956
13957         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
13958         found first.
13959
13960 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
13961
13962         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
13963
13964 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13965
13966         * message.el (message-text-with-property): Make it fast and accept
13967         optional arguments.
13968         (message-strip-forbidden-properties): Use it.
13969         (message-fix-before-sending): Follow the m-t-w-p change.
13970
13971         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
13972
13973 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13974
13975         * gnus-art.el (article-hide-headers): Don't change the buffer
13976         mistakenly when performing mml-preview even if
13977         gnus-single-article-buffer is nil.
13978
13979 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
13980
13981         * message.el (message-expand-name-databases): New user option.
13982         (message-expand-name): Use it.
13983
13984 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
13985
13986         * spam.el (spam-report-articles-resend)
13987         (spam-report-resend-register-routine): Allow ham reporting.
13988         (spam-report-resend-register-ham-routine): Add wrapper.
13989         (spam-registration-functions): Add ham resending functions.
13990         (spam-list-of-processors): Add ham resend processor.
13991
13992         * gnus.el (ham-resend-to): Add new group parameter.
13993         (spam-process): Add ham resend option.
13994
13995         * spam-report.el (spam-report-resend): Allow reporting ham.
13996         (spam-report-resend-ham): Add wrapper.
13997
13998 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13999
14000         * message.el (message-cite-articles-with-x-no-archive): New
14001         variable.
14002         (message-cite-original): Use it.
14003
14004 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14005
14006         * message.el (message-cite-original): Respect X-No-Archive.
14007
14008 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14009
14010         * gnus-art.el (article-hide-headers): Refer to the values for
14011         gnus-ignored-headers and gnus-visible-headers in the summary
14012         buffer since a user may have set them as group parameters.
14013
14014 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
14015
14016         * assistant.el (assistant-node-name): Add convenience function.
14017         (assistant-render-text, assistant-render-node): Add error handling,
14018         plus handle multiple next nodes.
14019         (assistant-find-next-node): Comment out for now.
14020         (assistant-find-next-nodes): Add function, returns list of next
14021         nodes.
14022
14023 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
14024
14025         * mail-source.el (mail-source-directory): Fix doc-string.
14026
14027 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
14028
14029         * assistant.el (assistant-render-text, assistant-eval): Add :set
14030         widget type, which is different because it takes and returns a
14031         list.  Much hilarity ensues.
14032
14033 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
14034
14035         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
14036
14037         * gnus-group.el (gnus-group-get-new-news-this-group): Added
14038         doc-string.
14039
14040         * gnus-start.el (gnus-activate-group): Added doc-string.
14041
14042 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14043
14044         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
14045
14046 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
14047
14048         * assistant.el (assistant-render-text): Try to add a :set
14049         widget, more to come.
14050
14051         * spam.el (spam-group-spam-contents-p): Handle empty groupname
14052         strings.
14053         (spam-report-articles-resend)
14054         (spam-register-routine): Do registration iff any articles warrant
14055         it.
14056         (spam-summary-prepare-exit): Change log message for nil group
14057         destinations.
14058
14059 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
14060
14061         * spam.el (spam-report-resend-register-routine): Allow
14062         spam-report-resend-to to be a group parameter or a global value.
14063
14064 2004-05-26  Simon Josefsson  <jas@extundo.com>
14065
14066         * starttls.el: Merge with my GNUTLS based starttls.el.
14067         (starttls-gnutls-program, starttls-use-gnutls)
14068         (starttls-extra-arguments, starttls-process-connection-type)
14069         (starttls-connect, starttls-failure, starttls-success): New
14070         variables.
14071         (starttls-program, starttls-extra-args): Doc fix.
14072         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
14073         functions.
14074         (starttls-negotiate, starttls-open-stream): Check
14075         `starttls-use-gnutls' and pass on to corresponding *-gnutls
14076         function if it is set.
14077
14078 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14079
14080         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
14081         structured fields.
14082
14083 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14084
14085         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
14086
14087 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
14088
14089         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
14090         variable.
14091         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14092         assigning the spam-mark to new messages.
14093
14094 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14095
14096         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14097
14098 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14099
14100         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14101
14102         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14103         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14104         default.
14105
14106 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14107
14108         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14109         correct data.
14110
14111 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14112
14113         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14114         (spam-group-processor-p): Fix function.
14115         (spam-group-processor-multiple-p)
14116         (spam-group-spam-processor-report-gmane-p)
14117         (spam-group-spam-processor-report-resend-p)
14118         (spam-group-spam-processor-bogofilter-p)
14119         (spam-group-spam-processor-blacklist-p)
14120         (spam-group-spam-processor-ifile-p)
14121         (spam-group-ham-processor-ifile-p)
14122         (spam-group-spam-processor-spamoracle-p)
14123         (spam-group-spam-processor-crm114-p)
14124         (spam-group-ham-processor-bogofilter-p)
14125         (spam-group-spam-processor-stat-p)
14126         (spam-group-ham-processor-stat-p)
14127         (spam-group-ham-processor-whitelist-p)
14128         (spam-group-ham-processor-BBDB-p)
14129         (spam-group-ham-processor-spamoracle-p)
14130         (spam-group-ham-processor-copy-p): Remove functions with some
14131         prejudice against unneeded code.
14132         (spam-report-articles-resend)
14133         (spam-report-resend-register-routine): Allow the group/topic
14134         spam-resend-to value to override spam-report-resend-to.
14135         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14136         properly now.
14137
14138         * gnus.el (spam-resend-to): Add group/topic parameter.
14139         (spam-process): Move the OBSOLETE processors to the end of the
14140         choices.
14141
14142 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14143
14144         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14145         with resend-to set to nil, and then ask the user if necessary.
14146         (spam-report-resend): spam-report-resend takes a list of articles, not
14147         separate article numbers.
14148
14149 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14150
14151         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14152         addition to emacs-w3m.
14153
14154 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14155
14156         * assistant.el (assistant-authinfo-data): New function.
14157         (assistant-eval): Eval for entire assistant.
14158
14159         * netrc.el (netrc-services-file): New variable.
14160         (netrc-parse-services): New function.
14161         (netrc-find-service-name): New function.
14162         (netrc-find-service-number): New function.
14163         (netrc-port-equal): New function.
14164         (netrc-machine): Use it.
14165
14166         * nnimap.el (nnimap-open-connection): Use netrc.
14167
14168         * gnus-util.el (gnus-netrc-get): Remove aliases.
14169
14170         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14171
14172         * assistant.el (wid-edit): Fix compilation.
14173
14174         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14175
14176 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14177
14178         * gnus-util.el (gnus-set-file-modes): New function.  (small
14179         patch).
14180
14181 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14182
14183         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14184
14185         * assistant.el (assistant-render-node): Fix up rendering and
14186         read-only text.
14187         (assistant-render-node): Reset.
14188         (assistant-make-read-only): Not sticky.
14189
14190 2004-05-20  Danny Siu  <dsiu@adobe.com>
14191
14192         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14193         centered even when gnus-auto-center-summary is t.
14194
14195 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14196
14197         * dns.el (dns-get-txt-answer): New function.
14198         (dns-read-txt): Ditto.
14199         (query-dns): Use it.
14200
14201 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14202
14203         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14204         active for foreign groups even if the group level is higher than
14205         the specified value.
14206
14207 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14208
14209         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14210         non-active groups.
14211
14212         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14213
14214 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14215
14216         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14217
14218 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14219
14220         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14221         (spam-crm114-header, spam-crm114-spam-switch)
14222         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14223         (spam-crm114-positive-spam-header)
14224         (spam-crm114-database-directory, spam-list-of-processors)
14225         (spam-group-spam-processor-crm114-p)
14226         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14227         (spam-generic-score, spam-list-of-checks)
14228         (spam-list-of-statistical-checks, spam-registration-functions)
14229         (spam-check-crm114-headers, spam-crm114-score)
14230         (spam-check-crm114, spam-crm114-register-with-crm114)
14231         (spam-crm114-register-spam-routine)
14232         (spam-crm114-unregister-spam-routine)
14233         (spam-crm114-register-ham-routine)
14234         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14235         asjo@koldfront.dk (Adam Sjøgren).
14236
14237         * gnus.el: Add spam-use-crm114.
14238
14239         * spam.el (spam-list-of-processors, spam-registration-functions):
14240         Add spam-use-resend.
14241         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14242         (spam-report-articles-gmane): Add doc fix.
14243         (spam-report-articles-resend, spam-report-resend-register-routine):
14244         Add wrappers around spam-report-resend-to.
14245
14246         * spam-report.el (spam-report-resend-to, spam-report-resend):
14247         Add support for resending spam.
14248         (spam-report-gmane): Fix line length >80.
14249
14250         * gnus.el (spam-process): Add spam-use-resend.
14251
14252 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14253
14254         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14255         number of processed spam messages.
14256         (spam-ham-copy-or-move-routine): Return the number of processed
14257         ham messages.
14258         (spam-summary-prepare-exit): Use the above values to decide
14259         whether status messages shouled be displayed.
14260
14261 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14262
14263         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14264         `rfc2047-encoding-function-alist' in order to avoid conflicting
14265         with the old version.
14266         (rfc2047-encode-region): Concatenate words containing non-ASCII
14267         characters in structured fields; don't encode space-delimited
14268         ASCII words even in unstructured fields; don't break words at
14269         char-category boundaries.
14270         (rfc2047-encode-1): New function.
14271         (rfc2047-encode): Use it; encode text so that it occupies the
14272         maximum width within 76-column; work correctly on Q encoding for
14273         iso-2022-* charsets.
14274         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14275         sure not to break a line just after the header name.
14276         (rfc2047-b-encode-region): Removed.
14277         (rfc2047-b-encode-string): New function.
14278         (rfc2047-q-encode-region): Removed.
14279         (rfc2047-q-encode-string): New function.
14280
14281         * mm-util.el (mm-replace-in-string): New function.
14282
14283 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14284
14285         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14286         get it right.
14287         (gnus-inews-make-draft): Really.
14288
14289 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14290
14291         * nnmh.el (nnmh-request-list-1): Don't check the link count
14292         before descending.  (small patch)
14293
14294 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14295
14296         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14297         stuff.
14298
14299         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14300         on real group name.
14301
14302         * gnus-art.el (gnus-signature-limit): Doc fix.
14303
14304         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14305
14306         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14307
14308 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14309
14310         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14311         isn't a string.
14312
14313 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14314
14315         * gnus-draft.el (gnus-draft-send): Bind
14316         rfc2047-encode-encoded-words.
14317
14318         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14319         (rfc2047-encodable-p): Say that =? needs encoding.
14320         (rfc2047-encode-encoded-words): New variable.
14321
14322         * gnus-group.el (gnus-group-select-group): Doc fix.
14323
14324         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14325
14326         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14327         to nil.
14328
14329         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14330
14331         * nnheader.el (nnheader-get-lines-and-char): New function.
14332
14333 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14334
14335         * gnus-msg.el (gnus-summary-followup-with-original): Document
14336         yanking of region when active.
14337
14338 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14339
14340         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14341         groups if the group level is higher than the specified value.
14342
14343 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14344
14345         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14346         (gnus-group-jump-to-group): Added prefix argument using
14347         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14348         non-active group.
14349
14350         * compface.el (uncompface): Be verbose when changing
14351         `uncompface-use-external'.
14352
14353         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14354         handle manual section.
14355
14356 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14357
14358         * gnus-art.el (gnus-button-alist): Revert previous change.
14359
14360 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14361
14362         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14363
14364 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14365
14366         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14367         whether backend can accept message.
14368
14369         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14370
14371 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14372
14373         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14374         Avoid creating directory when nntp-marks-is-evil is true.
14375         Reported by Reiner Steib.
14376
14377 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14378
14379         * gnus-picon.el (gnus-picon-style): New variable.
14380         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14381         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14382         Jesper Harder <harder@ifa.au.dk>.
14383
14384 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14385
14386         * message.el (message-fill-field): Return point.
14387         (message-generate-headers): Go to end of field.
14388
14389         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14390         stuff for non-living groups.
14391
14392 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14393
14394         * gnus-art.el (gnus-article-followup-with-original)
14395         (gnus-article-reply-with-original): gnus-mark-active-p ->
14396         gnus-region-active-p.
14397
14398 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14399
14400         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14401         only when there is spam or ham to be processed.
14402
14403 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14404
14405         * mail-source.el (mail-source-delete-crash-box): Refactor.
14406         (mail-source-fetch): Use it.
14407         (mail-source-fetch-file): Ditto.
14408         (mail-source-fetch-directory): Run postscript in loop.
14409         (mail-source-fetch-pop): Delete.
14410         (mail-source-fetch-maildir): Ditto.
14411         (mail-source-fetch-imap): Ditto.
14412
14413         * imap.el (imap-authenticators): Comment out sasl.
14414
14415         * message.el (message-skip-to-next-address): New function.
14416         (message-fill-header-address): Refactor.
14417         (message-fill-address): Use it.
14418         (message-delete-address): Use it.
14419         (message-fill-header-general): Refactor.
14420         (message-fill-field-address): Rename.
14421         (message-narrow-to-field): Find the start of the header.
14422         (message-header-format-alist): Don't pre-fill.
14423         (message-fill-header): Removed.
14424         (message-insert-header): New function.
14425         (message-shorten-references): Use it.
14426
14427         * rfc2047.el (rfc2047-field-value): Strip props.
14428
14429         * mail-parse.el (mail-header-make-address): New alias.
14430
14431         * ietf-drums.el (ietf-drums-make-address): New function.
14432
14433         * imap.el: Add compiler directives.
14434
14435         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14436
14437         * gnus-art.el (article-decode-idna-rhs): Don't use
14438         message-idna-inside-rhs-p.
14439
14440 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14441
14442         * message.el (message-idna-inside-rhs-p): Removed.
14443         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14444
14445         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14446         false positives.
14447
14448 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14449
14450         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14451
14452 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14453
14454         * nneething.el (nneething-file-name): Don't create spurious
14455         files.
14456
14457         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14458         (gnus-inews-do-gcc): Remove sleep.
14459
14460         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14461         part under point.
14462
14463         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14464         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14465
14466 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14467
14468         * spam.el (spam-summary-prepare-exit): Fixed (length).
14469
14470 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14471
14472         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14473         as expired without moving it" message when there are spam
14474         messages left.
14475
14476 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14477
14478         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14479         header is not nil.
14480
14481 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14482
14483         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14484         nntp-possibly-create-directory, not nntp-possibly-change-group.
14485         (nntp-marks-changed-p): New arg SERVER.
14486         (nntp-request-update-info): Adjust caller.
14487
14488 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14489
14490         * nntp.el (nntp-save-marks): Pass missing arg.
14491
14492 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14493
14494         * nntp.el: Support marks.
14495         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14496         (nntp-marks-modtime, nntp-marks-directory): New variables.
14497         (nntp-request-set-mark, nntp-request-update-info)
14498         (nntp-possibly-create-directory, nntp-marks-changed-p)
14499         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14500         functions.
14501
14502 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14503
14504         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14505         (gnus-xmas-redefine): Rename.
14506
14507         * gnus-score.el (gnus-score-insert-help): Use
14508         gnus-select-lowest-window.
14509
14510         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14511         appt-select-lowest-window and rename to gnus-select-lowest-window.
14512
14513         * gnus.el: do.
14514
14515 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14516
14517         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14518         encodings of MIME-encoded words, in order to improve
14519         interoperability with several broken MUAs.
14520
14521 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14522
14523         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14524         tags, only when charsets are not specified in headers.
14525         (mm-inline-text-html-render-with-w3m): Ditto.
14526
14527         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14528         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14529
14530 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14531
14532         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14533         instead of MIME-decoded from fields when checking
14534         `gnus-article-address-banner-alist'.
14535
14536 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14537
14538         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14539         description rather than subject.
14540
14541 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14542
14543         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14544
14545 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14546
14547         * gnus.el (gnus-version-number): Bump.
14548
14549 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14550
14551         * gnus.el: No Gnus v0.2 is released.
14552
14553 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14554
14555         * gnus-agent.el (gnus-agent-read-agentview): Inline
14556         gnus-uncompress-range.
14557
14558 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14559
14560         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14561         `exec-installed-p'.
14562
14563 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14564
14565         * gnus.el (spam-process, spam-autodetect-methods): Add
14566         bsfilter and bsfilter-headers.
14567
14568         * spam.el (spam-bsfilter): New customize group.
14569         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14570         (spam-bsfilter-header, spam-bsfilter-probability-header)
14571         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14572         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14573         (spam-bsfilter-database-directory): New options.
14574         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14575         (spam-list-of-statistical-checks, spam-registration-functions):
14576         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14577         (spam-bsfilter-score): New command.
14578         (spam-check-bsfilter-headers, spam-check-bsfilter)
14579         (spam-bsfilter-register-with-bsfilter)
14580         (spam-bsfilter-register-spam-routine)
14581         (spam-bsfilter-unregister-spam-routine)
14582         (spam-bsfilter-register-ham-routine)
14583         (spam-bsfilter-unregister-ham-routine): New functions.
14584         (spam-generic-score): Support bsfilter; Accept an optional argument
14585         to recalcurate spam score even if scoring header has already been
14586         added.
14587         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14588         optional argument to recalcurate spam score even if scoring header
14589         has already been added.
14590
14591 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14592
14593         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14594         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14595         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14596         link is missing.
14597
14598 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14599
14600         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14601         (html2text-get-attr): Rewrite.
14602
14603         * message.el (message-setup-1): Remove redundant put-text-property
14604         on mail-header-separator.
14605
14606 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14607
14608         * gnus-registry.el (gnus-registry-cache-whitespace)
14609         (gnus-registry-action, gnus-registry-spool-action)
14610         (gnus-registry-split-fancy-with-parent): Change message levels
14611         from 5 to 3 or 7, as needed.
14612
14613         * spam.el (spam-summary-prepare-exit)
14614         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14615         (spam-split, spam-find-spam, spam-log-undo-registration)
14616         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14617         level from 5 to 6.
14618
14619 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14620
14621         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14622         2004-03-04 change).
14623
14624 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14625
14626         * sieve-manage.el (sieve-manage-open):
14627         * nnweb.el (nnweb-insert-html):
14628         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14629         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14630         * nnspool.el (nnspool-request-group):
14631         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14632         * nnml.el (nnml-request-update-info):
14633         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14634         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14635         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14636         (nnimap-request-set-mark):
14637         * nnfolder.el (nnfolder-request-update-info):
14638         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14639         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14640         * gnus-uu.el (gnus-uu-find-articles-matching):
14641         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14642         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14643         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14644         * gnus-nocem.el (gnus-nocem-scan-groups):
14645         * gnus-int.el (gnus-start-news-server):
14646         * gnus-group.el (gnus-group-make-kiboze-group)
14647         (gnus-group-browse-foreign-server):
14648         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14649         Use mapc when appropriate.
14650
14651 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14652
14653         FIXME: Make separate entries for each person.
14654
14655         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14656         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14657         <shields@msrl.com>:
14658
14659         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14660         may need for spam sorting and scoring.
14661         (spam-user-format-function-S): Add user format function suitable for
14662         general use.
14663         (spam-article-sort-by-spam-status): Add sorting function for summary
14664         sorting.
14665         (spam-extra-header-to-number): Add function to get a score from a
14666         header.
14667         (spam-summary-score): Add function to get a numeric score from the
14668         headers.
14669         (spam-generic-score): Fix function doc, was in wrong place.
14670         (spam-initialize): Take symbols when it's run, and install the
14671         extra headers that spam-necessary-extra-headers thinks we need.
14672
14673 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14674
14675         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14676         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14677
14678 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14679
14680         * gnus-sum.el (gnus-set-global-variables)
14681         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14682         (gnus-article-get-xrefs, gnus-summary-best-group)
14683         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14684         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14685         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14686         Use with-current-buffer.
14687
14688 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14689
14690         * spam.el (spam-summary-prepare-exit): Simplify logic.
14691         (spam-fetch-article-header): Read the article header if it's not
14692         available.
14693         (spam-list-articles): Simplify logic.
14694         (spam-filelist-register-routine): Fix bug with unregister-list.
14695
14696         * gnus-registry.el: Fix comments at beginning.
14697
14698 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14699
14700         * message.el (message-cater-to-broken-inn): Remove.
14701         (message-shorten-references): Make sure the total folded length of
14702         References is shorter than 998 characters to cater to a bug in INN
14703         2.3.  Also, don't pretend that references aren't folded -- this
14704         hasn't worked for a while.
14705
14706 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14707
14708         * gnus-agent.el (gnus-agentize):
14709         gnus-agent-send-mail-real-function no longer set to current value
14710         of message-send-mail-function but rather a lambda that calls
14711         message-send-mail-function.  The change makes the agent real-time
14712         responsive to user changes to message-send-mail-function.
14713
14714 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14715
14716         * legacy-gnus-agent.el
14717         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14718         help from Florian Weimer <fw@deneb.enyo.de>
14719
14720 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14721
14722         * nnmail.el (nnmail-cache-insert): Revert last change.
14723
14724 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14725
14726         * nnmail.el (nnmail-cache-insert): Always check whether
14727         nnmail-cache-ignore-groups matches a group name.
14728
14729 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14730
14731         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14732         (spam-find-spam, spam-log-processing-to-registry)
14733         (spam-log-registered-p, spam-log-unregistration-needed-p)
14734         (spam-log-undo-registration): Use gnus-message instead of
14735         gnus-error, none of these errors are fatal.
14736
14737         * gnus-registry.el (gnus-registry-clean-empty-function)
14738         (gnus-registry-clean-empty): Remove only empty entries without
14739         extra data.
14740
14741 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14742
14743         * spam-stat.el (spam-stat-buffer-change-to-spam)
14744         (spam-stat-buffer-change-to-non-spam): Change (error) to
14745         (gnus-message 8) invocation.
14746
14747 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14748
14749         * nntp.el (nntp-via-netcat-command): New variable.
14750         (nntp-via-netcat-switches): New variable.
14751         (nntp-open-via-rlogin-and-netcat): New function.
14752         (nntp-open-connection-function): Doc fix.
14753         (nntp-telnet-command): Doc fix.
14754         (nntp-end-of-line): Doc fix.
14755         (nntp-via-rlogin-command): Doc fix.
14756         (nntp-via-user-name): Doc fix.
14757         (nntp-via-address): Doc fix.
14758
14759 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14760
14761         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14762         error in Emacs 21.1.
14763
14764 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14765
14766         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14767
14768 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14769
14770         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14771         (gnus-agent-with-refreshed-group): New macro.
14772         (gnus-agent-rename-group): New function.
14773         (gnus-agent-delete-group): New function.
14774         (gnus-agent-save-group-info): Use gnus-command-method when
14775         `method' parameter is nil.  Don't write nil entries into the
14776         active file.
14777         (gnus-agent-get-group-info): New function.
14778         (gnus-agent-fetch-articles): Use
14779         gnus-agent-update-files-total-fetched-for to increment disk space
14780         used.
14781         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14782         gnus-agent-update-view-total-fetched-for to increment disk space
14783         used.
14784         (gnus-agent-get-local): Added optional parameters to avoid calling
14785         gnus-group-real-name and gnus-find-method-for-group.
14786         (gnus-agent-set-local): Delete stored entry if either min, or max,
14787         are nil.
14788         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14789         quit, use gnus-agent-regenerate-group to record existance of any
14790         articles fetched to disk before the quit occurred.
14791         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14792         gnus-agent-update-view-total-fetched-for, and
14793         gnus-agent-update-files-total-fetched-for to decrement disk space
14794         used.
14795         (gnus-agent-retrieve-headers): Use
14796         gnus-agent-update-view-total-fetched-for to increment disk space
14797         used.
14798         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14799         with gnus-agent-update-files-total-fetched-for to decrement disk
14800         space and fresh group buffer.
14801         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14802         (gnus-agent-need-update-total-fetched-for): New variable.
14803         (gnus-agent-update-files-total-fetched-for): New function.
14804         (gnus-agent-update-view-total-fetched-for): New function.
14805         (gnus-agent-total-fetched-for): New function.
14806
14807         * gnus-cache.el (gnus-cache-save-buffers): Use
14808         gnus-cache-update-overview-total-fetched-for to change disk space
14809         used by this group.
14810         (gnus-cache-possibly-enter-article): Use
14811         gnus-cache-update-file-total-fetched-for to increment disk space
14812         used by this group.
14813         (gnus-cache-possibly-remove-article): Use
14814         gnus-cache-update-file-total-fetched-for to decrement disk space
14815         used by this group.
14816         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14817         (gnus-cache-rename-group): New function.
14818         (gnus-cache-delete-group): New function.
14819         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14820         (gnus-cache-need-update-total-fetched-for): New variable.
14821         (gnus-cache-with-refreshed-group): New macro.
14822         (gnus-cache-update-file-total-fetched-for): New function.
14823         (gnus-cache-update-overview-total-fetched-for): New function.
14824         (gnus-cache-rename-group-total-fetched-for): New function.
14825         (gnus-cache-delete-group-total-fetched-for): New function.
14826         (gnus-cache-total-fetched-for): New function.
14827
14828         * gnus-group.el: Require gnus-sum and autoload functions to
14829         resolve warnings when gnus-group.el compiled alone.
14830         (gnus-group-line-format): Documented new %F.
14831         (size of Fetched data) group line format; identifies disk space
14832         used by agent and cache.
14833         (gnus-group-line-format-alist): Defined new F format.
14834         (gnus-total-fetched-for): New function.
14835         (gnus-group-delete-group): No longer update
14836         gnus-cache-active-altered as gnus-request-delete-group now keeps
14837         the cache in sync.
14838         (gnus-group-list-active): Let the agent store a server's active
14839         list if currently plugged.
14840
14841         * gnus-int.el (gnus-request-delete-group):
14842         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14843         local disk in sync with the server.
14844         (gnus-request-rename-group):
14845         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14846         local disk in sync with the server.
14847
14848         * gnus-start.el (gnus-get-unread-articles):
14849         Cosmetic simplification to logic.
14850
14851         * gnus-util.el (gnus-rename-file): New function.
14852
14853 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14854
14855         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14856
14857 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14858
14859         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14860         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14861
14862 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14863
14864         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14865         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14866
14867 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14868
14869         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14870
14871 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14872
14873         * spam.el (spam-set-difference): Add function to replace
14874         gnus-set-difference in spam.el.
14875         (spam-summary-prepare-exit): Use spam-set-difference.
14876
14877 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14878
14879         * gnus-registry.el (gnus-registry-cache-file): Update to use
14880         gnus-dribble-directory OR gnus-home-directory OR ~.
14881         (gnus-registry-split-fancy-with-parent): Fix doc.
14882
14883 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14884
14885         * message.el (message-exchange-point-and-mark): Use
14886         message-mark-active-p.  Suggested by Jesper Harder
14887         <harder@ifa.au.dk>.
14888
14889 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14890
14891         * message.el (message-exchange-point-and-mark): Don't activate
14892         region if it was inactive.  Suggested by Hiroshi Fujishima
14893         <pooh@nature.tsukuba.ac.jp>.
14894
14895 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14896
14897         * gnus-art.el (article-display-face): Display Faces in the same
14898         order as X-Faces.
14899
14900 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14901
14902         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14903
14904 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14905
14906         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14907         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14908         (gnus-article-mime-hierarchy): Remove.
14909         (gnus-article-mime-hierarchy-next): Remove.
14910         (gnus-article-mode): Revert 2004-03-19 change.
14911         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14912         (gnus-insert-mime-button): Revert 2004-03-19 change.
14913         (gnus-mime-accumulate-hierarchy): Remove.
14914         (gnus-mime-enter-multipart): Remove.
14915         (gnus-mime-leave-multipart): Remove.
14916         (gnus-mime-display-part): Revert 2004-03-19 change.
14917         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14918
14919         * mml.el (mml-preview): Revert 2004-03-19 change.
14920
14921 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14922
14923         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14924
14925 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14926
14927         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14928         t while entering a file name using the mm-with-multibyte macro.
14929         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14930
14931         * mm-util.el (mm-with-multibyte): New macro.
14932
14933 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14934
14935         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14936         user option.
14937         (gnus-mime-multipart-functions): Doc and customization fix.
14938         (gnus-article-mime-hierarchy): New variable.
14939         (gnus-article-mime-hierarchy-next): New variable.
14940         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14941         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14942         gnus-article-mime-hierarchy-next to nil.
14943         (gnus-insert-mime-button): Show hierarchy numbers.
14944         (gnus-mime-accumulate-hierarchy): New function.
14945         (gnus-mime-enter-multipart): New function.
14946         (gnus-mime-leave-multipart): New function.
14947         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14948         (gnus-mime-display-alternative): Show hierarchy numbers.
14949
14950         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14951         gnus-article-mime-hierarchy-next to nil.
14952
14953 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
14954
14955         * dns.el: Don't require gnus-xmas.
14956
14957 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
14958
14959         * mml.el (mml-generate-mime-1): Don't use format=flowed with
14960         inline PGP.
14961         (mml-menu): Disable mml-quote-region if mark is inactive.
14962
14963 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14964
14965         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
14966         when the group's active is not available.
14967
14968 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14969
14970         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
14971         error.
14972
14973 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
14974
14975         * imap.el (imap-store-password): New variable.
14976         (imap-interactive-login): Use it.
14977         Suggested by Mark Plaksin <happy@mcplaksin.org>.
14978
14979 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14980
14981         * gnus-art.el (gnus-article-read-summary-keys): Restore new
14982         window-start and hscroll to summary window.
14983
14984 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14985
14986         * gnus-start.el (gnus-convert-old-newsrc): Only write the
14987         conversion message to newsrc-dribble when an actual conversion is
14988         performed.
14989
14990 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
14991
14992         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
14993
14994 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14995
14996         * mm-decode.el (mm-complicated-handles): New function reviving
14997         former definition of mm-multiple-handles.
14998
14999         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
15000         (gnus-mime-delete-part): Use it.
15001
15002 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15003
15004         * gnus-agent.el (gnus-agent-read-local): Bind
15005         nnheader-file-coding-system to gnus-agent-file-coding-system to
15006         avoid the implicit assumption that they will always be equal.
15007         (gnus-agent-save-local): Bind buffer-file-coding-system, not
15008         coding-system-for-write, as the with-temp-file macro first prints
15009         to a buffer then saves the buffer.
15010
15011 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15012
15013         * gnus-art.el (gnus-article-edit-part): New function.
15014         (gnus-mime-save-part-and-strip): Use it; do query instead of
15015         signaling an error; don't use mm-multiple-handles.
15016         (gnus-mime-delete-part): Ditto.
15017
15018 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15019
15020         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
15021         old file versions.
15022         (gnus-group-prepare-hook): Removed function that converted list
15023         form of gnus-agent-expire-days to group properties.
15024
15025         * gnus-int.el: Autoload gnus-agent-regenerate-group.
15026         (gnus-request-accept-article): Re-indented.
15027
15028         * gnus-start.el (gnus-convert-old-newsrc): Registered new
15029         converters to handle old agent file formats.  Added logic for a
15030         "backup before upgrading warning".
15031         (gnus-convert-mark-converter-prompt): Developers can mark
15032         functions as needing (default), or not needing,
15033         gnus-convert-old-newsrc's "backup before upgrading warning".
15034         (gnus-convert-converter-needs-prompt): Tests whether the user
15035         should be protected from potentially irreversable changes by the
15036         function.
15037
15038         * legacy-gnus-agent.el: New.  Provides converters that are only
15039         loaded when gnus-convert-old-newsrc needs to call them.
15040
15041 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15042
15043         * mail-source.el (mail-source-touch-pop): Doc fix.
15044
15045         * message.el (message-smtpmail-send-it): Doc fix.
15046
15047 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
15048
15049         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
15050
15051         * nnmail.el (nnmail-split-fancy): do.
15052
15053         * gnus-kill.el (gnus-kill, gnus-execute): do.
15054
15055 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
15056
15057         * gnus-sum.el (gnus-widget-reversible-match)
15058         (gnus-widget-reversible-to-internal)
15059         (gnus-widget-reversible-to-external): New functions.
15060         (gnus-widget-reversible): New widget.
15061         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
15062
15063 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
15064
15065         * gnus-sum.el (gnus-thread-sort-functions)
15066         (gnus-article-sort-functions): Document `(not F)' items.
15067
15068 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15069
15070         * spam.el (spam-use-gmane-xref): Add new backend.
15071         (spam-gmane-xref-spam-group): Add variable to control the name of the
15072         Gmane spam group.
15073         (spam-blackhole-servers, spam-blackhole-good-server-regex)
15074         (spam-regex-headers-spam, spam-regex-headers-ham)
15075         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
15076         (spam-list-of-checks): Add spam-use-gmane-xref to list of
15077         backends and checks.
15078         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
15079
15080         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
15081         an autodetect method.
15082
15083 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15084
15085         * gnus-int.el (gnus-request-accept-article): Inform the agent that
15086         articles are being added to a group.
15087         (gnus-request-replace-article): Inform the agent that articles
15088         need to be uncached as the cached contents are no longer valid.
15089
15090 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15091
15092         * binhex.el: Don't autoload executable-find.
15093
15094         * canlock.el: Don't autoload mail-fetch-field.
15095
15096         * dgnushack.el: Autoload c-mode for XEmacs.
15097
15098         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15099
15100         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15101         rmail-dont-reply-to and rmail-output.
15102
15103         * gnus-score.el: Don't autoload ffap-string-at-point.
15104
15105         * gnus-setup.el: Don't autoload sc-cite-original.
15106
15107         * imap.el: Don't autoload base64-decode-string,
15108         base64-encode-string and md5.
15109
15110         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15111         and rmail-msg-restore-non-pruned-header.
15112
15113         * mm-decode.el: Don't autoload executable-find.
15114
15115         * mm-url.el: Don't autoload executable-find.
15116
15117         * mm-view.el: Don't autoload diff-mode.
15118
15119         * nndb.el: Don't autoload news-reply-mode, news-setup,
15120         cancel-timer and telnet.
15121
15122         * password.el: Don't autoload run-at-time for Emacs.
15123
15124         * sha1-el.el: Don't autoload executable-find.
15125
15126         * sieve-mode.el: Don't autoload c-mode.
15127
15128         * uudecode.el: Don't autoload executable-find.
15129
15130 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15131
15132         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15133         (gnus-agent-possibly-alter-active): Avoid null in numeric
15134         comparison.
15135         (gnus-agent-set-local): Refuse to save null in local object table.
15136         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15137         list of articles that will be marked as unread.
15138
15139 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15140
15141         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15142
15143 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15144
15145         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15146         language tags.
15147
15148 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15149
15150         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15151         Don't bind "obarray".
15152
15153         * gnus-sum.el (gnus-thread-sort-functions): Added
15154         `gnus-thread-sort-by-most-recent-number' and
15155         `gnus-thread-sort-by-most-recent-date'.
15156         Reported by Kai Grossjohann <kai@emptydomain.de>.
15157
15158 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15159
15160         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15161
15162 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15163
15164         * gnus-cus.el (gnus-agent-customize-category): Removed
15165         ignore-errors macro reference that required cl to be loaded at
15166         run-time.
15167
15168         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15169         single-interval range of the form (min . max).  Previously the
15170         range had to look like ((min . max)).  Likewise, return
15171         (min . max) rather than ((min . max)).
15172         (gnus-range-map): Use gnus-range-normalize to accept
15173         single-interval range.
15174
15175         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15176         the cache, but not the agent, now appear with their usual face.
15177
15178         * dgnushack.el (loaddir): New variable that is bound to the
15179         directory containing the dgnushack.el file. Use loaddir, rather
15180         than srcdir, to update load-path. Change lets dgnushack compile
15181         code in directories other than GNUS/lisp.
15182
15183 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15184
15185         * lpath.el: Don't bind w3m-safe-url-regexp.
15186
15187         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15188         w3m-safe-url-regexp variable buffer-local.
15189
15190         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15191
15192 2004-02-27  Simon Josefsson  <jas@extundo.com>
15193
15194         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15195         gnus-group-real-prefix.
15196         (gnus-summary-move-article): Use it, instead of
15197         gnus-group-real-prefix.
15198
15199 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15200
15201         * lpath.el: Bind w3m-safe-url-regexp.
15202
15203         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15204         w3m-safe-url-regexp variable buffer-local and set it as the value
15205         of mm-w3m-safe-url-regexp.
15206
15207         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15208
15209         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15210         parsing gnus-posting-styles when the message is not for replying.
15211
15212         * dgnushack.el: Autoload sgml-mode for XEmacs.
15213
15214         * nnrss.el (nnrss-opml-export): Use
15215         mm-set-buffer-file-coding-system instead of
15216         set-buffer-file-coding-system.
15217
15218 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15219
15220         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15221         of checkdoc.el).
15222         * nnrss.el: do.
15223         * gnus-mlspl.el: do.
15224         * gnus-ml.el: do.
15225         * gnus-srvr.el: do.
15226
15227         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15228
15229 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15230
15231         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15232         Corrections to custom-manual links.
15233
15234         * gnus-art.el (gnus-article): Ditto.
15235
15236         * mm-decode.el (mime-display, mime-security): Ditto.
15237
15238 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15239
15240         * flow-fill.el: Typo.
15241
15242 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15243
15244         * spam-wash.el: New file.
15245
15246 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15247
15248         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15249
15250 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15251
15252         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15253         to be run with new-articles as LIST1, not LIST2.
15254         (spam-registration-functions): Add spam-use-ham-copy as a nil
15255         registration backend.
15256
15257 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15258
15259         * spam-stat.el (spam-stat-washing-hook): New option.
15260         (spam-stat-buffer-words): Use it.
15261         (spam-stat-process-directory, spam-stat-test-directory): Use
15262         insert-file-contents-literally.
15263         (spam-stat-coding-system): New variable.
15264         (spam-stat-load, spam-stat-save): Use it.
15265
15266 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15267
15268         * spam-report.el (spam-report-plug-agent): Quote
15269         spam-report-url-to-file and spam-report-url-ping-plain.
15270
15271 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15272
15273         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15274         / in mailto URLs.
15275
15276 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15277
15278         * spam-report.el (spam-report-process-queue): Fix interactive use.
15279         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15280         (spam-report-unplug-agent): Doc fixes.
15281         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15282         (spam-report-agentize, spam-report-deagentize): Autoload.
15283
15284 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15285
15286         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15287
15288         * message.el (message-setup-fill-variables): Add mml tags to
15289         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15290         <ajk@iu.edu>.
15291         (message-mode): Don't modify paragraph-separate there.
15292
15293 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15294
15295         * compface.el (uncompface-use-external): Default to undecided.
15296         (uncompface-use-external-threshold): New variable.
15297         (uncompface-float-time): New macro.
15298         (uncompface): Determine whether to use the external decoder if
15299         uncompface-use-external is undecided.
15300
15301 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15302
15303         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15304         after images.
15305
15306         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15307
15308 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15309
15310         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15311
15312         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15313
15314         * gnus-sum.el (gnus-summary-limit-to-age)
15315         (gnus-summary-limit-children): do.
15316
15317         * gnus-int.el (gnus-request-scan): do.
15318
15319         * gnus-group.el (gnus-group-suspend): do.
15320
15321         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15322
15323         * gnus-cite.el (gnus-cite-parse-attributions): do.
15324
15325         * gnus-agent.el (gnus-summary-set-agent-mark)
15326         (gnus-agent-regenerate-group): do.
15327
15328         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15329
15330         * binhex.el (binhex-decode-region-internal): do.
15331
15332 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15333
15334         * gnus-fun.el (gnus-face-properties-alist): New user option.
15335         (gnus-display-x-face-in-from): Use it.
15336
15337         * gnus-art.el (article-display-face): Ditto.
15338
15339         * compface.el (uncompface-use-external): Default to nil.
15340
15341 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15342
15343         * nntp.el (nntp-erase-buffer): New function.
15344         (nntp-retrieve-data, nntp-send-command)
15345         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15346         (nntp-possibly-change-group): Use it.
15347
15348         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15349         with-current-buffer.
15350
15351 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15352
15353         * compface.el: Merge the ELisp-based uncompface program.
15354         (compface): New customization group.
15355         (uncompface-use-external): New user option.
15356         (uncompface): Call uncompface-internal if uncompface-use-external
15357         is nil.
15358         (uncompface-internal): New function.  Note that there are also
15359         some other functions and variables added for this function.
15360
15361 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15362
15363         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15364         if necessary.
15365
15366 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15367
15368         * spam-report.el (spam-report-unplug-agent)
15369         (spam-report-plug-agent, spam-report-deagentize)
15370         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15371         Add support for the Agent in spam-report: when unplugged, report to a
15372         file; when plugged, submit all the requests.
15373
15374         * spam.el (spam-register-routine): Fix message about
15375         registration.
15376
15377 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15378
15379         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15380         dependencies.
15381         (rfc2047-encode): Use it.
15382
15383         * gnus-art.el (gnus-button-marker-list): Move before first
15384         reference.
15385
15386         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15387         (imap-parse-body): Fix format string mismatch.
15388
15389         * gnus-score.el (gnus-summary-increase-score): do.
15390
15391         * nnrss.el (nnrss-close): New function.
15392
15393 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15394
15395         * nnrss.el (nnrss-make-filename): New function.
15396         (nnrss-request-delete-group, nnrss-read-server-data)
15397         (nnrss-save-server-data, nnrss-read-group-data)
15398         (nnrss-save-group-data): Use it.
15399         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15400         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15401         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15402
15403 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15404
15405         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15406
15407 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15408
15409         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15410         files.
15411
15412         * message.el (message-generate-headers-first): Don't quote nil
15413         and t in docstrings.
15414
15415         * imap.el (imap-id): do.
15416
15417         * gnus-agent.el (gnus-agent-consider-all-articles)
15418         (gnus-agent-queue-mail): do.
15419
15420 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15421
15422         * spam-report.el (spam-report-process-queue): New function.
15423         Process requests from `spam-report-requests-file'.
15424         (spam-report-process-queue): Doc fix.
15425
15426 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15427
15428         * spam.el (spam-register-routine)
15429         (spam-log-processing-to-registry, spam-log-registered-p)
15430         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15431         Change "check" to "spam-check" for semi-clarity.
15432
15433 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15434
15435         * pop3.el: Require nnheader.
15436
15437         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15438
15439         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15440
15441         * gnus-picon.el: Require cl.
15442
15443         * gnus-fun.el: Require gnus-ems and gnus-util.
15444
15445         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15446
15447         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15448
15449         * gnus-art.el (gnus-article-edit-mode): Define before first
15450         reference.
15451
15452 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15453
15454         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15455         (gnus-uu-post-encoded): Use point-at-bol.
15456
15457         * gnus-topic.el (gnus-group-active-topic-p): do.
15458
15459         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15460
15461         * gnus-group.el (gnus-group-kill-region): do.
15462
15463         * gnus-art.el (article-date-ut): do.
15464
15465         * message.el (message-fetch-field): Remove redundant
15466         case-fold-search binding.
15467         (message-narrow-to-field): Simplify.
15468
15469 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15470
15471         * spam.el (spam-directory): Derive from `gnus-directory'.
15472
15473         * spam-report.el (spam-report-url-to-file)
15474         (spam-report-requests-file): New function and variable for offline
15475         reporting.
15476         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15477         and user defined function.
15478         (spam-report-url-ping-mm-url): Remove doubled slash.
15479
15480 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15481
15482         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15483
15484 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15485
15486         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15487         format string mismatch.
15488
15489         * sieve.el (sieve-deactivate-all): do.
15490
15491         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15492
15493         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15494
15495         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15496
15497         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15498
15499 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15500
15501         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15502         the list of checks.
15503
15504 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15505
15506         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15507         padding.
15508
15509 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15510
15511         * mm-view.el (mm-fill-flowed): New variable.
15512         (mm-inline-text): Use it.
15513
15514 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15515
15516         * spam.el (spam-spamassassin-register-ham-routine)
15517         (spam-spamassassin-register-spam-routine): Fix function names.
15518
15519 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15520
15521         * gnus.el (gnus-tmp-grouplens): Remove.
15522         (gnus-summary-line-format): Remove grouplens.
15523
15524         * gnus-group.el (gnus-group-line-format): Ditto.
15525
15526         * gnus-spec.el (gnus-format-specs): Ditto.
15527         (gnus-update-format-specifications): Flush the group format spec
15528         cache if there's the grouplens stuff.
15529         (gnus-parse-simple-format): Replace %l with the empty string.
15530
15531 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15532
15533         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15534         omission.
15535
15536 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15537
15538         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15539         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15540
15541 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15542
15543         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15544         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15545         New macros and functions.
15546         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15547         Handle > NLINK_MAX messages.
15548         * nnmaildir.el (nnmaildir-request-set-mark): Use
15549         nnmaildir--emlink-p and nnmaildir--eexist-p.
15550
15551 2004-01-25  Alex Schroeder  <alex@gnu.org>
15552
15553         * spam-stat.el (spam-stat-process-directory-age): New option.
15554         (spam-stat-process-directory): Use it.
15555
15556 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15557
15558         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15559         (spam-stat-save): Accept prefix argument.
15560
15561 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15562
15563         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15564         links" error.
15565
15566 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15567
15568         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15569         the rest of the and/or forms.
15570
15571 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15572
15573         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15574         compatibility with old .newsrc.eld files.
15575
15576         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15577
15578         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15579
15580         * gnus-start.el (gnus-1): do.
15581
15582         * gnus-group.el (gnus-group-line-format-alist): do.
15583
15584         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15585
15586         * gnus-gl.el: Remove.
15587
15588 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15589
15590         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15591         marks consisting of a single range {for example, (3 . 5)} rather
15592         than a list of a single range { ((3 . 5)) }.
15593
15594 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15595
15596         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15597         with-current-buffer.
15598         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15599         avoid consing a string.
15600
15601         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15602         Remove obsolete entries for big5 and gb2312.
15603
15604 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15605
15606         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15607         uncompressed list.
15608
15609 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15610
15611         * spam-stat.el (spam-stat-strip-xref): New function.
15612         (spam-stat-process-directory): Use it.
15613
15614         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15615         here -- it's done in message-fetch-field.
15616
15617 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15618
15619         * gnus-agent.el (gnus-agent-queue-mail)
15620         (gnus-agent-prompt-send-queue): New variables.
15621         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15622         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15623         "nndraft:queue" along to gnus-draft-send.  Use
15624         gnus-agent-prompt-send-queue.
15625         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15626         is "nndraft:queue".  Suggested by Gaute Strokkenes
15627         <gs234@srcf.ucam.org>
15628
15629         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15630         (agent-enable-undownloaded-faces): Added.
15631         (gnus-agent-cat-groups): Use eval-and-compile, not
15632         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15633         method of gnus-agent-cat-groups even when the buffer has been
15634         evaled.
15635         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15636         delete gnus-agent-save-active-1.
15637         (gnus-agent-save-groups): Deleted.  Identical to
15638         gnus-agent-save-active.
15639         (gnus-agent-write-active): No longer adjust agent's copy of active
15640         file as agent's adjustments are now stored in their own
15641         file.  Removed optional parameter.
15642         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15643         servers.  Add use of min/max range limits from server's local
15644         file.
15645         (gnus-agent-save-alist): Removed unused optional argument.
15646         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15647         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15648         (gnus-agent-set-local): A per-server file that keeps min/max range
15649         limits for articles known to the agent.  Provides a fast mechanism
15650         for altering many active ranges.
15651         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15652         active file (local makes it unnecessary).
15653         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15654
15655         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15656         (agent-enable-undownloaded-faces): Added.
15657
15658         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15659         disable it when sending to "nndraft:queue".
15660         (gnus-group-send-queue): Add safety check to avoid sending queue
15661         when unplugged.
15662
15663         * gnus-group.el (gnus-group-catchup): Use new
15664         gnus-sequence-of-unread-articles, not
15665         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15666         numbers of articles.  Use gnus-range-map to avoid having to
15667         uncompress the unread list.
15668         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15669         Fixed invalid ange-ftp reference.
15670
15671         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15672         (gnus-sorted-range-intersection): Intersection of two ranges
15673         without requiring that they first be uncompressed.
15674
15675         * gnus-start.el (gnus-activate-group): Unless blocked by the
15676         caller, possibly expand the active range to include both cached
15677         and agentized articles.
15678         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15679         multiple version-dependent converters.
15680         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15681         gnus-agent-save-active.
15682         (gnus-save-newsrc-file): Save dirty agent range limits.
15683
15684         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15685         gnus-agent-possibly-alter-active.
15686         (gnus-adjust-marked-articles): Faster handling of simple lists.
15687
15688 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15689
15690         * spam-stat.el (spam-stat-test-directory): New optional argument
15691         displays a list of files detected.  Suggested by Andrew Cohen
15692         <cohen@andy.bu.edu>.
15693         (spam-stat-buffer-words-with-scores): Don't narrow and change
15694         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15695
15696 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15697
15698         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15699         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15700         (spam-spamassassin-arguments)
15701         (spam-spamassassin-spam-flag-header)
15702         (spam-spamassassin-positive-spam-flag-header)
15703         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15704         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15705         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15706         (spam-list-of-processors, spam-list-of-checks)
15707         (spam-list-of-statistical-checks, spam-registration-functions)
15708         (spam-check-spamassassin-headers, spam-check-spamassassin)
15709         (spam-spamassassin-score)
15710         (spam-spamassassin-register-with-sa-learn)
15711         (spam-spamassassin-register-spam-routine)
15712         (spam-spamassassin-register-ham-routine)
15713         (spam-assassin-register-spam-routine)
15714         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15715         (spam-bogofilter-score): Fix to show article before scoring.
15716
15717 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15718
15719         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15720         default scoring function.
15721         (spam-generic-score): Call spam-spamassassin-score if
15722         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15723         spam-bogofilter-score otherwise.
15724
15725         * gnus.el (spam-process, spam-autodetect-methods): Add
15726         spamassassin and spamassassin-headers.
15727
15728 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15729
15730         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15731         Suppress unnecessary messages.
15732
15733 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15734
15735         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15736         make-hash-table.
15737
15738 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15739
15740         * canlock.el (base64-encode-string): Don't autoload it.
15741
15742 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15743
15744         * run-at-time.el: Remove useless (require 'itimer),
15745         eval-and-compile and (featurep 'xemacs).
15746
15747 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15748
15749         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15750         GROUP is a virtual group.
15751
15752 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15753
15754         * gnus.el: Autoload `message-y-or-n-p'.
15755
15756 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15757
15758         * pgg-parse.el: Remove unnecessary (require 'custom).
15759
15760         * pgg-def.el: do.
15761
15762         * nnmail.el: do.
15763
15764         * gnus-undo.el: do.
15765
15766         * gnus-picon.el: do.
15767
15768         * gnus-util.el: do.
15769
15770 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15771
15772         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15773
15774 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15775
15776         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15777         handle, as well as a list.
15778
15779         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15780         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15781         (mm-w3m-cid-retrieve): Simplify.
15782
15783 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15784
15785         * message.el (message-kill-to-signature): Allow prefix arg to
15786         specify number of lines to keep before signature.
15787
15788 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15789
15790         * message.el (message-kill-to-signature): Change docstring.
15791
15792 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15793
15794         * canlock.el: Always require sha1-el.
15795         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15796
15797         * message.el: Autoload sha1 only when compiling.
15798
15799         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15800         eudc-expand-inline for XEmacs.
15801
15802 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15803
15804         * message.el (message-canlock-generate): Require sha1-el.
15805
15806 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15807
15808         * message.el (message-expand-name): Silence the byte compiler.
15809
15810         * lpath.el: Add detect-coding-system.
15811
15812         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15813         cus-edit.
15814
15815 2004-01-13  Simon Josefsson  <jas@extundo.com>
15816
15817         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15818         Invoke gnus-score-mode.  Reported by
15819         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15820
15821         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15822         Jim Blandy <jimb@redhat.com> (tiny change).
15823
15824 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15825
15826         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15827
15828 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15829
15830         * spam.el (spam-get-article-as-string): Update to use
15831         gnus-request-article-this-buffer, much simpler.
15832         (spam-get-article-as-buffer): Remove.
15833
15834 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15835
15836         * message.el (message-expand-name): Use EUDC if the user uses that.
15837
15838 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15839
15840         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15841         character for the encoding to avoid consing a string.
15842
15843         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15844         unnecessarily.
15845
15846         * mm-util.el (mm-replace-chars-in-string): Remove.
15847
15848         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15849         of mm-replace-chars-in-string.
15850
15851 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15852
15853         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15854
15855         * mm-util.el (mm-subst-char-in-string): Support inplace.
15856
15857         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15858         a new string in every iteration.  Use shy groups.
15859
15860 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15861
15862         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15863         * gnus-soup.el (gnus-soup-group-brew):
15864         * gnus-msg.el (gnus-put-message):
15865         * gnus-move.el (gnus-group-move-group-to-server):
15866         * gnus-kill.el (gnus-batch-score):
15867         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15868         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15869         (gnus-group-update-group, gnus-group-read-group)
15870         (gnus-group-make-group, gnus-group-make-help-group)
15871         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15872         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15873         (gnus-group-sort-by-unread, gnus-group-catchup)
15874         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15875         (gnus-group-yank-group, gnus-group-set-info)
15876         (gnus-group-list-groups):
15877         * gnus.el (gnus-generate-new-group-name):
15878         * gnus-delay.el (gnus-delay-send-queue):
15879         * nnvirtual.el (nnvirtual-catchup-group):
15880         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15881         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15882         (gnus-group-prepare-topics, gnus-topic-check-topology):
15883         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15884         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15885         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15886         (gnus-group-make-articles-read):
15887         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15888         (gnus-group-change-level, gnus-kill-newsgroup)
15889         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15890         (gnus-get-unread-articles, gnus-make-articles-unread)
15891         (gnus-make-ascending-articles-unread): Use accessor
15892         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15893         to get group information for improved readability.
15894
15895
15896 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15897
15898         * gnus-art.el (article-decode-mime-words, article-babel)
15899         (gnus-article-highlight-signature, gnus-article-add-buttons)
15900         (gnus-signature-toggle): Use gnus-with-article-buffer.
15901
15902         * gnus-art.el (gnus-article-highlight-headers)
15903         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15904
15905         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15906         (gnus-article-set-globals, gnus-request-article-this-buffer)
15907         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15908         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15909         (gnus-mime-display-alternative): Use with-current-buffer.
15910
15911 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15912
15913         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15914         also under 80 char limit, and call gnus-error if needed.
15915         (spam-fetch-article-header): Fix - it was a
15916         buffer-local variable (gnus-newsgroup-data).
15917         (spam-find-spam): Use spam-generate-fake-headers, forget about
15918         spam-insert-fake-headers.
15919         (spam-insert-fake-headers): Remove.
15920
15921 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15922
15923         * deuglify.el (gnus-article-outlook-unwrap-lines)
15924         (gnus-outlook-rearrange-article)
15925         (gnus-outlook-repair-attribution-outlook)
15926         (gnus-outlook-repair-attribution-block)
15927         (gnus-outlook-repair-attribution-other): Remove redundant
15928         save-excursion.
15929
15930 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15931
15932         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15933         (spam-fetch-field-subject-fast)
15934         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15935         (spam-fetch-article-header): Add functions to deal with Gnus
15936         internals for fast retrieval of article header data.
15937         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15938
15939 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15940
15941         * pop3.el (pop3-md5): Remove.
15942         (pop3-apop): Replace pop3-md5 with md5.
15943
15944         * mm-bodies.el: base64 is always built-in.
15945
15946         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15947         with-current-buffer.
15948
15949 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15950
15951         * canlock.el (canlock-insert-header): Remove excessive grouping in
15952         regexp.
15953
15954         * gnus-sum.el (gnus-summary-read-document): Ditto.
15955
15956         * gnus-uu.el (gnus-uu-part-number): Ditto.
15957
15958         * html2text.el (html2text-remove-tags): Ditto.
15959         (html2text-format-tags): Ditto.
15960         (html2text-format-single-elements): Ditto.
15961
15962         * mml.el (mml-parse-1): Ditto.
15963
15964 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15965
15966         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
15967
15968         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
15969
15970         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
15971
15972         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
15973
15974 2003-11-15  Simon Josefsson  <jas@extundo.com>
15975
15976         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
15977         (pgg-gpg-lookup-key): Use regexp match instead of
15978         split-string (split-string is different between emacs 21.2 and
15979         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
15980
15981 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15982
15983         * gnus-art.el (gnus-mime-view-all-parts)
15984         (gnus-article-part-wrapper, gnus-article-view-part): Use
15985         with-current-buffer.
15986
15987 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15988
15989         * spam.el (spam-disable-spam-split-during-ham-respool)
15990         (spam-spamoracle-database, spam-cache-lookups)
15991         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
15992         (spam-group-ham-mark-p, spam-group-spam-mark-p)
15993         (spam-group-ham-marks, spam-group-spam-marks)
15994         (spam-group-spam-contents-p, spam-group-ham-contents-p)
15995         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
15996         also add spam-use-blackholes to the statistical checks.
15997         (spam-fetch-field-fast): Add interface to fetching fields, may
15998         become a macro.
15999         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
16000         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
16001         (spam-insert-fake-headers): Fake an article when needed.
16002         (spam-find-spam): Fake article when possible.
16003         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
16004         (spam-check-bogofilter-headers): Use message-fetch-field instead
16005         of nnmail-fetch-field.
16006
16007 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16008
16009         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
16010
16011 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16012
16013         * spam.el (spam-split): Do not require spam-use-CHECK to be
16014         enabled if that check is passed to spam-split explicitly; also
16015         fix so 'spam doesn't get converted to spam-split-group when
16016         spam-split-symbolic-return is t.
16017         (spam-find-spam): Find registrations of the article and use those
16018         instead of re-running spam-split to find the spam/ham
16019         classification of the article.
16020         (spam-log-processing-to-registry, spam-log-registered-p)
16021         (spam-log-unregistration-needed-p, spam-log-undo-registration):
16022         Use gnus-error instead of gnus-message.
16023         (spam-log-registration-type): Add function to determine the
16024         classification of a message based on registry entries; will
16025         return nil if both 'spam and 'ham are found.
16026         (spam-check-BBDB): Expand all the BBDB macros here so we can have
16027         a reasonably fast local cache without the loading errors.
16028         (spam-cache-lookups): Set to t by default.
16029         (spam-find-spam): Don't try to guess spam-cache-lookups.
16030         (spam-enter-whitelist, spam-enter-blacklist): Clear the
16031         spam-caches entry.
16032         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
16033         caching of whitelist/blacklist entries.
16034         (spam-check-whitelist, spam-check-blacklist): Invoke
16035         spam-from-listed-p with a type, not a cache variable.
16036         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
16037
16038 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16039
16040         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
16041
16042         * nnmail.el (nnmail-split-fancy): do.
16043
16044         * mml.el (mml-parse): do.
16045
16046         * gnus-score.el (gnus-enter-score-words-into-hashtb)
16047         (gnus-score-adaptive): do.
16048
16049 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16050
16051         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
16052         (gnus-mime-button-map): Don't set keymap parent.
16053         (gnus-button-ctan-directory-regexp): Use shy grouping.
16054         (gnus-prev-page-map): Don't set keymap parent.
16055         (gnus-prev-page-map): Remove duplicated one.
16056         (gnus-next-page-map): Don't set keymap parent.
16057         (gnus-mime-security-button-map): Ditto.
16058
16059         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
16060         version number.
16061
16062         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
16063
16064 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16065
16066         * canlock.el (canlock-sha1-function): Remove.
16067         (canlock-sha1-function-for-verify): Remove.
16068         (canlock-openssl-program): Remove.
16069         (canlock-openssl-args): Remove.
16070         (canlock-ignore-errors): Remove.
16071         (canlock-sha1-with-openssl): Remove.
16072         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
16073         (canlock-verify): Don't use canlock-ignore-errors.
16074
16075         * sha1-el.el (sha1-string-external): Make it can return a string
16076         in binary form.
16077         (sha1-region-external): Ditto.
16078         (sha1-string-internal): Ditto.
16079         (sha1-region-internal): Ditto.
16080         (sha1-region): Ditto.
16081         (sha1-string): Ditto.
16082         (sha1): Ditto.
16083
16084 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16085
16086         * spam.el (spam-report-articles-gmane): New command.
16087
16088 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16089
16090         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16091
16092         * run-at-time.el (run-at-time-saved): Remove.
16093         (run-at-time): Doc fix.
16094
16095 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16096
16097         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16098         (gnus-summary-limit-map): Add it.
16099         (gnus-summary-make-menu-bar): do.
16100
16101 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16102
16103         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16104         Make attempt at some caching support (done for BBDB only now).
16105         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16106         addresses to be checked.
16107         (spam-clear-cache-BBDB): Add function, to be invoked by
16108         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16109         (spam-check-BBDB): Check and use the caches, if
16110         spam-cache-lookups is on, remove superfluous (provide).
16111
16112 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16113
16114         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16115
16116 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16117
16118         * run-at-time.el (run-at-time-saved): Move to after the definition
16119         of `run-at-time'.
16120
16121         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16122
16123 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16124
16125         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16126         mm-w3m-local-map-property.
16127
16128         * mm-view.el (mm-w3m-mode-map): Remove.
16129         (mm-w3m-local-map-property): Remove.
16130         (mm-inline-text-html-render-with-w3m): Don't use
16131         mm-w3m-local-map-property.
16132
16133 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16134
16135         * run-at-time.el: New file.
16136
16137         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16138         under Emacs.
16139
16140         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16141         of gnus-set-text-properties.
16142
16143         * gnus-uu.el (gnus-uu-save-article): Ditto.
16144
16145         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16146
16147         * gnus-cite.el (gnus-cite-parse): Ditto.
16148
16149         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16150         of gnus-.
16151
16152         * gnus-xmas.el (run-at-time): Require run-at-time.
16153
16154         * gnus.el: Changed calls to nnheader-run-at-time and
16155         password-run-at-time throughout to use run-at-time directly.
16156
16157         * password.el: Removed definition of run-at-time.
16158
16159         * nnheaderxm.el: Remove definition of run-at-time.
16160
16161 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16162
16163         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16164         in prompt.
16165
16166 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16167
16168         * messagexmas.el (message-xmas-redefine): Alias
16169         `message-make-caesar-translation-table' to
16170         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16171         version.
16172
16173         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16174         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16175         `gnus-xmas-set-text-properties'.
16176         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16177         `gnus-xmas-completing-read'.
16178         (gnus-xmas-completing-read): Removed.
16179         (gnus-xmas-open-network-stream): Removed.
16180
16181         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16182         XEmacs version.
16183
16184         * dns.el (dns-make-network-process): Use `open-network-stream'
16185         instead of `gnus-xmas-open-network-stream'.
16186
16187         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16188
16189         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16190
16191 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16192
16193         * gnus-art.el (gnus-mime-display-alternative)
16194         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16195         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16196         Don't use gnus-local-map-property.
16197
16198         * gnus-util.el (gnus-local-map-property): Remove.
16199
16200         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16201         gnus-completing-read-maybe-default with completing-read.
16202
16203         * gnus-util.el (gnus-completing-read): do.
16204         (gnus-completing-read-maybe-default): Remove.
16205
16206 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16207
16208         * password.el: Only autoload `run-at-time' if not XEmacs.
16209         Only autoload the itimer functions if XEmacs.
16210
16211 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16212
16213         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16214         XEmacsen.
16215
16216         * dgnushack.el: Autoload executable-find for XEmacs.
16217
16218 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16219
16220         * gnus-art.el (gnus-read-string): Remove.
16221         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16222         read-string.
16223
16224 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16225
16226         * netrc.el: Autoload password-read.
16227         (netrc): Add configuration group.
16228         (netrc-encoding-method, netrc-openssl-path): Add
16229         variables for encoding and decoding of files with symmetric
16230         ciphers.
16231         (netrc-encode): Add assistant function to encode a file with
16232         netrc-encoding-method.
16233         (netrc-parse): Add interactive parameter, added optional
16234         decoding if netrc-encoding-method is non-nil but otherwise
16235         behavior is standard.
16236         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16237         Do s/encode/encrypt/ everywhere.
16238
16239         * spam.el: Remove executable-find autoload.
16240
16241 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16242
16243         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16244
16245         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16246
16247 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16248
16249         * gnus-art.el (gnus-treat-ansi-sequences)
16250         (article-treat-ansi-sequences): New variable and function.
16251         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16252
16253         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16254         Use it.
16255
16256 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16257
16258         * mm-util.el (mm-quote-arg): Remove.
16259
16260         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16261         shell-quote-argument.
16262
16263         * gnus-uu.el (gnus-uu-command): do.
16264
16265         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16266
16267         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16268         with make-char.
16269
16270         * mm-util.el (mm-make-char): Remove.
16271
16272         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16273         add-minor-mode.
16274
16275         * gnus-undo.el (gnus-undo-mode): do.
16276
16277         * gnus-topic.el (gnus-topic-mode): do.
16278
16279         * gnus-sum.el (gnus-dead-summary-mode): do.
16280
16281         * gnus-start.el (gnus-slave-mode): do.
16282
16283         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16284
16285         * gnus-ml.el (gnus-mailing-list-mode): do.
16286
16287         * gnus-gl.el (gnus-grouplens-mode): do.
16288
16289         * gnus-draft.el (gnus-draft-mode): do.
16290
16291         * gnus-dired.el (gnus-dired-mode): do.
16292
16293         * gnus-ems.el (gnus-add-minor-mode): Remove.
16294
16295         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16296         Replace gnus-char-width with char-width.
16297
16298         * gnus-ems.el (gnus-char-width): Remove.
16299
16300         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16301         Replace gnus-char-width with char-width.
16302
16303         * gnus-ems.el (gnus-char-width): Remove.
16304
16305         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16306         definition.
16307         Remove Emacs 20 hash table compatibility code.
16308
16309         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16310         20 compatibility code.
16311
16312         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16313
16314         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16315
16316         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16317         with point-at-{eol,bol}.
16318
16319         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16320
16321         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16322
16323         * flow-fill.el (fill-flowed-point-at-bol)
16324         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16325
16326         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16327         Replace with point-at-{eol,bol} throughout all files.
16328
16329 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16330
16331         * ntlm.el (ntlm-string-as-unibyte): New macro.
16332         (ntlm-build-auth-response): Use it.
16333
16334         Remove Emacs 20 stuff:
16335         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16336         (butlast, mapc, remove): Remove the compiler macros.
16337         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16338         of delq and copy-sequence.
16339         * gnus-art.el (popup-menu): Remove the compiler macro.
16340         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16341         Emacs 20.
16342
16343 2004-01-05  Simon Josefsson  <jas@extundo.com>
16344
16345         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16346         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16347         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16348         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16349         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16350         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16351         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16352         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16353         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16354         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16355         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16356         string-xor into ntlm-string-xor.  Suggested by
16357         Jesper Harder <harder@myrealbox.com>.
16358
16359         * ntlm.el: Don't include poem.
16360
16361         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16362         Jesper Harder <harder@myrealbox.com>.
16363
16364         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16365
16366         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16367         probably breaks emacs with DL patch, but do we care? Is anyone
16368         still using the DL stuff?)
16369
16370         * sieve-manage.el: Use the password package.
16371         (sieve-manage-read-passwd): Remove.
16372         (sieve-manage-interactive-login): Use password.  Re-add
16373         condition-case around loop.
16374
16375         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16376         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16377         the password package.
16378
16379 2003-02-19  Simon Josefsson  <jas@extundo.com>
16380
16381         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16382         token.
16383
16384 2002-08-07  Simon Josefsson  <jas@extundo.com>
16385
16386         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16387         (sieve-manage-authenticators):
16388         (sieve-manage-authenticator-alist): Add some SASL mechs.
16389         (sieve-sasl-auth): New function.
16390         (sieve-manage-cram-md5-auth):
16391         (sieve-manage-plain-auth): Rewrite using SASL library.
16392         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16393         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16394         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16395         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16396
16397 2004-01-05  Simon Josefsson  <jas@extundo.com>
16398
16399         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16400         New files.
16401
16402 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16403
16404         * gnus-group.el (gnus-no-groups-message): Update.
16405
16406         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16407
16408 2003-11-09  Simon Josefsson  <jas@extundo.com>
16409
16410         * imap.el: Support for ID IMAP extension (RFC 2971).
16411         (imap-local-variables): Add imap-id.
16412         (imap-id): New variable.
16413         (imap-id): New function.
16414         (imap-parse-response): Parse untagged ID response.
16415         * nnimap.el (nnimap-id): New variable.
16416         (nnimap-open-connection): Use it.
16417
16418 2003-12-28  Simon Josefsson  <jas@extundo.com>
16419
16420         * gnus-score.el (gnus-score-edit-all-score): New.
16421         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16422
16423 2004-01-04  Simon Josefsson  <jas@extundo.com>
16424
16425         * password.el: Add.
16426
16427 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16428
16429         * dns.el (dns-query-types): Fix typo.
16430         (dns-query-types): New function.
16431         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16432         PTR and SOA replies, see RFC 1035.
16433
16434 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16435
16436         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16437
16438         * Moved to Changelog.2.
16439
16440 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16441
16442         * gnus.el (gnus-version-number): Bump version.
16443
16444 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16445
16446         * gnus.el: No Gnus v0.1 is released.
16447
16448 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16449
16450         * gnus.el: No Gnus v0.0 is released.
16451
16452 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16453
16454         * gnus.el (gnus-version-number): Bump.
16455         (gnus-version): No.
16456
16457 See ChangeLog.2 for earlier changes.
16458
16459     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16460       Free Software Foundation, Inc.
16461
16462   This file is part of GNU Emacs.
16463
16464   GNU Emacs is free software: you can redistribute it and/or modify
16465   it under the terms of the GNU General Public License as published by
16466   the Free Software Foundation, either version 3 of the License, or
16467   (at your option) any later version.
16468
16469   GNU Emacs is distributed in the hope that it will be useful,
16470   but WITHOUT ANY WARRANTY; without even the implied warranty of
16471   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16472   GNU General Public License for more details.
16473
16474   You should have received a copy of the GNU General Public License
16475   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16476
16477 ;; Local Variables:
16478 ;; coding: utf-8
16479 ;; fill-column: 79
16480 ;; add-log-time-zone-rule: t
16481 ;; End: