Start preparing for partial downloads.
[gnus] / lisp / ChangeLog
1 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * nnimap.el (nnimap-find-wanted-parts-1): New function.
4         (nnimap-fetch-partial-articles): New variable.
5
6         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
7         comments.
8         (gnus-methods-sloppily-equal): New function.
9         (gnus): When using the development version of Gnus, load the gnus-load
10         file.
11
12         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
13         `gnus-open-server' on each method before trying to scan them etc.  This
14         ensures that all the backend parameters are set correctly.
15
16         * nnimap.el (nnimap-authenticator): New variable.
17         (nnimap-open-connection): Allow anonymous login.
18         (nnimap-transform-headers): The chars header is called Chars not
19         Bytes.
20         (nnimap-wait-for-response): Don't infloop if the IMAP connection
21         drops.
22
23         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
24         patch, found by Knut Anders Hatlen.
25
26 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
27
28         * gnus-agent.el (gnus-agent-batch-confirmation)
29         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
30         to gnus-message.
31         * gnus-art.el (gnus-article-describe-briefly): Likewise.
32         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
33         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
34         * gnus-int.el (gnus-open-server): Likewise.
35         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
36         (gnus-score-check-syntax): Likewise.
37         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
38         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
39         Likewise.
40         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
41
42 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
43
44         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
45         calling conventions so that prefetch doesn't bug out.
46
47 2010-09-19  Julien Danjou  <julien@danjou.info>
48
49         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
50         rather than `subst-char-in-region' in order to be able to replace ASCII
51         char by UTF-8 ones.
52
53         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
54         than curl.
55         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
56         the right URL and ALT text on images.
57         (gnus-html-wash-tags): Fix tag case.
58         Add support for `s' and `ins' tags. Use gnus-emphasis-* faces.
59         (gnus-article-html): Add -o display_ins_del=2 option.
60         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
61
62 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
63
64         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
65         the extra mail headers, which sometimes seem to happen for unknown
66         reasons.
67
68         * mail-parse.el (mail-header-encode-parameter): Define as
69         rfc2045-encode-string instead of as rfc2231-encode-string, since some
70         (or most, perhaps?) mail readers don't understand the latter, but do
71         understand the former.
72
73         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
74         to nil, so that no methods are automatically agentized.  I think this
75         is probably what most users want.
76
77         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
78         from url-retrieve, for instance about invalid URLs.
79
80         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
81         groups that have no articles.
82         (nnimap-request-article): Check that we really got an article when we
83         requested one.
84
85         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
86         doesn't exist.
87
88         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
89         nntp buffer so the agent can save it.
90         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
91         that CRLF doesn't get translated to \n.
92         (nnimap-open-connection): Don't make 'shell commands only send \n.
93
94 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
95
96         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
97         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
98         Update var name.
99         (nnml-generate-nov-file): Use dolist.
100         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
101         Use with-current-buffer.
102
103 2010-09-18  Julien Danjou  <julien@danjou.info>
104
105         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
106         parallel.
107
108 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
109
110         * nnimap.el (nnimap-update-info): When doing partial marks update, get
111         the range update right.
112         (nnimap-request-group): Don't make `M-g' bug out on group with no
113         marks.
114         (nnoo): Required, so that other packages can require nnimap.
115         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
116         command we're looking for.  This helps when the server sends more
117         responses after we've gotten everything we expected.
118         (nnimap): Add a `newlinep' field to keep track of end-of-line
119         conventions.
120         Don't send CRLF to things that don't want it.
121         (nnimap-request-accept-article): Ditto.
122
123 2010-09-18  Julien Danjou  <julien@danjou.info>
124
125         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
126         than curl to retrieve images.
127
128 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
129
130         * nnimap.el (nnimap-update-info): Extend the info so that we can set
131         the marks.
132         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
133         (nnimap-wait-for-connection): New function.
134         (nnimap-open-connection): If we have PREAUTH, don't query for login
135         credentials.
136         (nnimap-update-info): Fix off-by-one error when concatenating ranges
137         when doing a partial update.
138
139 2010-09-18  Julien Danjou  <julien@danjou.info>
140
141         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
142         tags.
143
144 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
145
146         * nnimap.el (nnimap-credentials): New function.
147         (nnimap-open-connection): Use the new function to look for credentials
148         also on the numeric equivalents of "imap" and "imaps".
149
150         * gnus-start.el (gnus-activate-group): Send the info to
151         gnus-request-group.
152
153         * nnimap.el (nnimap-request-group): Have the "check" version of the
154         function parse flags and update the info, so that a `M-g' get a total
155         resync of all flags from the group.
156
157         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
158         to allow backends to alter the info on group selection.  Also alter all
159         the backend -request-group functions to take the parameter.
160
161         * nnimap.el (nnimap-store-info): New function.
162         (nnimap-update-info): Store the info for later usage.
163         (nnimap-request-group): Use the stored info for the dont-check case, so
164         that we don't retrieve all marks when we enter a group.
165
166         * nnimap.el: Use deffoo instead of defun for interface functions.
167
168         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
169         update the group info.  This makes the nndraft groups, for instance, go
170         back to their old behaviour.
171
172         * gnus-sum.el (gnus-select-newsgroup): Indent.
173
174         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
175         in.
176         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
177         nothing.
178
179         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
180         from methods that are denied.
181
182         * gnus-int.el (gnus-method-denied-p): New function.
183
184         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
185         store the password instead of netrc.
186         (nnimap-open-connection): Don't error out when we can't make a
187         connections.
188
189         * auth-source.el (auth-source-create): In the password prompt, say what
190         we're querying for.  Also prompt for user name if that hasn't been
191         given.
192
193         * nnimap.el (nnimap-with-process-buffer): Removed.
194
195 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
196
197         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
198         method when we're reading from the agent.
199
200         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
201
202         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
203         that's probably most useful for users.
204
205         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
206         "failed" all the time.
207
208         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
209         ...)) with (with-current-buffer ... ).
210
211         * nntp.el (nntp-open-server): Return whether the open was successful or
212         not.
213
214         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
215         select an unread unseen article first.
216
217         * nnimap.el (nnimap-open-connection): If the user doesn't have a
218         /etc/services, supply some sensible port defaults.
219
220         * dgnushack.el: Define netrc-credentials.
221
222 2010-09-17  Julien Danjou  <julien@danjou.info>  (tiny fix)
223
224         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
225
226 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
227
228         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
229         doesn't have any parameters.
230
231 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
232
233         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
234         only upcased checks.
235
236         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
237
238         * nnimap.el (nnimap-open-shell-stream): New function.
239         (nnimap-open-connection): Use it.
240         (nnimap-transform-headers): Get the number of lines in each message.
241         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
242         number of lines.
243         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
244         problem.
245
246         * utf7.el (utf7-encode): Autoload.
247
248         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
249         to allow the mail splitting to not return a default group.  This is
250         useful for nnimap, which will leave unmatched mail in the inbox.
251
252         * nnimap.el: Rewritten.
253
254         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
255         nnimap usage.
256
257         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
258         if the move is internal, so that nnimap can do fast internal moves.
259
260         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
261         data.
262         (gnus-read-active-for-groups): Support finishing the early retrieval of
263         data.
264
265         * gnus-range.el (gnus-range-nconcat): New function.
266
267         * gnus-int.el (gnus-finish-retrieve-group-infos)
268         (gnus-retrieve-group-data-early): New functions.
269
270 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
271
272         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
273         (nnrss-retrieve-groups):
274         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
275         (pop3-quit): Use with-current-buffer.
276
277 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
278
279         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
280         instead of nnheader-accept-process-output.
281
282         * dgnushack.el (dgnushack-compile): Add comment.
283
284         * lpath.el: No need to fbind propertize for XEmacs 21.4.
285
286         * gnus-html.el (gnus-html-schedule-image-fetching)
287         (gnus-html-prefetch-images): Replace process-kill-without-query by
288         gnus-set-process-query-on-exit-flag.
289
290 2010-09-16  Romain Francoise  <romain@orebokech.com>
291
292         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
293
294 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
295
296         * gnus-registry.el (gnus-registry-install-shortcuts): The second
297         parameter to unintern is mandatory-ish in Emacs 24.
298
299         * gnus-html.el (gnus-html-schedule-image-fetching)
300         (gnus-html-prefetch-images): Check for curl before using it.
301
302         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
303         depend on curl, which isn't essential.
304
305         * imap.el: Revert back to version
306         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
307         seem problematic.
308
309 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
310
311         * gnus-registry.el (gnus-registry-install-shortcuts):
312         Explicitly pass `obarray' to `unintern' to avoid a warning.
313
314 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
315
316         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
317         change.
318
319         * nnrss.el (nnrss-request-list): Removed this function and related
320         functions, including the moreover stuff.
321
322 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
323
324         * nnrss.el (nnrss-retrieve-groups): New function.
325
326 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
327
328         * .dir-locals.el: Add no-byte-compile cookie.
329
330 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
331
332         * time-date.el (format-seconds): Comment fix.
333
334         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
335         for back end that doesn't support request-scan.
336
337 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
338
339         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
340         then do request scans from the backends.
341
342         * netrc.el (netrc-credentials): New conveniency function.
343
344         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
345         avoid running a hook per line, since this takes a lot of time,
346         profiling shows.
347         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
348         directly if gnus-visual-p is true.
349
350 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
351
352         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
353         groups; replace mapcar with dolist which is a bit faster; pass groups
354         info to gnus-read-active-file-1.
355         (gnus-read-active-file-1): Scan only specified groups if the new
356         optional arg `infos' is given.
357
358 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
359
360         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
361
362         * pop3.el (pop3-movemail): Removed.
363         (pop3-streaming-movemail): Renamed to pop3-movemail.
364
365         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
366         don't restrict end-tag searches to the end of the line.
367
368 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
369
370         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
371         articles of every unchecked group to t, which means unknown since the
372         server has never been opened.
373
374 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
375
376         * gnus-html.el (gnus-html-show-alt-text): New command.
377         (gnus-html-browse-image): Ditto.
378         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
379         to browse the image directly.
380         (gnus-html-wash-tags): Search for images first, so that <a><img> works
381         better.
382
383         * gnus-async.el (gnus-async-article-callback): Call
384         `gnus-html-prefetch-images' unconditionally.
385
386         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
387         before feeding URLs to curl.
388
389 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
390
391         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
392         internal images as deletable by `W D D'.
393
394         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
395         (gnus-async-article-callback): Fix typo.
396
397 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
398
399         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
400         current line to work around bugs in the output from w3m.
401
402         * gnus-async.el (gnus-async-article-callback): Always prefetch images
403         for groups that want that.
404
405         * nntp.el (nntp-wait-for-string): Supply a timeout for
406         accept-process-output to ensure progress.
407
408         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
409         level to get unread articles from, then use that for foreign groups,
410         too.
411
412         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
413         confuses the rest of the function.
414
415         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
416         for the methods that support -retrieve-groups, too.
417
418         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
419
420 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
421
422         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
423         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
424
425         * pop3.el: Require cl when compiling.
426         (pop3-number-of-responses): Search for "+OK", not "+OK ".
427
428 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
429
430         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
431         that aren't going to be activated.
432         (gnus-get-unread-articles): Fix up the last commit.
433
434         * gnus-html.el (gnus-article-html): Allow calling without specifying
435         the handle.  In that case, dissect the buffer first.
436
437         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
438
439         * nnimap.el (nnimap-open-connection): Revert the change that would look
440         into authinfo for imaps instead of imap.
441
442         * gnus-start.el (gnus-activate-group): Take an optional parameter to
443         say that you don't want to call gnus-request-group with don-check, but
444         do check the reponse.  This is for virtual groups only.
445         (gnus-get-unread-articles): Count the archive groups as secondary, so
446         that they're activated the same way as before.
447
448         * imap.el (imap-message-map): Removed optional buffer parameter, since
449         no callers use it.
450         (imap-message-get): Ditto.
451         (imap-message-put): Ditto.
452         (imap-mailbox-map): Ditto.
453         (imap-mailbox-put): Ditto.
454         (imap-mailbox-get): Ditto.
455         (imap-mailbox-get): Revert last change for this function.
456
457         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
458         case-insensitively.
459         (nnimap-debug): Removed.
460
461         * imap.el (imap-fetch-safe): Removed function, and altered all callers
462         to use `imap-fetch' instead.  According to the comments, this should be
463         safe, since all other IMAP clients use the 1:* syntax.
464         (imap-enable-exchange-bug-workaround): Removed.
465         (imap-debug): Removed -- doesn't seem very useful.
466
467         * mail-source.el (mail-source-fetch): Don't message if we're fetching
468         mail from a file, and the file doesn't exist.
469
470         * imap.el (imap-log): New convenience function used throughout instead
471         of repeating the same code all over the place.
472
473         * pop3.el (pop3-streaming-movemail): Return t for success.
474
475         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
476         .authinfo if we're using ssl connection.
477
478         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
479         already have if we're in a main Gnus `g' run.
480
481         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
482
483 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
484
485         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
486
487         * nnmh.el (nnmh-request-list-1): Bind `file'.
488
489         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
490         alias to set-process-query-on-exit-flag or process-kill-without-query.
491         (pop3-open-server): Use it.
492
493 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
494
495         * mail-source.el (mail-source-delete-crash-box): Always move the crash
496         box to the Incoming file.  Fixes mistake in previous checkin.
497
498         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
499         request loop (for debugging purposes) removed.
500
501         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
502         culprit is more visible.
503         (nnml-save-incremental-nov, nnml-open-incremental-nov)
504         (nnml-add-incremental-nov): New functions to do "incremental" nov
505         updates, where we just append to the end of the existing nov files
506         without reading/writing them in full.
507
508         * mail-source.el (mail-source-delete-crash-box): Really only check the
509         incoming files once in a while.
510
511         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
512
513         * mail-source.el (mail-source-delete-crash-box): Only check the
514         incoming files for deletion once per day to save a lot of file
515         accesses.
516
517         * pop3.el (pop3-logon): Fix up unbound variable typo.
518
519         * mail-source.el (pop3-streaming-movemail): Autoload.
520
521         * pop3.el (pop3-streaming-movemail): Respect
522         pop3-leave-mail-on-server.
523
524         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
525         retrieval.
526
527         * pop3.el (pop3-process-filter): Removed unused function.
528         (pop3-streaming-movemail, pop3-send-streaming-command)
529         (pop3-wait-for-messages, pop3-write-to-file)
530         (pop3-number-of-responses): New functions for streaming pop3
531         retrieval.
532
533         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
534         come from no known methods.
535         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
536         list.
537
538         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
539         message sizes.
540         (pop3-movemail): Use erase-buffer instead of looping and deleting
541         regions, which seems rather odd.
542
543         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
544         file once per `g' run.
545
546         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
547         directories.  This makes the draft queue directory work.
548
549         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
550         data from the backends, so that we only request the list of groups from
551         each method once.  This should speed things up considerably.
552
553         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
554         detect that it's not implemented.
555
556         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
557         we actually do recurse down into the tree, but don't stat all leaf
558         nodes.
559
560         * gnus-html.el (gnus-html-show-images): If there are no images to show,
561         then say so instead of bugging out.
562
563         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
564         files exist before trying to read them.
565
566         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
567         around <pre_int>.
568
569         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
570
571         * nnmh.el (nnmh-request-list-1): Optimize for speed.
572
573 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
574
575         * mm-util.el (mm-image-load-path): Just return the image directories,
576         not all directories in the path in addition to the image directories.
577         (mm-image-load-path): Maintain a cache of the image directories so that
578         the `g' command in Gnus doesn't have to stat dozens of directories each
579         time.
580
581         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
582         (gnus-html-wash-tags): Add a new `i' command to insert images.
583         (gnus-html-insert-image): New command and keystroke.
584         (gnus-html-redisplay-with-images): New command and keystroke.
585         (gnus-html-show-images): Renamed command.
586         (gnus-html-wash-tags): Remove more white space before <pre_int> image
587         spacers.
588         (gnus-html-wash-tags): Decode entities at the end, so that entities
589         inside the tags don't mess up the rest of the "parsing".
590
591         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
592         so that nnimap methods aren't agentized by default.  There's apparently
593         many problems related to agent/imap behaviour.
594
595         * gnus-art.el (gnus-article-copy-string): New command and key binding.
596
597         * gnus-html.el: Doc fix.
598
599 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
600
601         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
602         specifier-spec-list for Emacs 21.
603
604         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
605         glyph-width and glyph-height instead of display-graphic-p and
606         image-size; make avoidance of displaying small images work for XEmacs.
607
608         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
609         for XEmacs.
610
611         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
612         of symbol that holds plist data.
613         (gnus-process-plist): Remove plist of process after getting it.
614
615 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
616
617         * message.el (message-generate-hashcash): Change default to
618         'opportunistic if hashcash is installed.
619
620         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
621         (gnus-html-put-image): Only call image-size once, since it's somewhat
622         time-consuming on remote X servers.
623
624 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
625
626         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
627         type on data, not a file name.
628
629         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
630         window-pixel-edges for Emacs 21.
631
632         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
633         decoded contents.
634         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
635
636 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
637
638         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
639         group line format, since it isn't very interesting.
640
641         * gnus-agent.el (gnus-agent-short-article),
642         (gnus-agent-long-article): Increase values for these two variables,
643         since most people are likely to have more network connection and
644         storage than before.
645
646         * gnus.el (gnus-refer-article-method): Change default to 'current.
647         When referring an article, the common behaviour is to refer it from the
648         current select method, not the native select method.  The chances of
649         the native select method having the message in question is rather slim
650         these days.
651
652         * gnus-sum.el (gnus-auto-select-subject): Change default to
653         `unseen-or-unread'.  I think it's likely that most people want to
654         select an unseen article over a previously seen, but unread one.
655
656         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
657         means that in the article buffer none of the minor mode elements will
658         be shown, usually, and this is not desirable in most cases.
659
660         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
661         that commands like `d' (and the like) go to the next line in the
662         buffer, instead of the next unread article.  I think this is the
663         behaviour that is most natural for most users.
664         (gnus-single-article-buffer): Change default to nil, so that people can
665         have as many article buffers open as they have summary buffer.  I think
666         this is the most natural way for the groups to behave.
667
668         * message.el (message-generate-new-buffers): Change default to
669         `unsent', so that all new message buffers start their names with the
670         string "*unsent", and it's easier to find the buffers if you move from
671         them.
672
673 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
674
675         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
676         small. They're probably tracking images.
677         (gnus-html-wash-tags): Remove all <pre_int> place holders.
678         (gnus-html-rescale-image): Yet another try at getting the image sizing
679         right.
680
681         * nntp.el (nntp-request-set-mark): Refuse to do marks if
682         nntp-marks-file-name is nil.
683
684 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
685
686         * gnus-html.el (gnus-html-wash-tags)
687         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
688         Better logging.
689
690 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
691
692         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
693
694         * gnus-html.el (gnus-html-wash-tags): Check the value of
695         gnus-blocked-images in the summary buffer.
696
697 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
698
699         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
700
701 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
702
703         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
704         like "a", it seems like.
705         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
706         since it needs to be picked from the correct buffer.
707
708         * nnwfm.el: Removed.
709
710         * nnlistserv.el: Removed.
711
712 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
713
714         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
715         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
716
717 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
718
719         * nnkiboze.el: Removed.
720
721         * nndb.el: Removed.
722
723         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
724         alt text.
725         (gnus-html-rescale-image): Try to get the rescaling logic right for
726         images that are just wide and not tall.
727
728         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
729         overshadow variable bindings.
730
731 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
732
733         * gnus-html.el (gnus-html-wash-tags)
734         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
735         extra logging.
736
737 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
738
739         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
740         (gnus-max-image-proportion): New variable.
741         (gnus-html-rescale-image): New function.
742         (gnus-html-put-image): Rescale images.
743
744 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
745
746         Fix up some byte-compiler warnings.
747         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
748         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
749         (gnus-article-fill-cited-article, gnus-article-hide-citation)
750         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
751         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
752         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
753         (gnus-group-update-group): Use save-excursion and with-current-buffer.
754
755 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
756
757         * gnus-html.el (gnus-article-html): Decode contents by charset.
758
759 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
760
761         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
762         (gnus-html-frame-width, gnus-blocked-images)
763         * message.el (message-prune-recipient-rules): Add custom version.
764         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
765
766         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
767         functions.
768
769         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
770         gnus-process-get.
771
772 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
773
774         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
775         instead of lsub directly.
776
777 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
778
779         * nnwarchive.el: Removed.
780
781         * gnus-soup.el: Removed.
782
783         * nnsoup.el: Removed.
784
785         * nnultimate.el: Removed.
786
787         * gnus-html.el (gnus-blocked-images): New variable.
788
789         * message.el (message-prune-recipients): New function.
790         (message-prune-recipient-rules): New variable.
791
792         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
793         guess whether a long line is natural text or not.
794
795         * gnus-html.el (gnus-html-schedule-image-fetching): Use
796         gnus-process-plist and friends for compatibility.
797
798 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
799
800         * gnus-html.el: Require packages that define macros used in this file.
801         (gnus-article-mouse-face): Declare to silence byte-compiler.
802         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
803         process-get.
804         (gnus-html-put-image): Use plist-get to avoid getf.
805         (gnus-html-prefetch-images): Use with-current-buffer.
806
807 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
808
809         * gnus-ems.el: Provide compatibility functions for
810         gnus-set-process-plist.
811
812         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
813         header-line-format for XEmacs 21.4.
814
815         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
816         * gnus.el (gnus-valid-select-methods)
817         * message.el (message-send-mail-partially-limit)
818         * mm-decode.el (mm-text-html-renderer)
819         * mml.el (mml-insert-mime-headers-always)
820         * smiley.el (smiley-regexp-alist): Bump custom version.
821
822 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
823
824         * gnus-html.el: require mm-url.
825         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
826         with the url to `url'.
827         (gnus-html-wash-tags): Support cid: URLs/images.
828
829 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
830
831         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
832         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
833         bindings, as they aren't useful at all. `w' is moved to `W w'.
834
835         * gnus-move.el: Removed file, since it doesn't really work.
836
837         * gnus-html.el (gnus-article-html): Tell w3m that the input is
838         UTF-8. This seems to fix problems with some German web feeds.
839
840         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
841         at the top so that the proper colours are applied.
842
843         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
844         don't have dots in their names.
845
846         * gnus-art.el (gnus-article-view-part): Doc fix.
847
848         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
849         XEmacs-compatible.
850         (gnus-html-put-image): Don't do images on non-graphic displays.
851
852         * nnslashdot.el: Removed this unused backend.
853
854         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
855         actions.
856         (gnus-undo-register-1): Revert last change.
857
858         * gnus-group.el (gnus-group-completing-read): Protect against not
859         having completion-styles bound.
860
861         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
862         make broken recipients happier.
863
864         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
865
866         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
867         point parameter.
868
869         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
870
871         * gnus-group.el (gnus-group-completing-read): Add 'substring to
872         completion-styles for group selection.
873
874 2009-02-04  Andreas Schwab  <schwab@suse.de>
875
876         * gnus-score.el (gnus-score-string): Fix regex for matching extra
877         headers and regexp-quote the match if necessary.
878
879 2009-03-24  Miles Bader  <miles@gnu.org>
880
881         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
882         the blinking smiley.
883
884 2009-03-24  Simon Josefsson  <simon@josefsson.org>
885
886         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
887         blink smiley.
888
889 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
890
891         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
892         where the dribbel file lives exists.
893
894         * message.el (message-send-mail-partially-limit): Change the default to
895         nil, since most people don't want this.
896
897         * mm-url.el (mm-url-decode-entities): Also decode entities like
898         &#x3212.
899
900 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
901
902         * gnus-sum.el (gnus-summary-idna-message):
903         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
904         Hyperlink urls in docstrings with URL `...'.
905
906 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
907
908         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
909         functions.
910
911 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
912
913         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
914         say what the mouseover text should be.
915
916         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
917         version of the mm-w3m-safe-url-regexp variable to only download images
918         in the groups where we want that to happen.
919
920         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
921
922         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
923         easier debugging.
924         (gnus-article-beginning-of-window): Add kludge to allow spacing past
925         big pictures in the article buffer.
926
927         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
928         gnus-article-html.
929         (mm-text-html-renderer): gnus-article-html needs curl in addition to
930         w3m.
931
932         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
933
934 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
935
936         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
937         which doesn't exist.
938
939         * message.el (message-inhibit-ecomplete): New variable to allow some
940         function to inhibit ecomplete address storage.
941         (message-resend): Disable ecomplete message storage when resending
942         messages.
943
944         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
945
946 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
947
948         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
949         Save excursion while copying, moving, and deleting articles in order to
950         prevent the cursor from jumping to unforeseen place.
951
952 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
953
954         * lpath.el: No need to bind bookmark-current-buffer,
955         bookmark-yank-point and bookmark-make-record-function.
956
957 2010-08-17  Glenn Morris  <rgm@gnu.org>
958
959         * gnus-sync.el: Require gnus components whose functions are used.
960
961         * gnus-art.el (bookmark-make-record-function):
962         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
963         Declare for compiler.
964
965         * mm-url.el (mml-compute-boundary): Autoload.
966
967 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
968
969         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
970
971 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
972
973         Typo fix "hoo4a" -> "hook".
974
975         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
976
977 2010-08-14  Glenn Morris  <rgm@gnu.org>
978
979         * gnus-sync.el (gnus-sync): Fix defgroup version.
980
981 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
982
983         Doc fixes and keep unknown groups (ammended for nunion bug fix).
984
985         * gnus-sync.el: Fix docs.
986         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
987         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
988
989 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
990
991         Optimizations for gnus-sync.el.
992
993         * gnus-sync.el: Add docs about gnus-sync-backend
994         possibilities.
995         (gnus-sync-save): Remove unnecessary message.
996         (gnus-sync-read): Optimize and show what groups were skipped.
997
998 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
999
1000         Minor bug fixes for gnus-sync.el.
1001
1002         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
1003         read the sync on get-new-news.
1004
1005         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
1006         quiet.
1007
1008         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
1009
1010 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
1011
1012         Make saving and restoring of hidden threads work with overlays.
1013         Patch applied by Ted Zlatanov.
1014
1015         * gnus-sum.el (gnus-hidden-threads-configuration)
1016         (gnus-restore-hidden-threads-configuration): Update to deal with text
1017         properties, rather than searching for a magic character.
1018
1019 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1020
1021         New gnus-sync.el library for synchronization of marks.
1022
1023         * gnus-sync.el: New library for synchronization of marks.
1024
1025         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1026         renamed from `gnus-registry-grep-in-list'.
1027
1028         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1029
1030         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1031
1032 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1033
1034         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1035         determining charset of text fails.
1036
1037 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1038
1039         * nnmail.el (nnmail-get-new-mail-1): Revert.
1040
1041         * nnml.el (nnml-active-number): Make sure names of newly created groups
1042         in nnml-group-alist are encoded.
1043
1044 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1045
1046         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1047         containing non-ASCII characters in active file for nnml back end.
1048
1049 2010-07-24  David Engster  <dengste@eml.cc>
1050
1051         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1052         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1053
1054 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1055
1056         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1057         tag (Bug#6654).
1058
1059 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1060
1061         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1062         the article buffer, not the summary buffer.
1063
1064 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1065
1066         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1067         Emacs 23 as well.
1068
1069 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1070
1071         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1072         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1073
1074 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1075
1076         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1077         Patch applied by Karl Fogel.
1078
1079         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1080         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1081
1082 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1083
1084         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1085         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1086         C-w still not working correctly from Article buffers; Thierry's
1087         patch to fix that will be applied after this.
1088
1089         * gnus-art.el (bookmark-make-record-function): New local variable.
1090
1091         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1092         article buffer.
1093         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1094
1095 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1096
1097         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1098         on changes in bookmark.el.
1099
1100 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1101
1102         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1103         `no-log' instead of message not to log prompt string.
1104
1105 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1106
1107         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1108         the *other* type of HTML form submission.
1109
1110 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1111
1112         * auth-source.el (auth-source-pick): If choice does not contain a
1113         questioned keyword, set the check to t.
1114
1115 2010-06-12  Romain Francoise  <romain@orebokech.com>
1116
1117         * gnus-util.el (gnus-date-get-time): Move up before first use.
1118
1119 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1120
1121         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1122         (gnus-article-edit-part): Bind it to make last part that is substituted
1123         or deleted visible.
1124         (gnus-mime-display-single): Buttonize part of which id equals to
1125         gnus-mime-buttonized-part-id.
1126
1127 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1128
1129         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1130         (gnus-dd-mmm): Use gnus-date-get-time.
1131         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1132         simplify logic.
1133         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1134         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1135
1136 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1137
1138         * auth-source.el (top): Autoload `secrets-list-collections',
1139         `secrets-create-item', `secrets-delete-item'.
1140         (auth-sources): Fix tag string.
1141         (auth-get-source, auth-source-retrieve, auth-source-create)
1142         (auth-source-delete): New defuns.
1143         (auth-source-pick): Rewrite in order to avoid 2 passes.
1144         (auth-source-forget-user-or-password): New parameter USERNAME.
1145         (auth-source-user-or-password): New parameters CREATE-MISSING and
1146         DELETE-EXISTING.  Retrieve password interactively, if needed.
1147
1148 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1149
1150         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1151         deleting unused directories when gnus-expert-user is t.
1152
1153 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1154
1155         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1156         for each temp file when gnus-article-browse-delete-temp is ask.
1157
1158 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1159
1160         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1161         Lisp calls to delete-backward-char by calls to delete-char.
1162
1163 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1164
1165         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1166
1167 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1168
1169         * password-cache.el (password-cache-remove): Fix docstring.
1170
1171 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1172
1173         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1174         article unless decoding article to be saved.
1175
1176 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1177
1178         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1179         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1180         generated within the mm-with-unibyte-current-buffer macro.
1181
1182 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1183
1184         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1185         to nil when we're in a mml-preview buffer and no group is selected.
1186
1187 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1188
1189         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1190         when catching the `C-g'.  Reported by "Leo".
1191
1192 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1193
1194         * message.el (message-forward-make-body-plain)
1195         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1196         multibyte-string-p.
1197
1198         * lpath.el: Revert.
1199
1200 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1201
1202         * message.el (message-forward-make-body-mml): Assume original message
1203         is multibyte string; error on unibyte.
1204         (message-forward-make-body-plain): Ditto; don't add excessive newline
1205         in body end.
1206
1207         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1208
1209 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1210
1211         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1212         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1213
1214 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1215
1216         * mm-extern.el (mm-extern-url): Don't use
1217         mm-with-unibyte-current-buffer.
1218         (mm-extern-cache-contents): Use with-current-buffer instead of
1219         save-excursion + set-buffer.
1220
1221 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1222
1223         * mm-util.el (mm-emacs-mule): Remove.
1224
1225 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1226
1227         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1228         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1229         change.
1230
1231 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1232
1233         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1234         bind the default value of enable-multibyte-characters to nil.
1235
1236 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1237
1238         * message.el (message-forward-make-body-plain)
1239         (message-forward-make-body-mml):
1240         Don't use mm-with-unibyte-current-buffer.
1241
1242 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1243
1244         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1245
1246 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1247
1248         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1249         (Bug#5592).
1250
1251 2010-05-07  Julien Danjou  <julien@danjou.info>
1252
1253         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1254         it to mm-pipe-part.
1255
1256         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1257         it is given.
1258
1259 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1260
1261         * binhex.el (binhex-decode-region-internal)
1262         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1263         (dns-query)
1264         * nnweb.el (nnweb-gmane-search)
1265         * pgg-parse.el (pgg-parse-armor)
1266         * pgg.el (pgg-verify-region)
1267         * sha1.el (sha1-string-external)
1268         * uudecode.el (uudecode-decode-region-internal)
1269         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1270         XEmacs.
1271
1272         * gnus-art.el (gnus-article-browse-html-parts)
1273         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1274         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1275         make-temp-file.
1276
1277         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1278         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1279         compiling.
1280
1281         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1282         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1283         XEmacs when compiling.
1284
1285         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1286         gnus-pick-mode-off-hook for XEmacs when compiling.
1287         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1288         gnus-binary-mode-off-hook for XEmacs when compiling.
1289
1290         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1291         nil if char-charset is not available.
1292
1293         * imap.el (imap-disable-multibyte)
1294         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1295         macros.
1296
1297         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1298         instead of encode-coding-string.
1299
1300         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1301         'xemacs) instead of mm-emacs-mule to switch function definitions.
1302         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1303
1304         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1305         bind temporary-file-directory for XEmacs;
1306         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1307         timer-set-function for XEmacs 21.4 and SXEmacs;
1308         bind timer-list for XEmacs 21.4 and SXEmacs;
1309         fbind char-charset and find-charset-region for non-Mule XEmacs;
1310         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1311         encode-coding-region and encode-coding-string for XEmacs having no
1312         file-coding feature.
1313
1314 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1315
1316         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1317
1318 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1319
1320         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1321         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1322
1323 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1324
1325         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1326         alias `jka-compr-delete-temp-file' no longer exists.
1327
1328 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1329
1330         Use define-minor-mode in Gnus where applicable.
1331         * mml.el (mml-mode): Use define-minor-mode.
1332         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1333         (gnus-undo-mode): Use define-minor-mode.
1334         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1335         (gnus-dead-summary-mode): Use define-minor-mode.
1336         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1337         Initialize in declaration.
1338         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1339         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1340         (gnus-mailing-list-mode): Use define-minor-mode.
1341         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1342         (gnus-draft-mode): Use define-minor-mode.
1343         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1344         (gnus-dired-mode): Use define-minor-mode.
1345
1346 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1347
1348         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1349         handles on recursive mml-to-mime translation and check them for
1350         boundary delimiter collisions.  Reported by Greg Troxel.
1351
1352 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1353
1354         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1355
1356 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1357
1358         * mm-util.el (mm-find-buffer-file-coding-system):
1359         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1360
1361 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1362
1363         * message.el (message-generate-headers): Record insertion of optional
1364         headers as well.  Otherwise the check to prevent repeated insertion of
1365         optional headers is a no-op.
1366
1367 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1368
1369         * smime.el: Don't mention CVS.
1370
1371         * nnrss.el (nnrss-fetch): Don't mention CVS.
1372
1373         * nnir.el: Don't mention CVS.
1374
1375 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1376
1377         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1378
1379 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1380
1381         * lpath.el: Fbind bookmark-default-handler,
1382         bookmark-get-bookmark-record, bookmark-make-record-default,
1383         bookmark-prop-get for Emacs <23 and XEmacs.
1384
1385 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1386
1387         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1388         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1389         Use with-current-buffer to silence the byte-compiler.
1390         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1391         bother to require `gnus'.
1392         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1393
1394 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1395
1396         * gnus-sum.el (gnus-summary-bookmark-make-record)
1397         (gnus-summary-bookmark-jump): New functions.
1398         (gnus-summary-mode): Setup bookmark support.
1399
1400 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1401
1402         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1403         if set.
1404
1405 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1406
1407         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1408         gnus-article-browse-html-save-cid-image; make it work recursively for
1409         forwarded messages as well.
1410         (gnus-article-browse-html-parts): Work when prefix arg is given.
1411         (gnus-article-browse-html-article): Doc fix.
1412
1413 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1414
1415         * message.el (message-default-mail-headers):
1416         (message-default-headers): Carry the value mail-default-headers over
1417         into message-default-mail-headers, rather than message-default-headers.
1418
1419 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1420
1421         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1422         charset.
1423
1424         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1425         charset into the <meta> tag when the article is encoded to utf-8.
1426
1427 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1428
1429         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1430         directories as well.
1431         (gnus-article-browse-html-parts): Work for images that do not specify
1432         file names; delete temp directory when quitting; insert header at the
1433         right place; use file: scheme for image files.
1434
1435 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1436
1437         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1438         (gnus-article-browse-html-parts): Use it to make temporary cid image
1439         files in addition to html file so that browser may display them.
1440
1441 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1442
1443         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1444
1445 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1446
1447         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1448
1449 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1450
1451         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1452         about Secret Service API sources.  Improve Customize options.
1453         (auth-source-pick): Change to accept any number of search parameters.
1454         Implement fallbacks iteratively, not recursively.  Add scoring on the
1455         second pass and sort by score.  Call Secret Service API when needed.
1456         (auth-source-user-or-password): Use it.  Call Secret Service API
1457         directly when needed to get the user name and the password.
1458
1459 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1460
1461         * message.el (message-interactive): Doc fix.
1462         (message-qmail-inject-args): Reflow.
1463         (message-kill-to-signature): Fix typo in docstring.
1464
1465         * smiley.el (smiley-buffer): Fix typo in docstring.
1466
1467 2010-03-24  Glenn Morris  <rgm@gnu.org>
1468
1469         * mail-source.el (gnus-message): Declare.
1470         (mail-source-delete-old-incoming): Require gnus-util.
1471
1472 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1473
1474         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1475
1476         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1477
1478         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1479         password-cache's default if it is not bound.
1480         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1481         password-cache-expiry's default if it is not bound.
1482
1483         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1484         available in Emacs 21.
1485
1486         * lpath.el: Suppress compiler warnings for:
1487         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1488         XEmacs;
1489         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1490         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1491         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1492
1493 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1494
1495         * auth-source.el (auth-sources): Fix up definition so extra parameters
1496         are always inline.
1497
1498 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1499
1500         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1501         wasn't updated after mismatch.  Clear cached mailbox info correctly
1502         when uidvalidity changes.
1503         (nnimap-group-prefixed-name): New function to avoid some code
1504         duplication.
1505         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1506         (nnimap-request-group): Use it.
1507         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1508         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1509         with many imap folders.  This is done by caching the group status from
1510         the imap server persistently in a group parameter `imap-status'.  (This
1511         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1512         but not persistently, so every Gnus startup was still very slow.)
1513
1514 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1515
1516         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1517         delete the extra newline.  Otherwise editing of :string and :number
1518         types don't work.
1519
1520 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1521
1522         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1523         secrets.el dependency.
1524         (auth-sources): Add optional user name.  Add secrets.el configuration
1525         choice (unused right now).
1526
1527 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1528
1529         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1530         `gnus-registry-install-shortcuts' fill in the functions.
1531
1532         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1533         warnings.
1534         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1535         (gnus-registry-install-shortcuts): Populate and use it in a
1536         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1537
1538 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1539
1540         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1541         In-place substitutions for the group name encoding/decoding.
1542         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1543         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1544         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1545         (nnimap-update-unseen, nnimap-request-list)
1546         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1547         (nnimap-request-set-mark, nnimap-split-to-groups)
1548         (nnimap-split-articles, nnimap-request-newgroups)
1549         (nnimap-request-create-group, nnimap-request-accept-article)
1550         (nnimap-request-delete-group, nnimap-request-rename-group)
1551         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1552         `encoded-mbx' for consistency.
1553         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1554         variable `imap-current-mailbox'.
1555
1556         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1557         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1558
1559 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1560
1561         * pop3.el (pop3-display-message-size-flag): Display message size byte
1562         counts during POP3 download.
1563         (pop3-movemail): Use it.
1564         (pop3-list): Implement listing of available messages.
1565
1566 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1567
1568         * nnir.el (nnir-get-article-nov-override-function): New function to
1569         override the normal NOV retrieval.
1570         (nnir-retrieve-headers): Use it.
1571
1572 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1573
1574         * auth-source.el (netrc-machine-user-or-password): Autoload.
1575
1576 2010-03-19  Glenn Morris  <rgm@gnu.org>
1577
1578         Stop message.el from loading about 40 libraries it doesn't always need.
1579         The general approach is to autoload rather than require, and to
1580         require in the specific functions rather than the file.  (Bug#5642)
1581
1582         * gmm-utils.el: Don't require wid-edit.
1583         (widget-create-child-value, widget-convert, widget-default-get):
1584         Autoload.
1585
1586         * gnus-util.el: Don't require time-date, netrc.
1587         (message-fetch-field, gnus-group-name-decode): Declare rather than
1588         autoloading.
1589         (gnus-fetch-field): Require message.
1590         (gnus-decode-newsgroups): Require gnus-group.
1591
1592         * ietf-drums.el: Don't require time-date.
1593
1594         * message.el: Don't require hashcash, canlock, ecomplete.
1595         Do require mail-utils.  Require nnheader only when compiling.
1596         (smtpmail-default-smtp-server): Remove declaration.
1597         (message-send-mail-function): Check smtpmail-default-smtp-server
1598         is bound rather than requiring smtpmail.
1599         (message-auto-save-directory, message-insert-signature): Use
1600         expand-file-name rather than nnheader-concat.
1601         (nnheader-insert-file-contents): Autoload.
1602         (hashcash-wait-async): Declare.
1603         (message-send-mail): Only call gnus-setup-posting-charset if
1604         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1605         (message-send-mail-with-sendmail): Require sendmail.
1606         (canlock-password, canlock-password-for-verify): Declare.
1607         (message-canlock-password): Require canlock.
1608         (nnheader-get-report): Autoload.
1609         (gnus-setup-posting-charset): Declare.
1610         (message-send-news): Require gnus-msg.
1611         (message-make-references, message-make-in-reply-to): Use mail-header-id
1612         rather than the alias mail-header-message-id.
1613         (ecomplete-add-item, ecomplete-save): Declare.
1614         (message-put-addresses-in-ecomplete): Require ecomplete.
1615         (ecomplete-display-matches): Autoload.
1616
1617         * mm-decode.el: Don't require mailcap, gnus-util.
1618         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1619         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1620         Autoload.
1621         (mailcap-mime-extensions): Declare.
1622
1623         * mm-encode.el: Don't require mailcap.
1624         (mailcap-extension-to-mime): Autoload.
1625
1626         * mml-sec.el: Don't require password-cache.
1627
1628         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1629         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1630         (mml-minibuffer-read-type): Require mailcap.
1631         (mml-preview): Require gnus-msg.
1632
1633         * mml1991.el: Require password-cache.
1634         (password-cache-expiry): Remove declaration.
1635
1636         * mml2015.el: Require password-cache.
1637         (password-cache-expiry): Remove declaration.
1638
1639         * nneething.el (mailcap): Require mailcap.
1640
1641         * nnheader.el (declare-function): Add compatibility stub.
1642         (message-remove-header): Declare rather than autoload.
1643         (nnheader-replace-header): Require message.
1644
1645         * nnimap.el (declare-function): Add compatibility stub.
1646         (netrc-parse, netrc-machine-user-or-password): Declare.
1647         (nnimap-open-connection): Require netrc.
1648
1649         * nntp.el (declare-function): Add compatibility stub.
1650         (netrc-parse, netrc-machine, netrc-get): Declare.
1651         (nntp-send-authinfo): Require netrc.
1652
1653         * rfc2047.el: Don't require qp.
1654         (quoted-printable-encode-region, quoted-printable-decode-string):
1655         Autoload.
1656
1657         * sieve-mode.el: Don't require easymenu.
1658         (easy-menu-add-item): Autoload it.
1659
1660         * spam-stat.el (time-to-number-of-days): Autoload it.
1661
1662 2010-03-19  Glenn Morris  <rgm@gnu.org>
1663
1664         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1665
1666 2010-03-18  Glenn Morris  <rgm@gnu.org>
1667
1668         * hashcash.el (declare-function): Remove duplicate definition.
1669
1670 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1671
1672         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1673         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1674         value if any backslash escapes).
1675
1676 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1677
1678         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1679         if it is available.  (bug#5647)
1680
1681         * lpath.el: Suppress compiler warning for coding-system-from-name for
1682         Emacs 21 and XEmacs.
1683
1684 2010-03-14  Juri Linkov  <juri@jurta.org>
1685
1686         * hmac-def.el:
1687         * hmac-md5.el:
1688         * netrc.el: Fix keywords.
1689
1690 2010-02-26  Glenn Morris  <rgm@gnu.org>
1691
1692         * message.el (message-send-mail-function): Change the default, so that
1693         it inherits from a customized send-mail-function.  (Bug#5643)
1694
1695 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1696
1697         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1698         shell-command-to-string signals an error (bug#5299).
1699
1700 2010-02-24  Glenn Morris  <rgm@gnu.org>
1701
1702         * message.el (message-smtpmail-send-it)
1703         (message-send-mail-with-mailclient): Doc fixes.
1704
1705 2010-02-16  Glenn Morris  <rgm@gnu.org>
1706
1707         * message.el (message-default-mail-headers): Change the default value
1708         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1709
1710 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1711
1712         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1713         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1714
1715 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1716
1717         * time-date.el (date-to-time): Doc fix (Bug#5408).
1718
1719 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1720
1721         * message.el (message-mail): Just pass yank-action on to message-setup.
1722         (message-setup): Handle (FUN . ARGS) form of yank-action.
1723         (message-with-reply-buffer, message-widen-reply)
1724         (message-yank-original): Handle non-buffer values of
1725         message-reply-buffer (Bug#4080).
1726         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1727
1728 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1729
1730         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1731         Fix typo in docstring.
1732
1733 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1734
1735         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1736         response.
1737
1738 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1739
1740         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1741
1742         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1743
1744         * message.el (message-check-news-header-syntax): Protect against a
1745         string that `rfc822-addresses' returns when parsing fails.
1746
1747 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1748
1749         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1750         (gnus-previous-char-property-change): New functions.
1751
1752         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1753
1754 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1755
1756         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1757         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1758
1759 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1760
1761         * message.el (message-exchange-point-and-mark): Rework last change to
1762         avoid using optional arg of exchange-point-and-mark, for backward
1763         compatibility.
1764
1765 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1766
1767         * message.el (message-exchange-point-and-mark): Call
1768         exchange-point-and-mark with an argument rather than setting
1769         mark-active by hand (Bug#5175).
1770
1771 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1772
1773         * nntp.el (nntp-service-to-port): Work for service expressed with
1774         numeric string; replace [:digit:] with [0-9] for XEmacs.
1775
1776 2009-12-17  Glenn Morris  <rgm@gnu.org>
1777
1778         * gnus-group.el (gnus-bug-group-download-format-alist):
1779         Change emacs entry to debbugs.gnu.org.  Bump :version.
1780
1781 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1782
1783         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1784
1785 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1786
1787         * message.el (message-info): Explain why we use `Info-goto-node'.
1788
1789 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1790
1791         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1792
1793 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1794
1795         * message.el (message-completion-in-region): New compatibility function.
1796         (message-expand-group): Use it.
1797
1798 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1799
1800         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1801         with no unread article should be listed if the 2nd arg `predicate' is
1802         given.
1803
1804 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1805
1806         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1807
1808 2009-11-29  Juri Linkov  <juri@jurta.org>
1809
1810         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1811         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1812         on `gnus-recenter'. (Bug#4698, Bug#4981)
1813
1814 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1815
1816         * sha1.el (sha1-string-external): default-directory "/" in case
1817         otherwise non-existent.  process-connection-type pipe for touch of
1818         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1819
1820 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1821
1822         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1823         it's comms related and sgml-mode.el has "comm" on that basis too.
1824
1825 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1826
1827         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1828         containing tspecial characters if they have been already quoted.
1829
1830 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1831
1832         * dns-mode.el (auto-mode-alist): Purecopy string.
1833
1834 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1835
1836         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1837
1838 2009-10-24  Glenn Morris  <rgm@gnu.org>
1839
1840         * gnus-art.el (help-xref-stack-item): Define for compiler.
1841
1842 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1843
1844         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1845
1846 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1847
1848         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1849
1850 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1851
1852         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1853         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1854
1855 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1856
1857         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1858         (gnus-overlays-in): New alias to overlays-in.
1859
1860         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1861         gnus-overlay-get, and gnus-delete-overlay.
1862         (gnus-summary-show-thread): Make it work as well for systems in which
1863         next-single-char-property-change is not available.
1864         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1865
1866         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1867         (gnus-overlay-get): New alias to extent-property.
1868         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1869
1870         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1871         SXEmacs.
1872
1873         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1874         SXEmacs.
1875
1876 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1877
1878         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1879
1880 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1881
1882         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1883         and XEmacs that don't have `remove-overlays'.
1884
1885 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1886
1887         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1888         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1889         selective display.  Use overlays instead.
1890
1891 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1892
1893         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1894
1895 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1896
1897         * spam-stat.el (spam-stat-load): Fix typo in message.
1898
1899 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
1900
1901         * dig.el (dig-invoke): Fix typo in docstring.
1902         (query-dig): Reflow docstring.
1903
1904 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1905
1906         * gnus-art.el (gnus-article-encrypt-body):
1907         * message.el (message-check-recipients):
1908         * mm-util.el (mm-codepage-setup):
1909         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1910         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1911
1912 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1913
1914         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1915         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1916         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1917         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1918         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1919
1920 2009-09-21  Kevin Ryde  <user42@zip.com.au>
1921
1922         * dig.el: Add "Keywords: comm", as per net-utils.el.
1923
1924 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1925
1926         * dig.el (dig-mode): Use define-derived-mode.
1927
1928 2009-09-19  Glenn Morris  <rgm@gnu.org>
1929
1930         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
1931
1932 2009-09-18  Glenn Morris  <rgm@gnu.org>
1933
1934         * gnus-diary.el (gnus-diary-check-message):
1935         * message.el (message-insert-formatted-citation-line):
1936         * nnbabyl.el (top-level):
1937         * nndiary.el (nndiary-schedule):
1938         Fix typos in condition-case handlers.
1939
1940 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1941
1942         * gnus-art.el (gnus-article-edit-part): Work for the buffer
1943         configuration that provides the sole article window in a frame;
1944         position point correctly after deleting a part.
1945
1946 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
1947
1948         * spam.el (spam-unregister-on-reregister): Add boolean variable.
1949         (spam-resolve-registrations-routine): Use it to unregister articles
1950         that change status.
1951
1952 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1953
1954         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
1955         with XEmacs.
1956         (parse-time-string-chars): Use it.
1957
1958 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
1959
1960         * imap.el (imap-interactive-login): Better messages.
1961         (imap-open): Fix bug with renamed buffer on reconnect.
1962         (imap-authenticate): Add buffer-local imap-last-authenticator variable
1963         for easier debugging and cleaner code.  On successful (guessed based on
1964         server capabilities) secondary authentication, set imap-state
1965         correctly.
1966         (imap-last-authenticator): Define imap-last-authenticator as a variable
1967         to avoid warnings.
1968
1969 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1970
1971         * nnrss.el (nnrss-request-article): Remove binding of
1972         default-enable-multibyte-characters that has gotten needless by
1973         the 2007-07-13 change in rfc2047-encode-message-header.
1974
1975         * mml.el (mml-insert-multipart): Error on the message header.
1976         (mml-insert-part): Error on the message header; position point at
1977         the end of a MIME tag.
1978
1979 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1980
1981         * time-date.el (autoload): Expand define-obsolete-function-alias into
1982         defalias and make-obsolete for old Emacsen that Gnus supports.
1983         (with-no-warnings): Define it for old Emacsen.
1984         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
1985         is available.
1986         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
1987         float-time is available; suppress compile warning for time-to-seconds.
1988
1989         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
1990         (gnus-float-time): Alias to float-time if it exists.
1991
1992         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
1993         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
1994         float-time is available; suppress compile warning for time-to-seconds.
1995
1996         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
1997         XEmacs.
1998
1999 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
2000
2001         * imap.el (imap-message-map): Docstring fix.
2002
2003 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2004
2005         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
2006         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
2007         Add the optional argument `encoding' that overrides the default.
2008
2009         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
2010         mm-encode-buffer.
2011
2012 2009-09-04  Glenn Morris  <rgm@gnu.org>
2013
2014         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2015         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2016         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2017         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2018         * mm-util.el (mm-with-unibyte-current-buffer)
2019         (mm-find-buffer-file-coding-system):
2020         * yenc.el (yenc-decode-region): Use default-value rather than
2021         default-enable-multibyte-characters.
2022
2023 2009-09-03  Glenn Morris  <rgm@gnu.org>
2024
2025         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2026         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2027         than default-enable-multibyte-characters.
2028
2029 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2030
2031         * gnus-art.el (gnus-article-read-summary-keys):
2032         Fix gnus-buffer-configuration's value temporarily used.
2033
2034 2009-09-02  Glenn Morris  <rgm@gnu.org>
2035
2036         * gnus-util.el (gnus-float-time): New function.
2037         * gnus-delay.el (gnus-delay-article):
2038         * gnus-sum.el (gnus-thread-latest-date):
2039         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2040         * nnspool.el (nnspool-request-newgroups):
2041         Use gnus-float-time rather than time-to-seconds.
2042         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2043
2044         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2045         (gnus-header-subject-face, gnus-header-newsgroups-face)
2046         (gnus-header-name-face, gnus-header-content-face):
2047         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2048         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2049         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2050         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2051         (gnus-cite-face-11):
2052         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2053         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2054         (gnus-server-closed-face, gnus-server-denied-face)
2055         (gnus-server-offline-face):
2056         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2057         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2058         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2059         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2060         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2061         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2062         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2063         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2064         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2065         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2066         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2067         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2068         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2069         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2070         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2071         (gnus-summary-high-undownloaded-face)
2072         (gnus-summary-low-undownloaded-face)
2073         (gnus-summary-normal-undownloaded-face)
2074         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2075         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2076         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2077         (gnus-splash-face):
2078         * message.el (message-header-to-face, message-header-cc-face)
2079         (message-header-subject-face, message-header-newsgroups-face)
2080         (message-header-other-face, message-header-name-face)
2081         (message-header-xheader-face, message-separator-face)
2082         (message-cited-text-face, message-mml-face):
2083         * sieve-mode.el (sieve-control-commands-face)
2084         (sieve-action-commands-face, sieve-test-commands-face)
2085         (sieve-tagged-arguments-face):
2086         * spam.el (spam-face):
2087         Mark face aliases with "-face" in the name as obsolete.
2088
2089 2009-09-01  Glenn Morris  <rgm@gnu.org>
2090
2091         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2092         than goto-line.
2093
2094 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2095
2096         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2097         Don't move point if the command is invoked inside the message header.
2098
2099 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2100
2101         * imap.el (imap-send-command): Simplify.
2102         (imap-wait-for-tag): point-max -> buffer-size.
2103
2104 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2105
2106         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2107         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2108         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2109         * nnir.el (nnir-swish-e-index-file):
2110         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2111         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2112         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2113         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2114         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2115         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2116
2117 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2118
2119         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2120         Don't save excursion.
2121
2122 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2123
2124         * nnheader.el (nnheader-find-file-noselect):
2125         * mm-util.el (mm-insert-file-contents):
2126         Use (default-value 'major-mode) instead of default-major-mode.
2127
2128 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2129
2130         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2131
2132 2009-08-26  Glenn Morris  <rgm@gnu.org>
2133
2134         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2135         than placing in files.el.
2136
2137 2009-08-25  Glenn Morris  <rgm@gnu.org>
2138
2139         * nnir.el (top-level): Don't require cl at run-time.
2140         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2141         Replace cl-function substitute with gnus-replace-in-string.
2142         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2143         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2144         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2145         simplified expansions.
2146
2147 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2148
2149         * dig.el (dig): Add autoload cookie.
2150
2151 2009-08-22  Glenn Morris  <rgm@gnu.org>
2152
2153         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2154         goto-line.
2155
2156 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2157
2158         * parse-time.el (parse-time-string-chars): Save match data.
2159
2160 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2161
2162         * parse-time.el (parse-time-string-chars): Compute using character
2163         classes, to handle non-ascii characters (Bug#3190).
2164
2165 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2166
2167         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2168
2169         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2170         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2171         (gnus-mm-display-part, gnus-mime-display-single)
2172         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2173         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2174
2175         * gnus-sum.el
2176         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2177         (gnus-summary-move-article): Add expirable mark to articles copied or
2178         moved to group that has auto-expire turned on if the option is non-nil.
2179
2180 2009-07-24  Glenn Morris  <rgm@gnu.org>
2181
2182         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2183         Fix typo.  (Bug#3903)
2184
2185 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2186
2187         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2188         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2189         that should not be used for draft articles.
2190         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2191         that has no concern in minor mode keys.
2192         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2193         Abolish.
2194
2195 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2196
2197         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2198         article without making inquiry to a user for unknown encoding.
2199
2200         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2201         (nnmaildir--scan): Assume i-node and device number that file-attributes
2202         returns might be cons-cell.
2203
2204         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2205
2206         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2207
2208 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2209
2210         * auth-source.el: Remove docs now in auth.texi.  Don't use
2211         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2212         `auth-source-hide-passwords' and use them.
2213
2214 2009-07-15  Glenn Morris  <rgm@gnu.org>
2215
2216         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2217
2218 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2219
2220         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2221         excessive whitespace from the default values of title and description.
2222
2223 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2224
2225         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2226         mail-fetch-field to fetch Content-Description header in order to
2227         exclude newlines.
2228
2229 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2230
2231         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2232         format used by GnuPG 2.0.11.
2233
2234 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2235
2236         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2237         to deleted part.
2238
2239 2009-05-30  David Engster  <dengste@eml.cc>
2240
2241         * nnmairix.el: Remove old documentation in the commentary block.
2242         (nnmairix-request-group): Do not update active file for nnml back ends.
2243         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2244         end so that overview files are ignored.
2245         (nnmairix-update-groups): Make updating the groups more robust by using
2246         marks.
2247         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2248         with dollar characters in message-id.
2249
2250 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2251
2252         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2253         2008-12-25 in dns.el.
2254
2255 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2256
2257         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2258         could happen if the text is only composed of spaces and/or tabs.
2259
2260 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2261
2262         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2263         when sending a queued message to avoid extra mml tags.
2264
2265 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2266
2267         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2268
2269 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2270
2271         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2272         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2273         rmail-toggle-header for XEmacs;
2274         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2275
2276 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2277
2278         * gnus-dired.el: Remove autoload for gnus-setup-message.
2279         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2280         displaying Gnus logo; always use compose-mail.
2281
2282 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2283
2284         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2285
2286 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2287
2288         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2289         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2290         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2291         available.
2292         (gnus-nocem-epg-verify): New function.
2293
2294 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2295
2296         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2297
2298 2009-02-15  Glenn Morris  <rgm@gnu.org>
2299
2300         * gnus-util.el (rmail-insert-rmail-file-header)
2301         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2302         autoloads.
2303         (rmail-default-rmail-file): Remove unnecessary declaration.
2304         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2305
2306 2009-02-14  Glenn Morris  <rgm@gnu.org>
2307
2308         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2309         variable (only used in gnus-util, which declares it anyway).
2310         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2311         which was only needed by gnus-art (changed to not use it any more).
2312         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2313         only used in gnus-util, which autoloads it itself.
2314         (rmail-update-summary): Fix autoload.
2315
2316         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2317         rather than rmail-output-to-rmail-file.
2318
2319 2009-02-07  Glenn Morris  <rgm@gnu.org>
2320
2321         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2322         autoload of function that no longer exists.
2323         (rmail-toggle-header): Declare.
2324         (message-forward-rmail-make-body): Handle mbox Rmail.
2325
2326 2009-01-31  Glenn Morris  <rgm@gnu.org>
2327
2328         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2329         2009-01-09 change.
2330
2331 2009-01-31  Dave Love  <fx@gnu.org>
2332
2333         * imap.el (imap-fetch-safe): Bind debug-on-error.
2334         (imap-debug): Add imap-fetch-safe.
2335
2336 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2337
2338         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2339         (auth-source-forget-all-cached): New convenience function.
2340         (auth-source-user-or-password): Accept list of modes or a single mode.
2341
2342         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2343         auth-source modes.
2344
2345         * netrc.el (netrc-machine-user-or-password): Use list of
2346         auth-source modes.
2347
2348         * nnimap.el (nnimap-open-connection): Use list of
2349         auth-source modes.
2350
2351         * nntp.el (nntp-send-authinfo): Use list of
2352         auth-source modes.
2353
2354 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2355
2356         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2357         now.
2358
2359 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2360
2361         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2362         coding system in XEmacs; add a workaround for XEmacs.
2363
2364         * lpath.el: Fbind coding-system-aliasee.
2365
2366 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2367
2368         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2369         of current-language-environment.
2370
2371 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2372
2373         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2374         available at runtime.
2375
2376 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2377
2378         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2379
2380 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2381
2382         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2383         the greatest positive fixnum value doesn't work under an XEmacs with
2384         bignum support; use the most-positive-fixnum constant instead,
2385         available since Emacs 21.1 with cl and XEmacs 21.1.
2386
2387 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2388
2389         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2390         XEmacs gets not to work.
2391
2392 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2393
2394         * mm-util.el (mm-coding-system-priorities): Allow the value like
2395         "Japanese (UTF-8)" of current-language-environment.
2396
2397 2009-01-09  Glenn Morris  <rgm@gnu.org>
2398
2399         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2400         with last-command-event.
2401
2402 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2403
2404         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2405         in the doc string.
2406
2407         * message.el (message-fix-before-sending): Amend comment.
2408
2409 2009-01-08  Dave Love  <fx@gnu.org>
2410
2411         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2412
2413 2009-01-07  David Engster  <dengste@eml.cc>
2414
2415         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2416         simplified server definitions by converting it via
2417         gnus-server-to-method.
2418
2419 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2420
2421         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2422         parameter's operands.
2423
2424 2009-01-06  David Engster  <dengste@eml.cc>
2425
2426         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2427         primary select method (for gnus-group-mark-article-as-read).
2428
2429 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2430
2431         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2432         `(gnus)Face', not `(gnus)X-Face'.
2433
2434 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2435
2436         * mm-util.el (mm-ucs-to-char): New function.
2437
2438         * mm-url.el (mm-url-decode-entities): Use it.
2439
2440         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2441         unicode-to-char.
2442
2443 2009-01-05  Dave Love  <fx@gnu.org>
2444
2445         * time-date.el: Require cl for `declare'.
2446
2447 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2448
2449         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2450         Dave Love.
2451
2452 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2453
2454         * message.el (message-fix-before-sending): Add `eight-bit' to
2455         illegible-text check.
2456
2457 2009-01-03  Michael Olson  <mwolson@gnu.org>
2458
2459         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2460         `headers' is nil.  This can occur if the IMAP server does not have
2461         permissions to read messages from a folder, but can write new messages
2462         to the folder.
2463         (nnimap-request-article-part): Do not insert `data' if it is nil.
2464
2465         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2466         characters which will confuse `read', so skip past them.
2467
2468 2009-01-01  Dave Love  <fx@gnu.org>
2469
2470         * imap.el (imap-string-to-integer): Fix typo.
2471         (imap-fetch-safe): New function.
2472         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2473
2474         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2475
2476         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2477         (imap-parse-greeting): Fix doc strings.
2478         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2479         (imap-parse-flag-list): Make messages unique.
2480         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2481
2482         * nnimap.el: Fix author email.
2483         (nnimap-split-rule): Add FIXME comment.
2484         (nnimap-debug): Fix doc string.
2485
2486 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2487
2488         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2489
2490 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2491
2492         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2493         nslookup if resolv.conf isn't available.
2494         (dns-query): Rename from query-dns.
2495         (dns-query-cached): Rename from query-dns-cached.
2496
2497 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2498
2499         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2500         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2501         to check if those variables exist (first appeared in Emacs 18.50).
2502
2503 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2504
2505         * mm-util.el (mm-line-number-at-pos): New function.
2506
2507         * spam-report.el (spam-report-process-queue): Use it.
2508
2509 2008-12-24  David Engster  <dengste@eml.cc>
2510
2511         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2512         parameters that haven't existed as variables as buffer-local variables.
2513
2514 2008-12-23  Dave Love  <fx@gnu.org>
2515
2516         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2517         cadar.
2518
2519         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2520         imap-starttls-p.
2521         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2522
2523 2008-12-22  Dave Love  <fx@gnu.org>
2524
2525         * imap.el: Fix author email.  Doc fixes.
2526         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2527         reply.
2528
2529 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2530
2531         * spam-report.el (spam-report-gmane-max-requests): New constant.
2532         (spam-report-gmane-wait): New variable.
2533         (spam-report-gmane-ham, spam-report-gmane-spam)
2534         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2535         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2536         the server.
2537
2538         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2539         Add explanations.
2540
2541         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2542         nnheader-accept-process-output and nnheader-read-timeout if available.
2543         (pop3-movemail): Use it.
2544
2545         * message.el (message-check-news-body-syntax): Fix signature check if
2546         there's an attachment.
2547
2548 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2549
2550         * mm-util.el: Add comments to the mm- emulating functions.
2551
2552 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2553
2554         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2555         by Stephen Berman <stephen.berman@gmx.net>.
2556
2557 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2558
2559         * mm-util.el (mm-substring-no-properties): New function.
2560         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2561         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2562         (mm-string-to-multibyte): Doc fix.
2563
2564         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2565
2566 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2567
2568         * mml.el (mml-attach-file): Strip text properties from file name.
2569         (Bug#1574)
2570
2571 2008-12-16  Glenn Morris  <rgm@gnu.org>
2572
2573         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2574
2575 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2576
2577         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2578         knows since the charset specified might be a bogus alias that
2579         mm-charset-synonym-alist provides.
2580
2581 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2582
2583         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2584         "ISO_8859-1".
2585
2586         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2587
2588 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2589
2590         * mm-util.el (mm-charset-eval-alist):
2591         Define it before mm-charset-to-coding-system.
2592         (mm-charset-to-coding-system): Add optional argument `silent';
2593         define it before mm-charset-override-alist.
2594         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2595         default value if it can be used in Emacs currently running;
2596         silence mm-charset-to-coding-system.
2597
2598 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2599
2600         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2601         `allow-override' which says whether to use `mm-charset-override-alist'.
2602         (rfc2047-decode-encoded-words): Use it.
2603
2604         * mm-util.el (mm-charset-override-alist): Fix custom type;
2605         add `(gb2312 . gbk)' to choices.
2606
2607 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2608
2609         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2610         fast.
2611
2612         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2613
2614         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2615
2616 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2617
2618         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2619         on links.
2620
2621         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2622
2623 2008-12-03  Lute Kamstra  <lute@gnu.org>
2624
2625         * sha1.el: Remove leading * from docstrings of defcustoms,
2626         deffaces, defconsts and defuns.
2627
2628 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2629
2630         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2631         users' addresses that don't have domain parts.
2632         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2633         rather than message-narrow-to-head since there will be the message
2634         header separator.
2635
2636 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2637
2638         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2639         since the result is inserted in a unibyte buffer anyway.
2640         (nnimap-demule-use-string-to-multibyte): Remove.
2641         (nnimap-demule): Alias it to mm-string-to-multibyte.
2642
2643 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2644
2645         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2646         variable for debugging bug#464 and bug#1174.
2647         (nnimap-demule): Use it.
2648
2649 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2650
2651         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2652         score calculation correctly.
2653
2654 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2655
2656         * message.el (message-send-mail): Just set the buffer to unibyte
2657         rather than use mm-with-unibyte-current-buffer which does a lot more.
2658         (message-send-mail-partially): Don't bother with
2659         mm-with-unibyte-current-buffer since it's already been made unibyte by
2660         message-send-mail.
2661
2662 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2663
2664         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2665
2666 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2667
2668         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2669
2670 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2671
2672         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2673         require itself and to remove `with-no-warnings'.
2674
2675 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2676
2677         * starttls.el (starttls-any-program-available): Get the name of the
2678         available TLS layer program.
2679         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2680         well as the host name in the "opening" message.
2681
2682         * auth-source.el (auth-source-cache, auth-source-do-cache)
2683         (auth-source-user-or-password): Cache passwords and logins by default,
2684         allow override with `auth-source-do-cache'.
2685         (auth-source-forget-user-or-password): Allow users to remove cache
2686         entries if needed.
2687
2688 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2689
2690         * md4.el (md4-buffer): Fix typo in docstring.
2691         (md4, md4-64): Doc fixes.
2692         (md4-pack-int32): Reflow docstring.
2693
2694 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2695
2696         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2697         condition-case to only the forward-sexp call.
2698
2699 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2700
2701         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2702         quotes contained.  Make it more robust regardless by an extra
2703         condition-case wrapper.
2704
2705 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2706
2707         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2708
2709 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2710
2711         * nnml.el (nnml-request-expire-articles): Check if the function set to
2712         `nnmail-expiry-target' returns the symbol `delete'.
2713
2714         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2715
2716         * nnmail.el (nnmail-expiry-target): Fix custom type.
2717
2718 2008-10-02  Glenn Morris  <rgm@gnu.org>
2719
2720         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2721         Silence compiler warning.
2722
2723 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2724
2725         * tls.el (open-tls-stream): Show the actual command being
2726         executed, instead of the format string.
2727
2728 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2729
2730         * lpath.el: Fbind codepage-setup for Emacs 23.
2731
2732 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2733
2734         * mml.el (mml-menu): Don't assume mml2015 is bound.
2735
2736 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2737
2738         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2739         exists.
2740
2741 2008-09-27  Glenn Morris  <rgm@gnu.org>
2742
2743         * gnus-util.el (mail-header-remove-comments): Autoload it.
2744
2745 2008-09-27  Andreas Schwab  <schwab@suse.de>
2746
2747         * gnus-util.el (gnus-split-references): Strip comments.
2748         (gnus-parent-id): Likewise.
2749
2750 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2751
2752         * message.el (message-confirm-send): Fix version.
2753
2754 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2755
2756         * message.el (message-idna-to-ascii-rhs-1): Use
2757         mail-extract-address-components rather than mail-header-parse-addresses
2758         that is an alias by default to ietf-drums-parse-addresses that does not
2759         support non-ASCII names in headers' contents.
2760
2761 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2762
2763         * message.el (message-confirm-send): Fixed variable documentation to
2764         avoid the "y/n" wording.
2765
2766 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2767
2768         * message.el (message-set-auto-save-file-name): Save to a different
2769         filename so multiple messages (especially drafts) can be recovered.
2770
2771 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2772
2773         * message.el (message-confirm-send): Add appropriate version.
2774
2775 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2776
2777         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2778         defvar.
2779
2780 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2781
2782         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2783         (mm-pkcs7-enveloped-magic): Ditto.
2784
2785 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2786
2787         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2788         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2789
2790 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2791
2792         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2793         default, it's better.
2794
2795 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2796
2797         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2798         summary line gnus-number property and ignore them (with a warning
2799         message).
2800
2801 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2802
2803         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2804         macro caddr in the interactive form since it won't be expanded.
2805
2806 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2807
2808         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2809         `charset'; fix name of function called recursively.
2810         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2811
2812 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2813
2814         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2815         (gnus-mime-set-charset-parameters): New function.
2816         (gnus-mime-view-part-as-charset): Use it to correctly display part
2817         specifying wrong charset.
2818
2819 2008-09-08  David Engster  <dengste@eml.cc>
2820
2821         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2822         in completing-read for back end server.
2823
2824 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2825
2826         * message.el (message-confirm-send): New variable to confirm sending a
2827         message.
2828         (message-send): Use it.
2829
2830 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2831
2832         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2833
2834 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2835
2836         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2837
2838 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2839
2840         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2841         prevent tracking too many groups.
2842         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2843         Use it.
2844
2845 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2846
2847         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2848         moving point to the bottom of the window in order to avoid recentering.
2849
2850 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2851
2852         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2853
2854         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2855         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2856         (gnus-article-beginning-of-window): Fix calculation.
2857
2858 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2859
2860         * gnus-msg.el (gnus-summary-supersede-article)
2861         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2862         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2863         message header.
2864
2865 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2866
2867         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2868         pending output coming after the status change.
2869
2870 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2871
2872         * message.el:
2873         * gnus-start.el:
2874         * gnus-registry.el: Remove VMS support.
2875
2876 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2877
2878         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2879         macro.
2880         (rfc2104-hash): Use it.
2881
2882 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2883
2884         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2885         (gnus-summary-sort-by-most-recent-date): New commands.
2886         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2887         and menu entries.
2888
2889 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2890
2891         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2892         don't redisplay article for raw contents; remove plural articles stuff.
2893
2894         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2895         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2896         on gnus-summary-save-article; display results properly.
2897
2898 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2899
2900         * lpath.el: No need to fbind ns-focus-frame.
2901
2902 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2903
2904         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2905
2906 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2907
2908         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2909         gnus-save-all-headers.
2910
2911 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2912
2913         * gnus-util.el (ns-focus-frame): Remove declaration.
2914         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2915         like x.
2916
2917 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2918
2919         * rfc2104.el (rfc2104-zero): Delete defconst.
2920         (rfc2104-hex-alist): Likewise.
2921         (rfc2104-hex-to-int): Delete func.
2922         (rfc2104-hexstring-to-bitstring): Likewise.
2923         (rfc2104-nybbles): New defconst.
2924         (rfc2104-hash): Rewrite for speed.
2925
2926 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2927
2928         * tls.el (open-tls-stream): Make it work with the 2nd argument
2929         BUFFER that is a string but does not exist as a buffer object, as
2930         mentioned in the doc-string.
2931
2932 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2933
2934         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
2935         SXEmacs.
2936
2937 2008-07-16  Glenn Morris  <rgm@gnu.org>
2938
2939         * gnus-util.el (ns-focus-frame): Declare for compiler.
2940
2941 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2942
2943         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
2944         set as a group parameter.
2945         (gnus-summary-save-in-pipe): Work when it is called independently.
2946         (gnus-summary-pipe-to-muttprint): Don't modify
2947         gnus-summary-pipe-output-default-command.
2948
2949 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2950
2951         * message.el (message-send-mail-with-sendmail):
2952         Display the error message.
2953
2954 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2955
2956         * gnus-art.el (gnus-default-article-saver):
2957         Add gnus-summary-save-in-pipe to choices.
2958         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
2959         gnus-summary-pipe-output-default-command as the default command.
2960         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
2961         instead of gnus-last-shell-command.
2962
2963         * gnus-sum.el (gnus-summary-pipe-output-default-command):
2964         New user option.
2965         (gnus-summary-muttprint-program): Mention the value will be changed.
2966         (gnus-summary-save-article): Force showing of all headers.
2967         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
2968
2969 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
2970
2971         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
2972
2973 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
2974
2975         * nnimap.el (nnimap-id):
2976         * sieve-manage.el (sieve-manage-open): Doc fixes.
2977
2978 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
2979
2980         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
2981         if available.
2982
2983 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2984
2985         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
2986
2987         * nnkiboze.el (nnkiboze-generate-group):
2988         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
2989
2990         * nnmairix.el: Require CL.
2991
2992 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2993
2994         * dgnushack.el: Autoload get-display-table and put-display-table for
2995         XEmacs 21.5.
2996
2997         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
2998         21.4 and SXEmacs.
2999
3000 2008-06-15  David Engster  <dengste@eml.cc>
3001
3002         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
3003
3004 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
3005
3006         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
3007         New macros that expand to an `aset'/`aref' call under Emacs, and to a
3008         runtime choice under XEmacs.
3009
3010         * gnus-sum.el (gnus-summary-set-display-table):
3011         Use `gnus-put-display-table', `gnus-get-display-table',
3012         `gnus-set-display-table' for the display table, instead of `aset'.
3013
3014         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3015         Use `gnus-put-display-table', `gnus-get-display-table',
3016         `gnus-set-display-table' for the display table.
3017
3018 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3019
3020         * nnmairix.el: Add autoloads.
3021
3022 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3023
3024         * nnmairix.el (nnmairix-delete-recreate-group)
3025         (nnmairix-update-and-clear-marks): Fix error messages.
3026
3027 2008-06-14  David Engster  <dengste@eml.cc>
3028
3029         * nnmairix.el: Upgrade to version 0.6.
3030         (nnmairix-group-toggle-propmarks-this-group)
3031         (nnmairix-group-toggle-readmarks-this-group)
3032         (nnmairix-group-delete-recreate-this-group)
3033         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3034         (nnmairix-remove-tick-mark-original-article): New commands.
3035         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3036         (nnmairix-propagate-marks-to-nnmairix-groups)
3037         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3038         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3039         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3040         functions needed for marks propagation and manipulation of read marks.
3041         (nnmairix-update-groups): New function.
3042         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3043         (nnmairix-determine-original-group-from-registry)
3044         (nnmairix-determine-original-group-from-path)
3045         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3046         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3047         New helper functions.
3048         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3049         keystrokes for new commands.
3050         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3051         (nnmairix-request-group): Check allow-fast group parameter.
3052         (nnmairix-request-create-group): Set allow-fast group parameter if
3053         nnmairix-allowfast-default is set.
3054         (nnmairix-close-group): Propagate marks upon closing if needed.
3055         (nnmairix-group-toggle-threads-this-group): Use new.
3056         nnmairix-group-toggle-parameter helper function.
3057         (nnmairix-search): Better check for empty search result.
3058         (nnmairix-goto-original-article): Use new helper functions for
3059         determining original article.
3060         (nnmairix-show-original-article): Make sure message-id is in brackets.
3061         (nnmairix-call-mairix-binary): Change variable name.
3062         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3063         helper function.
3064         (nnmairix-widget-toggle-activate): Fix doc string.
3065
3066 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3067
3068         * nnir.el: Require edmacro when compiling with XEmacs.
3069         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3070         available in Emacs 21.
3071
3072 2008-06-11  Glenn Morris  <rgm@gnu.org>
3073
3074         * gnus-util.el (x-focus-frame):
3075         * gnus.el (image-size):
3076         * mm-decode.el (image-size): Declare.
3077
3078         * gnus-picon.el (declare-function): Add compat definition.
3079         (image-size): Declare.
3080
3081         * gnus-group.el (tool-bar-map):
3082         * gnus-sum.el (tool-bar-map): Define for compiler.
3083
3084         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3085
3086         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3087
3088         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3089         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3090         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3091         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3092         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3093         * sieve-manage.el, spam-report.el, spam.el:
3094         Remove unnecessary eval-and-compile of autoloads.
3095
3096 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3097
3098         * auth-source.el: Precise Tramp doc.
3099
3100 2008-06-07  Glenn Morris  <rgm@gnu.org>
3101
3102         * nnmairix.el: Remove unnecessary eval-when-compile.
3103
3104 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3105
3106         * lpath.el: Fbind propertize for XEmacs 21.4.
3107
3108 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3109
3110         * nnir.el: Move here from ../contrib.
3111
3112 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3113
3114         * gnus-util.el (gnus-read-shell-command): New function.
3115         * mm-decode.el (mm-pipe-part):
3116         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3117
3118 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3119
3120         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3121
3122 2008-06-03  Glenn Morris  <rgm@gnu.org>
3123
3124         * pop3.el (nnheader-accept-process-output): Autoload it.
3125
3126 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3127
3128         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3129         are not 2-digit hexadecimal characters that follow `%'s.
3130
3131 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3132
3133         * message.el (message-bogus-recipient-p): Fix type in doc string.
3134         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3135         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3136         Improve custom options.
3137         (message-bogus-recipient-p): Adjust accordingly.
3138
3139 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3140
3141         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3142         long-form month and day names.
3143
3144 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3145
3146         * dgnushack.el: Autoload debug, eudc-expand-inline and
3147         pgg-snarf-keys-region for XEmacs.
3148
3149         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3150
3151         * nnmairix.el: Require edmacro when compiling with XEmacs.
3152
3153 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3154
3155         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3156         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3157
3158 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3159
3160         * auth-source.el: Add more docs.
3161
3162         * netrc.el (netrc-machine): Always match if the port is not given.
3163
3164 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3165
3166         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3167         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3168         retrieval faster in some cases, but might make CPU usage larger.  If
3169         this has any bad side effects, we might revert this change.
3170
3171         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3172         seems to make mail retrieval much, much faster.
3173         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3174         unconditionally.
3175
3176         * gnus-draft.el (gnus-group-send-queue): Bind
3177         message-send-mail-partially-limit to nil to avoid being prompted.
3178
3179 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3180
3181         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3182
3183         * message.el (message-bogus-address-regexp): Fix and improve custom
3184         type.
3185         (message-setup-hook): Add message-check-recipients as custom option.
3186
3187 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3188
3189         * message.el (message-cite-function): Remove bogus autoload which crept
3190         in during merge from v5-10.
3191
3192 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3193
3194         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3195
3196         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3197
3198         * auth-source.el: Preliminary Tramp docs.
3199         (auth-sources): Change the default auth-sources to use
3200         EPA .gpg files.
3201
3202 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3203
3204         * nntp.el: Autoload `auth-source-user-or-password'.
3205         (nntp-send-authinfo): Use it.
3206
3207         * nnimap.el: Autoload `auth-source-user-or-password'.
3208         (nnimap-open-connection): Use it.
3209
3210         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3211         for the gnus-message function.
3212         (auth-source-user-or-password): Use it.
3213
3214 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3215
3216         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3217         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3218         (rfc2104-hash): Use it.
3219
3220 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3221
3222         * gnus-art.el (gnus-article-toggle-truncate-lines):
3223         Don't use `iff' in docstring.
3224
3225 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3226
3227         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3228
3229         * gnus-util.el (gnus-extract-address-component-name)
3230         (gnus-extract-address-component-email): Convenience functions around
3231         `gnus-extract-address-components'.
3232
3233         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3234         Use `gnus-extract-address-component-email' to fix bug of comparing full
3235         sender name to `user-mail-address'.
3236
3237 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3238
3239         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3240         catch/throw to optimize.
3241         (gnus-registry-find-keywords): Just use member to find a keyword.
3242
3243 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3244
3245         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3246         is current before calling gnus-server-prepare.
3247         (gnus-server-setup-buffer, gnus-server-update-server)
3248         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3249
3250 2008-05-04  Juri Linkov  <juri@jurta.org>
3251
3252         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3253         (mailcap-file-default-commands): Use mailcap-replace-in-string
3254         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3255         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3256
3257 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3258
3259         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3260
3261 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3262
3263         * gnus.el: Bump version to 0.11.
3264
3265 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3266
3267         * gnus.el: No Gnus v0.10 is released.
3268
3269 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3270
3271         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3272         hooks.
3273         (gnus-update-read-articles): Speed up non-marks-using users.
3274         (gnus-use-marks): Define gnus-use-marks.
3275         (gnus-propagate-marks): Rename variable to something more sensible.
3276
3277 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3278
3279         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3280         (gmm-image-load-path-for-library): Fix typos in docstrings.
3281         (gmm-message): Reflow docstring.
3282
3283 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3284
3285         * mail-source.el (mail-source-set-1, mail-source-bind):
3286         Move auth-source code out of the macro to clean it up and fix bugs.
3287
3288 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3289
3290         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3291         by sender if it's equal to user-mail-address, it's likely to be
3292         useless.
3293
3294         * mail-source.el (mail-source-bind): Don't use user or password if they
3295         are not bound.  Unintern them if they are nil.  Don't use server unless
3296         it's bound, and default it to empty string otherwise.
3297
3298 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3299
3300         * mail-source.el: Load auth-source.el.
3301         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3302         get user name or password, if auth-sources is set up.
3303
3304         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3305         strategy of splitting with parent.
3306         (gnus-registry-split-fancy-with-parent)
3307         (gnus-registry-post-process-groups): Use it and fix prior
3308         bug (returning a list as the split result).
3309
3310         * auth-source.el (auth-sources): Remove server parameter.
3311         (auth-source-pick, auth-source-user-or-password)
3312         (auth-source-user-or-password-imap)
3313         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3314         (auth-source-user-or-password-sftp)
3315         (auth-source-user-or-password-smtp): Remove server parameter.
3316
3317 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3318
3319         * smime.el (smime-sign-region, smime-encrypt-region)
3320         (smime-decrypt-region):
3321         Remove redundant calls to `generate-new-buffer-name'.
3322
3323 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3324
3325         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3326         Don't use QP for message/rfc822.
3327         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3328
3329 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3330
3331         * sieve-manage.el (sieve-string-bytes): Remove.
3332         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3333         correct byte-length only if the process's coding-system is the same as
3334         the one used internally by Emacs to represent strings.
3335
3336 2008-04-22  Juri Linkov  <juri@jurta.org>
3337
3338         * mailcap.el (mailcap-file-default-commands): New function.
3339
3340 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3341
3342         * message.el (message-signature-separator, message-cite-function):
3343         Change custom version.
3344
3345 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3346
3347         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3348         commands.
3349         (tls-checktrust): Ditto.
3350
3351 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3352
3353         * mm-decode.el (mm-display-external): Make temp file read-only.
3354
3355 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3356
3357         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3358         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3359         `C-c C-f d'.
3360
3361 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3362
3363         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3364
3365 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3366
3367         * gnus.el: Bump version to 0.9.
3368
3369 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3370
3371         * gnus.el: No Gnus v0.8 is released.
3372
3373 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3374
3375         * mail-source.el (mail-source-value):
3376         Prefer fboundp to functionp so it works with macros as well.
3377
3378 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3379
3380         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3381         Fix last change in case the element is not even a symbol.
3382
3383 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3384
3385         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3386         Prefer fboundp to functionp so it works with macros as well.
3387
3388 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3389
3390         * auth-source.el: Added docs.
3391         (auth-sources): Modify format to support server.
3392         (auth-source-pick, auth-source-user-or-password)
3393         (auth-source-user-or-password-imap)
3394         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3395         (auth-source-user-or-password-sftp)
3396         (auth-source-user-or-password-smtp): Add server parameter.
3397
3398 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3399
3400         * gnus-registry.el: Initialize the registry when gnus-registry-install
3401         is t.
3402
3403 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3404
3405         * compface.el (uncompface): Make buffer unibyte.
3406
3407 2008-04-05  Glenn Morris  <rgm@gnu.org>
3408
3409         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3410
3411 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3412
3413         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3414         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3415
3416         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3417         multibyteness after rather than before erasing it.
3418
3419         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3420         mm-with-multibyte.
3421         (gnus-request-article-this-buffer): Make sure the proper decoding is
3422         used if gnus-original-article-buffer happens to be unibyte.
3423
3424         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3425         default-enable-multibyte-characters.
3426
3427         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3428         default-enable-multibyte-characters.
3429
3430         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3431
3432         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3433
3434 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3435
3436         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3437         (imap-message-copyuid-1): Use it.
3438         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3439         J. Williams in
3440         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3441
3442         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3443         imap-enable-exchange-bug-workaround.
3444         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3445
3446 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3447
3448         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3449         a 100 byte status-checks into a 2-3MB transfer for each group.
3450         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3451         to enable bug workaround or not.
3452         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3453
3454 2008-03-31  Glenn Morris  <rgm@gnu.org>
3455
3456         * message.el (mml2015-use): Declare for compiler.
3457         (message-info): Require mml2015 when appropriate.
3458
3459 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3460
3461         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3462         whitespace.
3463
3464 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3465
3466         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3467         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3468         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3469         (nntp-service-to-port): New function.
3470         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3471         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3472         (nntp-open-netcat-stream): New function.
3473         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3474
3475 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3476
3477         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3478
3479 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3480
3481         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3482
3483 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3484
3485         * dns.el (dns-write): Use set-buffer-multibyte.
3486
3487 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3488
3489         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3490
3491 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3492
3493         * message.el (message-signature-separator): Change default.
3494         Improve custom type.
3495         (message-cite-function): Change default to
3496         message-cite-original-without-signature.
3497
3498         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3499         toggle.
3500
3501         * message.el (message-check-news-body-syntax): Fix signature check.
3502         (message-setup-1): Mark buffer as unmodified _after_ running
3503         message-setup-hook and handling message-alternative-emails.
3504         (message-shorten-references): Be more strict when building list of
3505         valid references to comply with GNKSA.
3506
3507         * gnus-group.el (gnus-read-ephemeral-bug-group)
3508         (gnus-read-ephemeral-debian-bug-group)
3509         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3510
3511         * message.el (message-info): Don't use booleanp which isn't supported
3512         in Emacs 21 and XEmacs.
3513
3514 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3515
3516         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3517         gnus-group-gmane-group-download-format.
3518         (gnus-group-read-ephemeral-gmane-group): Rename from
3519         gnus-group-read-ephemeral-gmane-group.
3520         (gnus-read-ephemeral-gmane-group-url): Rename from
3521         gnus-group-read-ephemeral-gmane-group-url.
3522         (gnus-bug-group-download-format-alist): New variable.
3523         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3524         (gnus-read-ephemeral-emacs-bug-group): New commands.
3525
3526 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3527
3528         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3529         (gnus-visible-headers): Improve custom type.
3530
3531 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3532
3533         * mml.el (mml-menu): Add workarounds for XEmacs.
3534
3535         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3536         X-Boundary header.
3537
3538         * message.el (message-simplify-recipients): Fix previous commit.
3539
3540 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3541
3542         * mm-util.el (mm-set-buffer-multibyte): New function.
3543         * mm-decode.el (mm-copy-to-buffer): Use it.
3544
3545 2008-03-19  Glenn Morris  <rgm@gnu.org>
3546
3547         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3548         Accidentally removed in the sync process with Emacs.
3549
3550 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3551
3552         * message.el (message-alter-recipients-discard-bogus-full-name):
3553         New function.
3554         (message-alter-recipients-function): New variable.
3555         (message-get-reply-headers): Use it.
3556         (message-replace-header): New helper function.
3557         (message-recipients-without-full-name): New variable.
3558         (message-simplify-recipients): New command.
3559
3560         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3561
3562         * message.el (message-info): Handle EasyPG manual.
3563
3564         * mml.el (mml-menu): Add entry for EasyPG.
3565
3566 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3567
3568         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3569         parameter.
3570
3571         * message.el (message-disassociate-draft): Specify drafts group name
3572         fully.
3573
3574 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3575
3576         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3577         unnecessary duplicates from the match list.
3578
3579 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3580
3581         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3582
3583         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3584
3585         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3586         args of `how-many' of which the XEmacs version doesn't take; declare
3587         Info-index-next as function.
3588
3589 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3590
3591         * gnus-score.el (gnus-score-headers): Fix handling of
3592         gnus-inhibit-slow-scoring.
3593
3594         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3595         string.
3596         (gnus-button-url-regexp): Improve handling of parenthesis.
3597         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3598         (gnus-button-handle-info-keystrokes): Handle index entries.
3599
3600 2008-03-15  Glenn Morris  <rgm@gnu.org>
3601
3602         * parse-time.el (parse-time-string): Simplify.
3603
3604 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3605
3606         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3607         Incoming* files.
3608
3609 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3610
3611         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3612         (auth-source-pick): Use it.
3613
3614 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3615
3616         * binhex.el (binhex-decode-region-internal):
3617         * uudecode.el (uudecode-decode-region-internal):
3618         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3619         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3620         setting default-enable-multibyte-characters.
3621
3622 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3623
3624         * auth-source.el (auth-source-protocols)
3625         (auth-source-protocols-customize, auth-source-choices): Added and
3626         modified variable customizations and defaults.
3627         (auth-source-pick, auth-source-user-or-password)
3628         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3629         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3630         (auth-source-user-or-password-sftp)
3631         (auth-source-user-or-password-smtp): Use new variables and provide an
3632         interface to netrc.el.
3633
3634 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3635
3636         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3637         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3638         Make sure the nntp port to specify is a string.
3639
3640 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3641
3642         * nntp.el: Use with-current-buffer.
3643         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3644         dubious mm-with-unibyte-current-buffer.
3645         (nntp-with-open-group-function): New function extracted from
3646         nntp-with-open-group macro.
3647         (nntp-with-open-group): Use the function, so it's easier to debug.
3648         Add indentation and debugging info.
3649         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3650         the use of the netcat alternatives.
3651
3652         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3653         Avoid mm-string-as-multibyte as well.
3654
3655         * nnweb.el (nnweb-insert-html):
3656         Remove use of nnheader-string-as-multibyte.
3657
3658         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3659         (nnheader-string-as-multibyte): Remove.
3660
3661         * mm-view.el: Use inhibit-read-only.
3662         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3663         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3664         or unibyte-string.
3665
3666         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3667         (mm-uu-yenc-extract): Use with-current-buffer.
3668
3669         * gnus-soup.el (gnus-soup-send-packet): Don't use
3670         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3671
3672         * nnmh.el: Use with-current-buffer.
3673         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3674         mm-string-as-multibyte on the output of mm-encode-coding-string.
3675
3676         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3677         (nnimap-request-move-article): Use with-current-buffer.
3678
3679         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3680         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3681         conversion uses string-make-unibyte rather than string-as-unibyte.
3682
3683         * gnus-msg.el: Use with-current-buffer.
3684
3685         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3686
3687 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3688
3689         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3690         string for caching if it is 'PIN.
3691
3692 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3693
3694         * lpath.el: Consider the case without Emacs/W3.
3695
3696 2008-03-08  Glenn Morris  <rgm@gnu.org>
3697
3698         * time-date.el (date-to-time, time-subtract, time-add)
3699         (safe-date-to-time): Doc fixes.
3700
3701 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3702
3703         * mail-source.el (mail-source-delete-old-incoming-confirm):
3704         Change default to nil.
3705         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3706
3707 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3708
3709         * lpath.el: Rearrange.
3710
3711         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3712         (gnus-article-goto-prev-page): Work for articles having ^L's.
3713
3714         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3715
3716         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3717
3718 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3719
3720         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3721         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3722         (gnus-bookmark-jump): Adjust some variable names.
3723
3724 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3725
3726         * auth-source.el: New package.
3727         (auth-source-choices): Add customization entry point variable.
3728
3729         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3730         bug.
3731
3732 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3733
3734         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3735         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3736         (gnus-registry-install-shortcuts): Rename from
3737         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3738         the `gnus-registry-mark-map' keymap dynamically from
3739         `gnus-registry-marks'.  The generated functions update the summary line
3740         when a registry mark is added or deleted, and will call
3741         `gnus-registry-install-p' (see the comments in the code).
3742         (gnus-registry-user-format-function-M): Use concat intelligently.
3743
3744         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3745         the registry mark functions.
3746
3747 2008-03-05  Glenn Morris  <rgm@gnu.org>
3748
3749         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3750         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3751         gnus-art.
3752         (top-level): No need to load own source when compiling.
3753
3754 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3755
3756         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3757         Suggested by <chris.anderton@zetnet.co.uk>.
3758
3759 2008-03-04  Glenn Morris  <rgm@gnu.org>
3760
3761         * gnus-sum.el (top-level): No need to require gnus when compiling,
3762         since unconditionally required near start of file.
3763         (gnus-summary-display-while-building): Move definition before use.
3764
3765 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3766
3767         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3768         formatting function.
3769
3770 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3771
3772         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3773         with plists.
3774         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3775         Use new format.
3776
3777 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3778
3779         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3780         `where-is-internal' that returns a range of key sequences.
3781
3782 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3783
3784         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3785
3786         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3787         (gnus-summary-jump-to-group): Consider windows on other displayed
3788         frames as well.  Similar changes might be needed elsewhere, but that's
3789         the one I've bumped into during my use.
3790
3791         * nndoc.el (nndoc-oe-dbx-type-p):
3792         * gnus-msg.el (gnus-debug):
3793         * gnus-group.el (gnus-update-group-mark-positions):
3794         Use mm-string-to-multibyte.
3795
3796 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3797
3798         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3799         doesn't handle NotDashEscaped.
3800
3801         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3802         (mml-dnd-attach-options): Fix typo in custom choice.
3803
3804         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3805         nndoc-article-type to mbox.
3806         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3807
3808         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3809         to nil, instead of html2text.
3810
3811         * imap.el (imap-debug): Add `imap-ping-server'.
3812
3813         * gnus-bookmark.el: Add FIXMEs.
3814
3815         * message.el (message-form-letter-separator)
3816         (message-send-form-letter-delay): New variables.
3817         (message-send-form-letter): Use them.  New command to send form
3818         letters.  Requested by Uwe Siart.
3819         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3820
3821 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3822
3823         * Update copyright years.
3824
3825 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3826
3827         Sync from EMACS_22_BASE.
3828
3829         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3830
3831 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3832
3833         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3834         empty author.
3835
3836 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3837
3838         * gnus-registry.el (gnus-registry-marks): Add variable for
3839         customization of marks and their appearance.
3840         (gnus-registry-read-mark): Use it.
3841         (gnus-registry-do-marks): Add utility function to loop through
3842         `gnus-registry-marks'.
3843         (gnus-registry-install-shortcuts-and-menus): Add function to install
3844         shortcuts and menus.
3845         (gnus-registry-initialize): Use it.
3846         (gnus-registry-default-mark): Clarify documentation.
3847
3848 2008-02-29  Glenn Morris  <rgm@gnu.org>
3849
3850         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3851         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3852         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3853         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3854         Change defcustom :version from 23.0 to 23.1.
3855
3856 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3857
3858         * gnus-registry.el (gnus-registry-follow-group-p)
3859         (gnus-registry-post-process-groups): Add functions to aid registry
3860         splitting and improve logging.  Clarify behavior in function
3861         documentation.
3862         (gnus-registry-split-fancy-with-parent): Use them.
3863
3864 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3865
3866         * gnus-art.el: Use with-current-buffer.
3867
3868 2008-02-27  David Engster  <dengste@eml.cc>
3869
3870         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3871         Express real group name in the response.
3872
3873 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3874
3875         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3876         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3877         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3878         autoload gnus-registry-fetch-group when compiling.
3879         (nnmairix-request-group-with-article-number-correction): Remove
3880         unreferenced argument passed to nnmairix-call-backend.
3881
3882 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3883
3884         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3885         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3886         Wilde.
3887
3888 2008-02-27  Glenn Morris  <rgm@gnu.org>
3889
3890         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3891         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3892         variables to defconsts.  Convert comments to doc-strings.
3893         (nnmairix-last-server, nnmairix-current-server): Convert from free
3894         variables to defvars.  Convert comments to doc-strings.
3895         (gnus-registry-fetch-group): Autoload.
3896         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3897         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3898         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3899         caddr.
3900         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3901         nnmairix-request-group-with-article-number-correction call.
3902         (nnmairix-fast, nnmairix-group): New, less general names, for free
3903         variables passed from nnmairix-request-group to
3904         nnmairix-request-group-with-article-number-correction.  Declare.
3905         (nnmairix-request-group-with-article-number-correction):
3906         Use nnmairix-fast, nnmairix-group rather than fast, group.
3907
3908 2008-02-26  David Engster  <dengste@eml.cc>
3909
3910         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3911         version 0.5.
3912
3913 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3914
3915         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3916         instead of making an extra function call.  Don't add the current group
3917         to articles only when they have the group.  Use
3918         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3919         Reported by David <de_bb@arcor.de>.
3920
3921 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3922
3923         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
3924         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
3925
3926 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
3927
3928         * mail-source.el (mail-source-delete-incoming): Change default.
3929         Supplement doc string.
3930
3931         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
3932
3933 2008-02-14  Glenn Morris  <rgm@gnu.org>
3934
3935         * time-date.el (format-seconds): New function.
3936
3937 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
3938
3939         * nnmail.el (nnmail-message-id-cache-file): Derive from
3940         `gnus-home-directory'.
3941
3942 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
3943
3944         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
3945         Document negative prefix.
3946
3947         * gnus-group.el (gnus-group-read-group): Document negative prefix.
3948
3949 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3950
3951         * message.el (message-unsent-separator): Add the Exim bounce
3952         separator.
3953
3954 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
3955
3956         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
3957         list.
3958         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
3959         recipient/signer list.
3960
3961 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3962
3963         * Makefile.in (datarootdir): Define.
3964         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
3965         name that might contain whitespace.
3966
3967 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
3968
3969         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
3970         fbound (Emacs 23 unicode), signal an error.
3971
3972 2008-02-08  Glenn Morris  <rgm@gnu.org>
3973
3974         * gnus-art.el (pgg-display-output-buffer): Declare as function.
3975
3976 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
3977
3978         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
3979         ports to the calls to `netrc-machine-user-or-password' in addition to
3980         "imap" and "imaps".
3981
3982 2008-02-01  Zhang Wei  <id.brep@gmail.com>
3983
3984         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
3985
3986         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
3987
3988 2008-02-01  Kenichi Handa  <handa@m17n.org>
3989
3990         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
3991         rfc2104-hexstring-to-bitstring and changed to return a byte list.
3992         (rfc2104-hash): Convert the result of concat to unibyte string.
3993
3994 2008-02-01  Dave Love  <fx@gnu.org>
3995
3996         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
3997         coding-system-for-read.
3998         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
3999
4000 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
4001
4002         * gnus.el (gnus-group-startup-message): Add `find-image' call before
4003         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
4004         <hanche@math.ntnu.no>.
4005
4006 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4007
4008         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
4009
4010         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4011
4012 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4013
4014         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4015         * message.el (message-beginning-of-line): Use featurep instead of bound
4016         tests in order to resolve conditionals at compile time.
4017
4018 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4019
4020         * mail-source.el (mail-sources): Add `group' choice.
4021
4022         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4023         parameter `in-group' to control into which group the articles go.
4024         Add treatment of `group' mail-source.
4025
4026 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4027
4028         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4029
4030         * mm-decode.el (mm-dissect-buffer): Decode description.
4031
4032         * mml.el (mml-to-mime): Encode message header first.
4033
4034 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4035
4036         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4037         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4038
4039         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4040         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4041
4042 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4043
4044         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4045
4046 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4047
4048         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4049         prefix keys.
4050         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4051         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4052         gnus-xmas.el.
4053
4054         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4055         (gnus-xmas-article-describe-bindings): New function.
4056         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4057         gnus-xmas-article-describe-bindings.
4058
4059         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4060
4061 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4062
4063         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4064         Add new variables for article mark management.
4065         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4066         list of extra data entries which, when present, will indicate that the
4067         article ID should not be trimmed from the registry.
4068         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4069         functions.
4070         (gnus-registry-read-mark): New function to read a mark name from the
4071         user.
4072         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4073         (gnus-registry-set-article-mark-internal): New functions to add and
4074         remove marks.
4075         (gnus-registry-get-article-marks): New function to show the marks for
4076         an article, or retrieve them for further use.
4077
4078 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4079
4080         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4081         keys when no argument is given.
4082
4083 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4084
4085         * imap.el (imap-ping-server): New variable.
4086         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4087         (imap-ping-server): Minor doc string fixes.
4088
4089 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4090
4091         * imap.el (imap-ping-server): New function.
4092         (imap-opened): Call imap-ping-server.
4093
4094 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4095
4096         * gnus-sum.el (gnus-article-sort-by-random)
4097         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4098         jidanni@jidanni.org.
4099
4100 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4101
4102         * gnus-art.el (gnus-article-describe-bindings): New function.
4103         (gnus-article-read-summary-keys): Use it.
4104         (gnus-article-mode-map): Bind `C-h b' to it.
4105
4106 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4107
4108         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4109         XEmacs.
4110         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4111         against non-character events.
4112
4113         * lpath.el: Fbind map-keymap for Emacs 21.
4114
4115 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4116
4117         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4118         command.
4119         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4120         instead of END.  Change name of the temp file.
4121         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4122         customizable.
4123
4124 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4125
4126         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4127         bind `S W' to gnus-article-wide-reply-with-original; set default
4128         binding to gnus-article-read-summary-send-keys.
4129         (gnus-article-read-summary-keys): Fix the order of keys; display
4130         continuation keys correctly in the echo area; describe bindings
4131         correctly when keys end with `C-h'.
4132         (gnus-article-read-summary-send-keys): New function.
4133         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4134         for gnus-article-read-summary-send-keys; display continuation keys
4135         correctly in the echo area.
4136         (gnus-article-reply-with-original): Ignore prefix argument.
4137         (gnus-article-wide-reply-with-original): New function.
4138
4139         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4140         Emacs 21.
4141
4142 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4143
4144         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4145         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4146
4147 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4148
4149         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4150         (gnus-group-read-ephemeral-gmane-group): New command.
4151
4152 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4153
4154         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4155
4156 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4157
4158         * message.el (message-send-mail-function): Increase custom version.
4159
4160         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4161         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4162
4163 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4164
4165         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4166         for the cases where imap-authenticate is called with a nil buffer
4167         parameter.
4168
4169 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4170
4171         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4172         html parts correctly; support forwarded messages.
4173         (gnus-article-browse-html-article): Remove work buffers.
4174
4175         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4176         compiling.
4177         (netrc-bound-and-true-p): New macro.
4178         (netrc-parse): Use it instead of bound-and-true-p that is not available
4179         in XEmacs 21.4.
4180
4181 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4182
4183         * gnus-registry.el (gnus-registry-mark-article)
4184         (gnus-registry-article-marks): Add functionality to mark articles
4185         through the Gnus registry.
4186
4187         * encrypt.el: Clarify documentation for the new pgg method.
4188         (encrypt-file-alist): Add PGG option.
4189         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4190         functionality.  Abstract password key and messaging to external
4191         functions.
4192         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4193         (encrypt-message-method-and-cipher): Add new convenience external
4194         functions.
4195         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4196         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4197
4198         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4199         (netrc-parse): Use encrypt-file-alist to determine if
4200         encrypt-find-model or encrypt-insert-file-contents should be used.
4201
4202         * encrypt.el: Clarify documentation.  Load password-cache or
4203         password, whichever one is found first, instead of autoloading.
4204
4205 2007-12-19  Glenn Morris  <rgm@gnu.org>
4206
4207         * mml.el (message-options-set, message-narrow-to-head)
4208         (message-in-body-p, message-mail-p, message-encode-message-body):
4209         Autoload.
4210         (message-remove-header, message-narrow-to-headers-or-head)
4211         (message-subscribed-p, message-make-mail-followup-to)
4212         (message-position-on-field, message-news-p)
4213         (message-options-set-recipient, message-generate-headers)
4214         (message-sort-headers): Declare as functions.
4215
4216 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4217
4218         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4219         convention in doc string.
4220
4221 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4222
4223         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4224         title to html parts.
4225         (gnus-article-browse-html-article): Pass message header to it.
4226
4227         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4228
4229 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4230
4231         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4232         or password compatible with XEmacs.
4233
4234 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4235
4236         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4237         format document.
4238         (gnus-mime-delete-part): Don't write description line if empty.
4239         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4240
4241 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4242
4243         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4244         (gnus-summary-mark-read-and-unread-as-read)
4245         (gnus-summary-mark-current-read-and-unread-as-read)
4246         (gnus-summary-mark-unread-as-ticked): Doc fix.
4247         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4248
4249 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4250
4251         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4252         Christoph Conrad <christoph.conrad@gmx.de>.
4253
4254 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4255
4256         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4257         yes-or-no-p.
4258
4259 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4260
4261         * mm-decode.el (mm-add-meta-html-tag): New function.
4262         (mm-save-part-to-file, mm-pipe-part): Use it.
4263
4264         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4265         gnus-y-or-n-p instead of y-or-n-p.
4266         (gnus-article-browse-html-parts): Work with message/external-body; use
4267         mm-add-meta-html-tag.
4268
4269 2007-12-11  Glenn Morris  <rgm@gnu.org>
4270
4271         * gnus-cache.el: Require gnus-sum not just when compiling.
4272
4273         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4274
4275         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4276         definitions before use.
4277
4278         * mm-decode.el: Require gnus-util.
4279         (mm-remove-part): Only call delete-annotation on XEmacs.
4280
4281         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4282
4283         * nnmail.el: Require gnus-int.
4284
4285         * spam.el: Move `require's before `eval-when-compile's.
4286
4287         * gnus-ems.el (gnus-alive-p):
4288         * gnus-fun.el (message-goto-eoh):
4289         * gnus-util.el (gnus-group-name-decode):
4290         * mail-source.el (gnus-compress-sequence):
4291         * message.el (Info-goto-node, format-spec):
4292         * mm-bodies.el (message-options-get):
4293         * mm-decode.el (mm-view-pkcs7):
4294         * mm-util.el (gmm-write-region):
4295         * mml-smime.el (mml-compute-boundary)
4296         (gnus-completing-read-with-default):
4297         * mml.el (widget-button-press, gnus-make-hashtable):
4298         * mml1991.el (mm-decode-content-transfer-encoding)
4299         (mm-encode-content-transfer-encoding)
4300         (message-options-get, message-options-set):
4301         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4302         * nnfolder.el (gnus-request-group):
4303         * nnheader.el (ietf-drums-unfold-fws):
4304         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4305         * smime.el (gnus-run-mode-hooks):
4306         * spam-stat.el (gnus-message): Autoload.
4307
4308         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4309         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4310         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4311         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4312         Add declare-function compatibility definition.
4313
4314         * gnus-cache.el (nnvirtual-find-group-art):
4315         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4316         (gnus-add-image, gnus-add-wash-type):
4317         * gnus-group.el (nnkiboze-score-file):
4318         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4319         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4320         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4321         (message-tokenize-header, gnus-get-buffer-create)
4322         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4323         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4324         * gnus.el (gnus-group-decoded-name):
4325         * mail-source.el (imap-capability):
4326         * mm-bodies.el (message-options-set):
4327         * mm-decode.el (gnus-configure-windows):
4328         * mm-extern.el (message-goto-body):
4329         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4330         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4331         (epg-sub-key-validity, message-options-set):
4332         * mml.el (widget-event-point, gnus-configure-windows):
4333         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4334         * mml2015.el (epg-check-configuration, epg-configuration)
4335         (message-options-set):
4336         * nndb.el (nndb-request-article):
4337         * nnfolder.el (gnus-request-create-group):
4338         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4339         * nnmaildir.el (gnus-group-mark-article-read):
4340         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4341         * rfc1843.el (message-fetch-field):
4342         * spam.el (gnus-extract-address-components):
4343         Declare as functions.
4344
4345 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4346
4347         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4348
4349         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4350
4351         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4352         bind show-trailing-whitespace for XEmacs.
4353
4354 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4355
4356         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4357         new no-op macro for backward compatibility.
4358
4359         * imap.el (imap-string-to-integer): New function.
4360
4361 2007-12-09  Glenn Morris  <rgm@gnu.org>
4362
4363         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4364
4365         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4366         * message.el, mm-view.el, sieve-manage.el, smime.el:
4367         Add declare-function compatibility definition.
4368
4369         * gnus-art.el (w3-region, w3m-region, Info-menu):
4370         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4371         * gnus-sum.el (gnus-get-predicate):
4372         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4373         * message.el (mail-abbrev-in-expansion-header-p):
4374         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4375         (w3m-detect-meta-charset, w3m-region):
4376         * sieve-manage.el (password-read, password-cache-add)
4377         (password-cache-remove):
4378         * smime.el (password-read-and-add): Declare as functions.
4379
4380 2007-12-08  David Kastrup  <dak@gnu.org>
4381
4382         * gnus-sum.el (gnus-summary-simplify-subject-query):
4383         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4384         `message'.
4385
4386 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4387
4388         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4389         it to bind idna-program, installation-directory, defined-colors, and
4390         face-attribute for XEmacs of the version that compiles defcustom forms.
4391
4392 2007-12-07  Glenn Morris  <rgm@gnu.org>
4393
4394         * gnus-art.el (article-make-date-line): Revert previous change.
4395
4396 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4397
4398         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4399
4400 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4401
4402         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4403         Call gnus-add-to-range ranges only once with a prepared article-list.
4404
4405 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4406
4407         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4408         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4409         group names with backslashes.  Reported by Tassilo Horn
4410         <tassilo@member.fsf.org>.
4411
4412 2007-12-06  Deepak Goel  <deego3@gmail.com>
4413
4414         * gnus-art.el (article-make-date-line):
4415         * gnus-start.el (gnus-load):
4416         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4417
4418 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4419
4420         * gnus-art.el (gnus-use-idna)
4421         * gnus-start.el (gnus-site-init-file)
4422         * message.el (message-use-idna)
4423         * mm-uu.el (mm-uu-hide-markers)
4424         * smiley.el (smiley-style): Revert changes that suppress warnings.
4425
4426 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4427
4428         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4429         specify charset to html source.  Reported by Christoph Conrad
4430         <christoph.conrad@gmx.de>.
4431
4432 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4433
4434         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4435         idna-program in order to suppress byte compile warning issued by XEmacs
4436         that came to byte compile the default value section of defcustom forms
4437         recently.
4438
4439         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4440         value of installation-directory.
4441
4442         * message.el (message-use-idna): Don't directly refer to the value of
4443         idna-program.
4444
4445         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4446
4447         * smiley.el (smiley-style): Don't directly call face-attribute.
4448
4449 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4450
4451         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4452
4453         * gnus-dired.el: Reduce Gnus dependencies.
4454         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4455         require.  Use autoloads instead.
4456         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4457         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4458         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4459         (gnus-dired-mode): Adjust doc string.
4460         (gnus-dired-mail-mode): New variable.
4461         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4462         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4463         (gnus-dired-mail-buffers): New function.  Return mail or message
4464         composition buffers.
4465         (gnus-dired-attach): Use it.
4466         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4467         NO-DECODE.
4468         (gnus-dired-print): Use `gnus-print-buffer' depending on
4469         `gnus-dired-mail-mode'.
4470
4471 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4472
4473         * rfc2047.el (rfc2047-encoded-word-regexp)
4474         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4475         explaining what regexp patterns are for.
4476
4477 2007-12-04  Glenn Morris  <rgm@gnu.org>
4478
4479         * password.el: Move to password-cache.el.
4480
4481         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4482         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4483         * mml-smime.el (password-read, password-cache-add)
4484         (password-cache-remove):
4485         No need to autoload, since mml-sec requires password.
4486
4487         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4488         * message.el (gnus-extract-address-components):
4489         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4490
4491         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4492         password.
4493
4494 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4495
4496         * mailcap.el: Reduce dependencies.
4497         (mail-header-parse-content-type): Autoload.
4498         (mailcap-delete-duplicates): New alias.
4499         (mailcap-mime-info): Add optional argument NO-DECODE.
4500         (mailcap-mime-types): Use mailcap-delete-duplicates.
4501
4502         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4503
4504 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4505
4506         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4507         (imap-parse-status): Upcase status-att for servers that sends them
4508         lower-case (e.g., MS Exchange 2007).
4509
4510 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4511
4512         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4513         function.
4514
4515         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4516         (gnus-uu-yenc-article): New function.
4517
4518         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4519
4520         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4521         buffer.
4522
4523 2007-12-02  Glenn Morris  <rgm@gnu.org>
4524
4525         * binhex.el (binhex): New custom group.
4526         (binhex-decoder-program, binhex-decoder-switches)
4527         (binhex-use-external): Move to the binhex custom group.
4528
4529         * uudecode.el (uudecode): New custom group.
4530         (uudecode-decoder-program, uudecode-decoder-switches)
4531         (uudecode-use-external): Move to the uudecode custom group.
4532
4533         * netrc.el (top-level): Don't load `encrypt' features.
4534         (netrc-parse): Don't use encrypt.
4535         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4536
4537         * encrypt.el: Remove file.
4538
4539 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4540
4541         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4542         matches on patches.
4543
4544         * gnus-art.el (gnus-article-browse-html-article): Mention
4545         `mm-text-html-renderer' in the doc string.
4546
4547         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4548         string.  Add comments.
4549
4550         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4551         if rhs is ASCII.
4552
4553 2007-12-01  Glenn Morris  <rgm@gnu.org>
4554
4555         * mail-source.el (top-level): Require format-spec before
4556         eval-when-compile.
4557
4558 2007-11-30  Glenn Morris  <rgm@gnu.org>
4559
4560         * encrypt.el: Require password, rather than autoloading password-read.
4561
4562 2007-11-29  Glenn Morris  <rgm@gnu.org>
4563
4564         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4565         (sasl-make-client, sasl-next-step, sasl-step-data)
4566         (sasl-step-set-data): Declare as functions.
4567
4568 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4569
4570         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4571
4572 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4573
4574         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4575         certs should be verified and what is to be done in the event of a
4576         verification failure.
4577
4578         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4579         caller can indicate whether the cache should be disregarded for this
4580         call.  This way the result of the call is reproducible at all times and
4581         can be considered a canonical server name for the supplied method.
4582         (gnus-agent-method-p): Canonicalize server names by pushing their
4583         method through `gnus-method-to-server' using the no-cache argument.
4584
4585         * gnus-srvr.el (gnus-server-insert-server-line): Call
4586         `gnus-method-to-server' with `no-cache' argument.
4587
4588         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4589         gnus-agent-possibly-synchronize-flags as this should be called when the
4590         server is actually being opened.
4591         (gnus-agent-possibly-synchronize-flags)
4592         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4593         flags file of an agentized server to the latter function.
4594
4595         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4596         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4597         after a connection has been established successfully.
4598
4599 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4600
4601         * gnus-art.el (article-display-face): Force to display face if called
4602         interactively; check if gnus-article-x-face-too-ugly matches author.
4603         (article-display-x-face): Display face even if From header is missing
4604         as article-display-face does.
4605
4606 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4607
4608         * hashcash.el (message-narrow-to-headers-or-head)
4609         (message-fetch-field, message-goto-eoh)
4610         (message-narrow-to-headers): Declare as functions.
4611
4612 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4613
4614         * mail-source.el (mail-sources): Default to fetch from file for
4615         compatibility with default of nnmail-spool-file.
4616
4617 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4618
4619         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4620         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4621         to look for encoded word that should be encoded again.
4622         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4623         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4624         encoding pattern.
4625         (rfc2047-decode-region): Switch strict regexp and loose one according
4626         to rfc2047-allow-irregular-q-encoded-words.
4627
4628 2007-11-25  Romain Francoise  <romain@orebokech.com>
4629
4630         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4631
4632 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4633
4634         * tls.el (tls-program): Provide more custom choices from
4635         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4636         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4637
4638 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4639
4640         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4641         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4642
4643         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4644         `nnmail-spool-file'.
4645
4646         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4647         `nnmail-spool-file'.
4648
4649         * gnus-move.el (gnus-change-server): Ditto.
4650
4651         * gnus-kill.el (gnus-batch-score): Ditto.
4652
4653         * gnus-cache.el (gnus-jog-cache): Ditto.
4654
4655         * gnus-msg.el (gnus-summary-reply):
4656         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4657
4658 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4659
4660         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4661         version.  Minor improvement to doc strings.
4662         (tls-program): Add comment.
4663
4664 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4665
4666         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4667         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4668         mismatch between the hostname provided in the certificate and the name
4669         of the host connnecting to.
4670         (open-tls-stream): Use them.  Check certificates against trusted root
4671         certificates.
4672
4673 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4674
4675         * gnus-cache.el (gnus-cache-generate-nov-databases):
4676         Use nnml-generate-nov-databases-directory instead of
4677         nnml-generate-nov-databases-1.
4678
4679 2007-11-24  Glenn Morris  <rgm@gnu.org>
4680
4681         * message.el (message-tool-bar-retro): Update for rename
4682         mail_send.xpm->mail-send.xpm.
4683
4684 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4685
4686         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4687         `smime-ldap-search' for Emacs 22 and up.
4688
4689 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4690
4691         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4692
4693         * message.el (message-send-mail-function): Fix error convention.
4694         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4695         (message-widen-reply, message-send-mail, message-talkative-question)
4696         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4697         (message-clone-locals, message-send-news): Use with-current-buffer.
4698         (message-insert-or-toggle-importance): Remove unused var `valid'.
4699         (message-make-references): Remove unused var `new-references'.
4700         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4701
4702 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4703
4704         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4705         (spam-split-symbolic-return-positive): Reflow docstring.
4706         (spam-backends, spam-summary-exit-behavior)
4707         (spam-mark-ham-unread-before-move-from-spam-group)
4708         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4709         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4710         (spam-clear-cache, spam-backend-check, spam-install-backend)
4711         (spam-install-statistical-backend, spam-list-of-processors)
4712         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4713         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4714         (spam-check-crm114, spam-initialize, spam-unload-hook):
4715         Fix typos in docstrings.
4716
4717 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4718
4719         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4720         been checked if they have never been read and those group levels are
4721         higher than the one that a user specified.
4722
4723 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4724
4725         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4726         foreign groups unless a group level is specified by a user.
4727         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4728
4729 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4730
4731         * message.el (message-send-mail-function): Require sendmail.
4732
4733 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4734
4735         * message.el (message-send-mail-function): Check for smtpmail too.
4736
4737         * utf7.el (utf7-encode, utf7-decode): Use coding system
4738         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4739
4740         * message.el (message-send-mail-function): New function.
4741         (message-send-mail-function): Set default using
4742         message-send-mail-function.  Adjust doc string.
4743         (message-send-mail-with-mailclient): New function.
4744
4745 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4746
4747         * smime.el (from):
4748         * rfc2047.el (message-posting-charset):
4749         * qp.el (mm-use-ultra-safe-encoding):
4750         * pop3.el (parse-time-months):
4751         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4752         * nnml.el (files):
4753         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4754         (jka-compr-compression-info-list, ange-ftp-path-format)
4755         (efs-path-regexp):
4756         * nndiary.el (files):
4757         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4758         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4759         (epg-digest-algorithm-alist, inhibit-redisplay)
4760         (password-cache-expiry):
4761         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4762         (pgg-output-buffer, password-cache-expiry):
4763         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4764         (efs-path-regexp):
4765         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4766         (inhibit-redisplay):
4767         * mm-uu.el (file-name, start-point, end-point, entry)
4768         (gnus-newsgroup-name, gnus-newsgroup-charset):
4769         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4770         (latin-unity-ucs-list):
4771         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4772         (mm-uu-binhex-decode-function):
4773         * message.el (gnus-message-group-art, gnus-list-identifiers)
4774         (rmail-enable-mime-composing, gnus-local-organization)
4775         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4776         (gnus-read-active-file, facemenu-add-face-function)
4777         (facemenu-remove-face-function, gnus-article-decoded-p)
4778         (tool-bar-mode):
4779         * mail-source.el (display-time-mail-function):
4780         * gnus-util.el (nnmail-pathname-coding-system)
4781         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4782         (gnus-original-article-buffer, gnus-user-agent)
4783         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4784         (xemacs-codename, sxemacs-codename, emacs-program-version):
4785         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4786         * gnus-start.el (gnus-agent-covered-methods)
4787         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4788         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4789         (gnus-newsgroup-headers, gnus-group-list-mode)
4790         (gnus-group-mark-positions, gnus-newsgroup-data)
4791         (gnus-newsgroup-unreads, nnoo-state-alist)
4792         (gnus-current-select-method, mail-sources)
4793         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4794         (nnmail-spool-file, gnus-cache-active-hashtb):
4795         * gnus-mh.el (mh-lib-progs):
4796         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4797         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4798         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4799         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4800         (gnus-group-buffer):
4801         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4802         (font-lock-set-defaults):
4803         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4804         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4805         (gnus-summary-post-menu, total-parts, type, condition, length):
4806         * gnus-agent.el (gnus-agent-read-agentview):
4807         * flow-fill.el (show-trailing-whitespace):
4808         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4809         eval-and-compile wrappers for byte compiler pacifiers.
4810
4811         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4812         (mm-display-inline-fontify): Check for featurep 'xemacs not
4813         extent-list.
4814
4815         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4816         itimer-list.
4817         (mm-create-image-xemacs): Only do something for XEmacs.
4818         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4819
4820         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4821
4822         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4823         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4824
4825 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4826
4827         * nnimap.el (nnimap-split-download-body):
4828         * gnus-demon.el (gnus-demon):
4829         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4830
4831 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4832
4833         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4834         macros.
4835         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4836         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4837         copy data from unibyte buffer to multibyte current buffer.
4838         (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
4839         to copy data from unibyte current buffer to multibyte buffer.
4840         (nntp-make-process-buffer): Make process buffer unibyte.
4841
4842         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4843
4844 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4845
4846         * pop3.el (pop3-open-server): Accept and process data more robustly at
4847         connexion start to avoid spurious "POP SSL connexion failed" errors.
4848
4849 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4850
4851         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4852         read group names.
4853
4854 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4855
4856         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4857
4858 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4859
4860         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4861         (nnmail-save-active): Use a unibyte buffer when saving active file,
4862         which may contain non-ASCII group names.
4863
4864         * nnml.el (nnml-request-group): Decode group names in messages.
4865
4866 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4867
4868         * message.el (message-citation-line-function)
4869         (message-insert-formatted-citation-line): Fix spelling of
4870         `message-insert-formated-citation-line'.
4871
4872 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4873
4874         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4875
4876 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4877
4878         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4879         nnmail-pathname-coding-system.
4880
4881         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4882         that a user enters; decode group names in messages.
4883
4884         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
4885
4886 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
4887
4888         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
4889
4890         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
4891
4892         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
4893         risky local variable.
4894
4895         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
4896
4897 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4898
4899         * encrypt.el: Improve documentation to fix function name typo.
4900         Reported by Daiki Ueno <ueno@unixuser.org>.
4901
4902 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4903
4904         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
4905         even if the point is not in the last page of an article.
4906         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
4907         back to the previous page.
4908
4909 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
4910
4911         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
4912
4913 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4914
4915         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
4916
4917 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4918
4919         * message.el (message-check-news-body-syntax): Avoid
4920         mm-string-as-multibyte.
4921         (message-hide-headers): Don't assume (point-min)==1.
4922
4923 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
4924
4925         * message.el (message-remove-blank-cited-lines): Fix if remove is
4926         given.
4927         (message-bogus-address-regexp): New variable.
4928         (message-bogus-recipient-p): New function.
4929         (message-check-recipients): New command.
4930         (message-syntax-checks): Add `bogus-recipient'.
4931         (message-fix-before-sending): Add `bogus-recipient'.
4932
4933         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
4934         (gnus-treat-body-boundary): Don't test window-system.
4935
4936 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
4937
4938         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
4939
4940 2007-10-28  Miles Bader  <miles@gnu.org>
4941
4942         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
4943         at compile-time too.
4944
4945 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
4946
4947         * gnus-msg.el (gnus-message-setup-hook): Add
4948         `message-remove-blank-cited-lines' to options.
4949
4950 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
4951
4952         * message.el (message-remove-blank-cited-lines): New function.
4953         Suggested by Karl Plästerer.
4954
4955 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4956
4957         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
4958         mapc.
4959
4960         * imap.el (imap-open): Replace mapcar called for effect with mapc.
4961         (top-level): Use mapc to set functions to be traced for debugging.
4962
4963         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
4964         called for effect with while loop.
4965
4966         * message.el (message-talkative-question): Replace mapcar called for
4967         effect with mapc.
4968
4969         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
4970         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
4971         called for effect with dolist.
4972
4973         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
4974
4975         * nndiary.el: Use dolist instead of mapcar to add diary headers to
4976         gnus-extra-headers and nnmail-extra-headers.
4977
4978         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
4979         called for effect with dolist.
4980         (top-level): Use mapc to set functions to be traced for debugging.
4981
4982         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
4983         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
4984         dolist.
4985
4986         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
4987         Replace mapcar called for effect with mapc.
4988         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
4989         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
4990         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
4991         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
4992
4993         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
4994         remove-if that's a cl function.
4995
4996         * webmail.el (webmail-debug): Replace mapcar called for effect with
4997         dolist.
4998
4999         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
5000         with mapc.
5001
5002 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5003
5004         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
5005         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
5006         with while loop.
5007
5008         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
5009         functions from article-* functions.
5010         (gnus-multi-decode-header): Replace mapcar called for effect with
5011         dolist.
5012
5013         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5014         (gnus-bookmark-show-details): Replace mapcar called for effect with
5015         while loop.
5016
5017         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5018         called for effect with while loop.
5019
5020         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5021         with dolist.
5022
5023         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5024         mapcar called for effect with dolist.
5025
5026         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5027
5028         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5029         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5030         Replace mapcar called for effect with dolist.
5031         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5032         mapc.
5033
5034         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5035         Replace mapcar called for effect with dolist.
5036         (gnus-topic-list): Replace mapcar called for effect with mapc.
5037
5038         * gnus.el: Use mapc instead of mapcar to add autoloads.
5039
5040 2007-10-23  Richard Stallman  <rms@gnu.org>
5041
5042         * gnus-group.el (gnus-group-highlight): Mark as risky.
5043
5044 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5045
5046         * gnus.el (gnus-server-to-method): Return method found first in
5047         gnus-newsrc-alist.
5048
5049         * gnus-art.el (gnus-article-highlight-signature)
5050         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5051         button overlay without the front stickiness.
5052
5053 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5054
5055         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5056         overview buffer needed a catch to receive its throw.
5057         (gnus-agent-flush-cache): Declared as interactive to make this function
5058         easier to use.
5059
5060 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5061
5062         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5063         `next-line'.
5064
5065 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5066
5067         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5068         exclude address matching message-dont-reply-to-names.
5069
5070 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5071
5072         * gnus-util.el (gnus-string<): New function.
5073
5074         * gnus-sum.el (gnus-article-sort-by-author)
5075         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5076
5077 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5078
5079         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5080         the frame-focus tag is set in gnus-buffer-configuration.
5081
5082 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5083
5084         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5085         the front stickiness.
5086
5087 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5088
5089         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5090         url pattern; remove duplicate one.
5091         (gnus-article-extend-url-button): New function.
5092         (gnus-article-add-buttons): Use it.
5093         (gnus-button-push): Use concatenated url that it makes.
5094
5095 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5096
5097         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5098
5099 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5100
5101         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5102         Don't hardcode point-min==1.
5103
5104 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5105
5106         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5107         Fix comment about "iso8859-1".
5108
5109 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5110
5111         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5112         ones returned from the verify-function.
5113
5114         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5115         mml2015-extract-cleartext-signature if extraction failed.
5116
5117 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5118
5119         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5120         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5121         failed.
5122
5123 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5124
5125         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5126
5127 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5128
5129         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5130         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5131         recommends to use EasyPG instead of PGG.
5132
5133         * pgg.el: Revert to revision 6.23.2.16.
5134
5135         * pgg-def.el: Revert to revision 6.6.2.14.
5136
5137         * pgg-gpg.el: Revert to revision 6.23.2.34.
5138
5139 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5140
5141         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5142         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5143         thread for both the null and zero (kill/expire thread) universal prefix
5144         cases.
5145         (gnus-summary-expire-thread): Add new function to expire a thread,
5146         using gnus-summary-kill-thread.
5147         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5148         shortcuts for gnus-summary-expire-thread.
5149         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5150         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5151
5152 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5153
5154         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5155         extras value, so an extras entry can be deleted.
5156         (gnus-registry-delete-extra-entry): Use it.
5157         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5158         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5159         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5160         storage through the gnus-registry, and provide an appropriate API for
5161         it.
5162
5163 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5164
5165         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5166         Suggested by Leo <sdl.web@gmail.com>.
5167
5168         * gnus.el: Do.
5169
5170 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5171
5172         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5173         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5174
5175         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5176
5177         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5178         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5179
5180 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5181
5182         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5183         newline.
5184         (nnmbox-request-accept-article): Don't change article in source buffer;
5185         narrow to header to use message-fetch-field rather than
5186         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5187         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5188         as delimiters; make sure article ends with newline.
5189         (nnmbox-delete-mail): Correct last position of article to be deleted;
5190         ignore X-Gnus-Newsgroup header in article body.
5191         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5192         positions; make sure article ends with newline.
5193
5194         * message.el (message-display-abbrev): Don't infloop when a user
5195         inserts SPC in the beginning of header.
5196
5197         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5198         coding-system-for-read and coding-system-for-write for XEmacs having no
5199         file-coding feature.
5200
5201         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5202
5203 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5204
5205         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5206         list of groups not followed by default.  Fix type to be regexp.
5207         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5208
5209 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5210
5211         * hmac-def.el (define-hmac-function): Switch from old-style to
5212         new-style backquotes.
5213
5214         * md4.el (md4-make-step): Likewise.
5215
5216 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5217
5218         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5219         raw-text coding system when saving .newsrc file, which may contain
5220         non-ASCII group names.
5221
5222 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5223
5224         * gnus-cus.el (gnus-score-extra): New widget.
5225         (gnus-score-extra-convert): New function.
5226         (gnus-score-customize): Use it for Extra.
5227
5228 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5229
5230         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5231         (mml2015-mailcrypt-clear-verify): Use it.
5232         (mml2015-gpg-clear-verify): Use it.
5233         (mml2015-pgg-clear-verify): Use it.
5234         (mml2015-epg-clear-verify): Replace the current part with the output
5235         from GnuPG; don't extract the plaintext by itself.
5236
5237         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5238         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5239         mml2015-clear-verify-function; don't touch the armor headers or
5240         dash-escaped text here.
5241
5242 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5243
5244         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5245         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5246         parts, or application/octet-stream as a last resort.
5247         (gnus-mime-view-part-as-type): Don't toggle display.
5248         (gnus-mime-view-part-as-charset): Don't turn off display before
5249         querying charset.
5250
5251         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5252         stuff to undisplayer function in Emacs.
5253         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5254
5255         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5256         text/calendar parts.
5257
5258 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5259
5260         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5261         decoding text/calendar parts.
5262
5263         * message.el (message-forward-make-body-mime): Always mark body as
5264         having no illegible text; remove signed-or-encrypted argument.
5265         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5266
5267         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5268         (mml-generate-mime-1): Don't encode body if it is specified to be in
5269         raw form; don't make buffer be unibyte when inserting multibyte string.
5270
5271 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5272
5273         * sha1.el: Fix up comment style.
5274         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5275         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5276
5277         * hex-util.el: Fix up comment style.
5278         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5279
5280         * gnus-salt.el: Use with-current-buffer.
5281         (gnus-pick-setup-message): Fix long-standing typo.
5282
5283 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5284
5285         * imap.el (imap-logout-timeout): New variable.
5286         (imap-logout, imap-logout-wait): New functions.
5287         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5288
5289         * nnimap.el (nnimap-logout-timeout): New server variable.
5290         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5291         nnimap-logout-timeout.
5292
5293         * gnus-art.el (gnus-article-summary-command-nosave)
5294         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5295
5296 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5297
5298         * gnus.el (gnus-maximum-newsgroup): New variable.
5299
5300         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5301         according to gnus-maximum-newsgroup.
5302
5303         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5304         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5305         Limit the range of articles according to gnus-maximum-newsgroup.
5306
5307 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5308
5309         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5310         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5311         Don't perform gnus-configure-windows here; reuse existing sticky
5312         article buffer.
5313
5314         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5315         it doesn't exist in gnus-article-mode.
5316
5317 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5318
5319         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5320         (gnus-agent-decoded-group-name): New function.
5321         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5322         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5323
5324 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5325
5326         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5327         Add binding for gnus-sticky-article.
5328         (gnus-summary-exit): Don't kill sticky article buffers.
5329
5330         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5331         article buffer.
5332         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5333         (gnus-kill-sticky-article-buffers): New commands.
5334
5335 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5336
5337         * nntp.el (nntp-xref-number-is-evil): New server variable.
5338         (nntp-find-group-and-number): If it is non-nil, don't trust article
5339         numbers in the Xref header.
5340
5341 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5342
5343         * gnus-agent.el (gnus-agent-read-group): New function.
5344         (gnus-agent-flush-group, gnus-agent-expire-group)
5345         (gnus-agent-regenerate-group): Use it.
5346         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5347         nnmail-pathname-coding-system.
5348
5349 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5350
5351         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5352
5353         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5354         that are unread as unread, and also as selected so that information of
5355         marks having been changed by a user may be updated when exiting group.
5356
5357 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5358
5359         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5360         calculated ignoring signature parts to gnus-treat-article.
5361
5362 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5363
5364         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5365         a point here in order to keep the window start.
5366         (gnus-insert-mime-security-button): Make a button overlay without the
5367         front stickiness.
5368         (gnus-mime-display-security): Goto the end of a button.
5369
5370         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5371
5372 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5373
5374         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5375         group-name-at-point.
5376         (gnus-group-completing-read): New function that offers decoded
5377         non-ASCII group names for completion.
5378         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5379         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5380         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5381         (gnus-group-fetch-control): Use it.
5382         (gnus-fetch-group): Use group-name-at-point for the initial value
5383         rather than the default value; use gnus-alive-p.
5384
5385         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5386         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5387         (gnus-summary-post-news): Use gnus-group-completing-read.
5388
5389         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5390         (gnus-read-move-group-name): Decode group name for completion.
5391
5392 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5393
5394         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5395         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5396         Yamaoka slightly modified the code).
5397
5398 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5399
5400         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5401         (nnmail-split-incoming): Bind it.
5402
5403         * nnml.el (nnml-group-name-charset): New function.
5404         (nnml-decoded-group-name): Use it; don't decode group name if
5405         nnmail-group-names-not-encoded-p is non-nil.
5406         (nnml-encoded-group-name): New function.
5407         (nnml-group-pathname): Inline nnml-decoded-group-name.
5408         (nnml-request-expire-articles): Decode group name in message.
5409         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5410         nnmail-pathname-coding-system.
5411         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5412         not decoded ones according to nnmail-group-names-not-encoded-p.
5413         (nnml-generate-active-info): Use nnml-encoded-group-name.
5414
5415 2007-08-08  Glenn Morris  <rgm@gnu.org>
5416
5417         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5418         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5419         doc-strings and comments.
5420
5421 2007-07-25  Glenn Morris  <rgm@gnu.org>
5422
5423         * Relicense all FSF files to GPLv3 or later.
5424
5425 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5426
5427         * gnus-sum.el (gnus-summary-move-article): Make
5428         gnus-summary-respool-article work.
5429
5430 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5431
5432         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5433         string.
5434
5435 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5436
5437         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5438         that should be ignored when comparing distant RSS articles with local
5439         ones.
5440         (nnrss-make-hash-index): New function.  Create a hash index according
5441         to the ignored fields.
5442         (nnrss-check-group): Use it.
5443
5444 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5445
5446         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5447
5448         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5449
5450         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5451         the new optional argument ENCODED is non-nil.
5452         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5453         coding system for encoding group name.
5454         (gnus-group-make-rss-group): Pass un-encoded group name to
5455         gnus-group-make-group.
5456         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5457         encoded.
5458
5459         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5460         Encode group name to which articles are moved or copied.
5461         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5462         coding system for encoding Newsgroup, Followup-To and Xref headers.
5463
5464         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5465         marks; use nnheader-file-coding-system to write a file.
5466         (nnagent-retrieve-headers): Bind file-name-coding-system to
5467         nnmail-pathname-coding-system.
5468
5469         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5470
5471         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5472         (nnml-request-article, nnml-request-create-group)
5473         (nnml-request-rename-group, nnml-find-id)
5474         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5475         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5476         (nnml-save-marks): Use nnml-group-pathname instead of
5477         nnmail-group-pathname.
5478
5479         (nnml-request-create-group, nnml-request-expire-articles)
5480         (nnml-request-move-article, nnml-request-delete-group)
5481         (nnml-deletable-article-p, nnml-possibly-create-directory)
5482         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5483         (nnml-open-marks): Bind file-name-coding-system to
5484         nnmail-pathname-coding-system.
5485
5486         (nnml-request-article): Pass server argument to nnml-find-group-number.
5487         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5488         server argument to nnml-possibly-create-directory.
5489         (nnml-request-accept-article): Pass server argument to
5490         nnml-active-number and nnml-save-mail.
5491         (nnml-find-group-number): Pass server argument to nnml-find-id.
5492         (nnml-request-update-info): Pass server argument to
5493         nnml-marks-changed-p.
5494
5495         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5496         (nnml-save-mail, nnml-active-number): Add server argument.
5497
5498         (nnml-request-delete-group): Warn if group is missing.
5499         (nnml-get-nov-buffer): Decode group name.
5500         (nnml-generate-active-info): Encode group name.
5501         (nnml-open-marks): Decode group name in messages.
5502
5503 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5504
5505         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5506         if it is not specified.
5507         (gnus-article-pipe-part, gnus-article-save-part)
5508         (gnus-article-interactively-view-part, gnus-article-copy-part)
5509         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5510         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5511         (gnus-article-replace-part, gnus-article-delete-part)
5512         (gnus-article-view-part-as-type): Pass raw prefix argument to
5513         gnus-article-part-wrapper.
5514
5515 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5516
5517         * gnus-agent.el (gnus-agent-save-active): Bind
5518         nnheader-file-coding-system to gnus-agent-file-coding-system.
5519
5520         * gnus-cache.el (gnus-cache-save-buffers)
5521         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5522         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5523         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5524         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5525         (gnus-cache-generate-active, gnus-cache-rename-group)
5526         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5527         (gnus-cache-update-overview-total-fetched-for): Bind
5528         file-name-coding-system to nnmail-pathname-coding-system.
5529         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5530         variables.
5531         (gnus-cache-decoded-group-name): New function.
5532         (gnus-cache-file-name): Use it.
5533         (gnus-cache-generate-active): Use non-decoded group name for active.
5534
5535         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5536         right place.
5537         (gnus-write-active-file): Don't break non-ASCII group names.
5538
5539         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5540         nnmail-pathname-coding-system.
5541
5542         * lpath.el: Bind default-file-name-coding-system,
5543         file-name-coding-system and language-info-alist for XEmacs.
5544
5545         * gnus-uu.el (gnus-uu-decode-save): Typo.
5546
5547 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5548
5549         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5550
5551 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5552
5553         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5554         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5555         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5556         (gnus-agent-flush-group, gnus-agent-flush-cache)
5557         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5558         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5559         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5560         (gnus-agent-regenerate-group)
5561         (gnus-agent-update-files-total-fetched-for)
5562         (gnus-agent-update-view-total-fetched-for): Bind
5563         file-name-coding-system to nnmail-pathname-coding-system.
5564         (gnus-agent-group-pathname): Don't encode file names by
5565         nnmail-pathname-coding-system.
5566         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5567         coding-system-for-write instead of buffer-file-coding-system to
5568         gnus-agent-file-coding-system.
5569
5570         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5571         Decode group name.
5572
5573         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5574
5575         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5576         (gnus-read-newsrc-el-file): Make group names unibyte.
5577
5578         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5579         nnmail-pathname-coding-system.
5580
5581         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5582         (nnrss-request-delete-group): Bind file-name-coding-system to
5583         nnmail-pathname-coding-system.
5584         (nnrss-read-server-data, nnrss-read-group-data): Bind
5585         file-name-coding-system correctly.
5586         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5587
5588         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5589         (nntp-server-to-method-cache): New variable.
5590         (nntp-group-pathname): New function that decodes non-ASCII group names.
5591         (nntp-possibly-create-directory, nntp-marks-changed-p)
5592         (nntp-save-marks, nntp-open-marks): Use it.
5593         (nntp-possibly-create-directory, nntp-open-marks):
5594         Bind file-name-coding-system to nnmail-pathname-coding-system.
5595         (nntp-open-marks): Decode group names when bootstrapping marks.
5596
5597         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5598         Newsgroups and Folowup-To headers.
5599
5600 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5601
5602         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5603         (gnus-server-closed-face, gnus-server-denied-face)
5604         (gnus-server-offline-face): Remove variable.
5605         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5606
5607         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5608         of modifying message-stack directly for XEmacs.
5609
5610         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5611         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5612         if the coding-system argument is nil for XEmacs.
5613
5614         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5615         mm-charset-override-alist.
5616
5617         * rfc2047.el: Don't require base64; require rfc2045 for the function
5618         rfc2045-encode-string.
5619         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5620         to quote the parameter value.
5621
5622 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5623
5624         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5625         form in gnus-group-name-charset-method-alist.
5626
5627         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5628         overrides the default layout edit-form.
5629
5630         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5631
5632         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5633
5634 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5635
5636         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5637         as unfetched articles.
5638
5639 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5640
5641         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5642
5643 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5644
5645         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5646         original back end that keeps marks in the local system.
5647
5648 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5649
5650         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5651         arg of pop-to-buffer for XEmacs.
5652         (gnus-article-read-summary-keys): Ditto; don't restore window
5653         configuration if summary command ends up with neither article buffer
5654         nor summary buffer; describe bindings if summary keys end with C-h.
5655
5656 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5657
5658         * message.el (message-fix-before-sending): Skip raw message part to be
5659         forwarded while checking illegible text.
5660         (message-forward-make-body-mime, message-forward-make-body): Mark
5661         signed or encrypted raw message as having no illegible text.
5662
5663 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5664
5665         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5666         (gnus-message-with-timestamp-1): New macro.
5667         (gnus-message-with-timestamp): New function.
5668         (gnus-message): Use them.
5669
5670         * nnheader.el (nnheader-message): Use them.
5671
5672 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5673
5674         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5675         .newsrc.eld file.
5676
5677 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5678
5679         * gnus-agent.el (gnus-agent-fetch-headers)
5680         (gnus-agent-retrieve-headers): Bind
5681         gnus-decode-encoded-address-function to identity.
5682
5683         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5684         available also when the server returns simply a dot.
5685
5686         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5687
5688 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5689
5690         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5691
5692 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5693
5694         * gnus-ems.el (gnus-x-splash): Make it work.
5695
5696         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5697         from being used.
5698
5699         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5700
5701 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5702
5703         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5704         4th and the 5th arguments.
5705
5706         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5707         the front stickiness.
5708         (gnus-article-summary-command-nosave): Correct the order of the
5709         arguments passed to pop-to-buffer.
5710         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5711         summary command ends up with the article buffer.
5712
5713         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5714         the same faces.
5715
5716 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5717
5718         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5719
5720 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5721
5722         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5723         * gnus-sum.el (gnus-summary-highlight):
5724         * pgg.el (pgg-sign-region, pgg-sign):
5725         * mail-source.el (mail-source-delete-old-incoming-confirm):
5726         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5727
5728 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5729
5730         * gnus-art.el (gnus-mime-view-part-externally)
5731         (gnus-mime-view-part-internally): Fix predicate function passed to
5732         completing-read.
5733
5734         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5735
5736         * gnus.el (gnus-update-message-archive-method): Add :version.
5737
5738 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5739
5740         * gnus.el (gnus-update-message-archive-method): New variable.
5741
5742         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5743         according to gnus-message-archive-method if
5744         gnus-update-message-archive-method is non-nil.
5745
5746 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5747
5748         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5749         by Loic Dachary <loic@dachary.org>.
5750         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5751
5752 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5753
5754         * message.el (message-pop-to-buffer): Add switch-function argument.
5755         (message-mail): Pass switch-function argument to it.
5756
5757 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5758
5759         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5760         Improve doc string.
5761
5762 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5763
5764         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5765         (gnus-header-content)
5766         * gnus-cite.el (gnus-cite-10)
5767         * gnus-srvr.el (gnus-server-closed)
5768         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5769         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5770         (gnus-group-mail-3-empty, gnus-group-mail-low)
5771         (gnus-group-mail-low-empty, gnus-splash)
5772         * message.el (message-header-to, message-header-cc)
5773         (message-header-subject, message-header-other, message-header-name)
5774         (message-header-xheader, message-separator, message-cited-text)
5775         (message-mml): Lighten colors of faces used for dark background.
5776
5777 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5778
5779         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5780         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5781
5782 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5783
5784         * message.el (message-narrow-to-headers-or-head):
5785         Ignore mail-header-separator in the body.
5786
5787 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5788
5789         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5790         same as window size.
5791
5792 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5793
5794         * message.el (message-font-lock-keywords): Use message-header-xheader
5795         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5796         ahead of the anything pattern, to get it recognised.
5797
5798 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5799
5800         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5801         spam.el loads uses it in the compiled defadvice form.
5802
5803 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5804
5805         * gnus-sum.el (gnus-articles-to-read)
5806         (gnus-summary-insert-old-articles): Don't truncate group name for
5807         `read-string'.
5808
5809         * gnus-util.el (gnus-limit-string): Delete this function.
5810
5811         * gnus-sum.el (gnus-simplify-subject-fully): Use
5812         `truncate-string-to-width' instead.
5813
5814 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5815
5816         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5817         if, on summary exit, the next group has to be selected.
5818         (gnus-summary-exit): Use it.
5819
5820 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5821
5822         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5823         non-break space.
5824
5825 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5826
5827         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5828         Check if group is not a directory.
5829         (nnfolder-request-expire-articles): Don't delete articles if the target
5830         group is not available.
5831
5832         * nnml.el (nnml-request-create-group): Properly check if group is not a
5833         file.
5834         (nnml-request-expire-articles): Don't delete articles if the target
5835         group is not available.
5836
5837         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5838         Don't quote characters that are within parentheses.
5839
5840 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5841
5842         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5843         (gnus-handle-ephemeral-exit): Select article according to it.
5844
5845 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5846
5847         * message.el (message-insert-formated-citation-line): Remove newline.
5848         (message-citation-line-format): Add final \n here so that the user can
5849         avoid a blank line.
5850
5851 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5852
5853         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5854         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5855         Update lanl/arXiv support.
5856
5857 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5858
5859         * gnus.el: Bump version number.
5860
5861 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5862
5863         * gnus.el (gnus-version-number): Bump version.
5864
5865 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5866
5867         * gnus.el: No Gnus v0.6 is released.
5868
5869 2007-04-27  Didier Verna  <didier@xemacs.org>
5870
5871         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5872         * gmm-utils.el (gmm-regexp-concat): here.
5873         * message.el: Don't require 'gnus-util.
5874         (message-dont-reply-to-names): Handle name change above.
5875         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5876
5877 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5878
5879         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5880         since the initial value varies according to the system.
5881
5882 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5883
5884         * mm-util.el (mm-charset-synonym-alist): Defcustom.
5885
5886 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5887
5888         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
5889
5890 2007-04-24  Didier Verna  <didier@xemacs.org>
5891
5892         Improve the type of gnus-ignored-from-addresses.
5893         * gnus-util.el (gnus-orify-regexp): New function.
5894         * message.el (gnus-util): Require it.
5895         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
5896         * gnus-sum.el (gnus-ignored-from-addresses): New function.
5897         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
5898
5899 2007-04-24  Didier Verna  <didier@xemacs.org>
5900
5901         * gnus-sum.el:
5902         * gnus-utils.el: Fix some trailing whitespaces.
5903
5904 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5905
5906         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
5907         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
5908         article's Message-ID; refer parent article in summary buffer.
5909
5910         * message.el (message-bounce): Call mime-to-mml.
5911
5912         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
5913         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
5914         optimize and/or forms properly.
5915
5916 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
5917
5918         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
5919         URL.
5920
5921 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5922
5923         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
5924
5925 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5926
5927         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
5928         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
5929         displayed of multipart/alternative part if it is invoked from summary
5930         buffer.
5931
5932         * mm-view.el (mm-inline-text-html-render-with-w3m)
5933         (mm-inline-text-html-render-with-w3m-standalone)
5934         (mm-inline-render-with-function): Use mail-parse-charset by default.
5935
5936 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
5937
5938         * parse-time.el (parse-time-string-chars): Check if CHAR
5939         is less than the length of parse-time-syntax.
5940
5941 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5942
5943         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
5944         from gnus-newsgroup-processable.
5945
5946 2007-04-16  Didier Verna  <didier@xemacs.org>
5947
5948         * gnus-msg.el (gnus-configure-posting-styles): Handle
5949         message-signature-directory properly with :file syntax.  Reported by
5950         "Leo".
5951
5952 2007-04-11  Didier Verna  <didier@xemacs.org>
5953
5954         New user option: message-signature-directory.
5955         * gnus-msg.el (gnus-configure-posting-styles): Support it.
5956         * message.el (message-insert-signature): Ditto.
5957         * message.el (message-signature-file): Doc update.
5958         * message.el (message-signature-directory): New.
5959
5960 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5961
5962         * gnus-msg.el (gnus-inews-yank-articles): Use
5963         message-exchange-point-and-mark instead of exchange-point-and-mark.
5964
5965 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5966
5967         * message.el (message-yank-original): Make sure cited text ends with
5968         newline; don't exchange point and mark.
5969
5970 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
5971
5972         * tls.el (open-tls-stream): Properly handle case where there
5973         is no associated buffer.
5974
5975 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
5976
5977         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
5978         message-yank-original, make sure (< mark TEXT point).
5979
5980 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
5981
5982         * message.el (message-fill-column): New variable.
5983         (message-mode): Use it.  Add comment on a possible new hook.
5984
5985         * nnmail.el (nnmail-spool-file): Mark as obsolete.
5986         (nnmail-get-new-mail): Reformat.
5987
5988         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
5989
5990         * gmm-utils.el: Fix Commentary.
5991         (gmm-tool-bar-from-list): Fix typo in doc string.
5992
5993 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
5994
5995         * message.el (message-yank-original): Don't switch point and mark
5996         unnecessarily to put point and mark as documented.
5997
5998 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5999
6000         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
6001         from the message heads.
6002
6003 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
6004
6005         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
6006         article buffer does not have a window.  This may not be the best
6007         solution but is certainly better than setting the start of the null,
6008         that is the current, window.
6009
6010 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6011
6012         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6013         (gnus-draft-setup): Run it.
6014
6015         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6016         gnus-score-fast-scoring.  Allow regexp.
6017         (gnus-score-headers): Use it.
6018
6019         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6020         XEmacs.
6021
6022         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6023         string.
6024         (gnus-button-alist): Also catch `<f1> k ...'.
6025         (gnus-treat-display-x-face): Fix doc string.
6026
6027 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6028
6029         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6030         evaluation of gnus-extended-version to ensure correct generation of the
6031         User-Agent header when message-generate-headers-first is used.
6032
6033 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6034
6035         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6036         hashcash-path is nil.  Don't call callback with incorrect number of
6037         parameters if val is 0.
6038
6039 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6040
6041         * message.el (message-required-news-headers):
6042         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6043
6044 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6045
6046         * tls.el (open-tls-stream): In handshake-waiting loop,
6047         don't wait more if there is output available to process.
6048
6049 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6050
6051         * tls.el (tls-program): Doc fix.
6052
6053 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6054
6055         * message.el (message-generate-new-buffers): Change the meaning of the
6056         nil value; add `standard' to the choices; treat t as `unique'; improve
6057         doc string.
6058         (gnus-select-frame-set-input-focus): Autoload.
6059         (message-buffer-name): Search for the existing message buffer if
6060         message-generate-new-buffers is nil or `standard'; treat the value t of
6061         message-generate-new-buffers as `unique'.
6062         (message-pop-to-buffer): Raise the frame already displaying the message
6063         buffer; clear the echo area after querying.
6064         (message-setup): Pass the `continue' argument to compose-mail.
6065         (message-mail): Prefer `switch-function' if it is given; search for the
6066         existing message buffer if the `continue' argument is non-nil; pass
6067         continue and switch-function arguments to compose-mail by way of
6068         message-setup.
6069         (message-mail-other-window): Adjust argument of message-setup.
6070         (message-mail-other-frame): Ditto.
6071
6072 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6073
6074         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6075         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6076         to turn font-lock on when turning gnus-message-citation-mode on.
6077
6078 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6079
6080         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6081         (mml-smime-function-alist): New variable; add epg as the backend.
6082         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6083         mml-smime- functions instead.
6084         * mm-view.el: Require smime.
6085
6086 2007-03-05  Didier Verna  <didier@xemacs.org>
6087
6088         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6089         instead of just inheritance for posting styles.
6090         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6091
6092 2007-02-24  Chris Moore  <dooglus@gmail.com>
6093
6094         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6095         * pgg-pgp.el (pgg-pgp-encrypt-region):
6096         * pgg-gpg.el (pgg-gpg-encrypt-region):
6097         Check pgg-encrypt-for-me if no other recipients.
6098
6099 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6100
6101         * tls.el (tls-certtool-program): Fix custom type.
6102
6103 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6104
6105         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6106         and point-at-eol instead of line-(beginning|end)-position.
6107
6108         * assistant.el (assistant-parse-buffer): Ditto.
6109
6110         * netrc.el (netrc-parse-services): Ditto.
6111
6112 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6113
6114         * mml2015.el (mml2015-epg-find-usable-key): New function.
6115         (mml2015-epg-sign): Use it.
6116         (mml2015-epg-encrypt): Use it.
6117
6118 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6119
6120         * message.el (message-make-in-reply-to): Quote name containing
6121         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6122         if there are special characters.  Reported by NAKAJI Hiroyuki
6123         <nakaji@jp.freebsd.org>.
6124
6125 2007-02-27  Didier Verna  <didier@xemacs.org>
6126
6127         Include the group parameters as well as the topic ones in the
6128         inheritance filter process.
6129         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6130         argument GROUP-PARAMS-LIST.
6131         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6132
6133 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6134
6135         * nntp.el (nntp-never-echoes-commands)
6136         (nntp-open-connection-functions-never-echo-commands): New variables.
6137         (nntp-send-command): Use them.
6138
6139 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6140
6141         * mml2015.el (mml2015-epg-verify): Simplified.
6142
6143 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6144
6145         * mml.el (mml-content-disposition-alist): New user option.
6146         (mml-content-disposition): New function.
6147         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6148         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6149
6150 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6151
6152         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6153         verification.
6154
6155 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6156
6157         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6158         articles posted in the last 24 hours.
6159
6160 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6161
6162         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6163
6164 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6165
6166         * nntp.el (nntp-send-command): Don't wait for echoes when
6167         nntp-open-ssl-stream is used.
6168
6169 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6170
6171         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6172         (gnus-message-add-citation-keywords)
6173         (gnus-message-remove-citation-keywords): Remove.
6174         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6175         directly, make the variables in font-lock-defaults buffer-local, add
6176         gnus-message-citation-keywords to them and then update the value of
6177         font-lock-keywords.
6178
6179 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6180
6181         * message.el (message-cite-original-1): Don't call
6182         gnus-article-highlight-citation.
6183
6184         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6185         citations; fix line count.
6186
6187 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6188
6189         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6190         (gnus-message-add-citation-keywords)
6191         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6192         versions of font-lock-add-keywords and font-lock-remove-keywords to
6193         work with XEmacs correctly.
6194
6195 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6196
6197         * gnus-cite.el (gnus-cite-face-list): Set the values of
6198         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6199         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6200         (gnus-message-cite-prefix-regexp): New variable.
6201         (gnus-message-search-citation-line): Use it; protect against long
6202         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6203         the 0th match data for Emacs.
6204         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6205         (gnus-message-add-citation-keywords): Append keywords rather than
6206         prepending; emulate font-lock-add-keywords if it is not available.
6207         (gnus-message-remove-citation-keywords): Emulate
6208         font-lock-remove-keywords if it is not available.
6209
6210         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6211
6212         * message.el (message-cite-prefix-regexp): Set the value of
6213         gnus-message-cite-prefix-regexp.
6214
6215 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6216
6217         * nnweb.el (nnweb-google-parse-1): Update parser.
6218
6219 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6220
6221         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6222
6223 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6224
6225         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6226         regexp.
6227
6228 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6229
6230         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6231         string-to-multibyte.
6232         (uudecode-decode-region-internal): Use it.
6233
6234         * lpath.el: Fbind string-as-multibyte for XEmacs.
6235
6236 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6237
6238         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6239         custom choice.
6240
6241         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6242
6243 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6244
6245         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6246
6247         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6248         `write-region' to respect `mm-inhibit-file-name-handlers'.
6249
6250 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6251
6252         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6253         Use gnus-home-directory instead of "~/" or "$HOME".
6254
6255 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6256
6257         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6258         to mention filename.
6259         Add comments at beginning regarding usage.
6260         (encrypt-write-file-contents): Change interactive so a string is
6261         acceptable.  If the file has no associated model, show an error instead
6262         of a nonsense prompt.
6263
6264 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6265
6266         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6267         Thanks to Yoshihiko Yamada for kind notification of this typo.
6268
6269 2007-01-12  Kenichi Handa  <handa@m17n.org>
6270
6271         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6272         multibyte buffer.
6273
6274 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6275
6276         * gnus-score.el (gnus-score-fast-scoring): New variable.
6277         (gnus-score-headers): Use it.
6278
6279         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6280
6281         * message.el (message-cite-original-1): Call
6282         gnus-article-highlight-citation if requested.
6283         (message-make-from): Allow name and address as optional arguments.
6284
6285         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6286
6287         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6288         bugs to doc string.
6289         (gnus-button-alist): Add mid\\|message-id.
6290         (gnus-button-fetch-group): Extend for use in
6291         `browse-url-browser-function'.
6292         (gnus-button-url-regexp): Try to catch paired parentheses like in
6293         Wikipedia URLs.
6294
6295         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6296         Suggested by Simon Krahnke <overlord@gmx.li>.
6297
6298 2007-01-13  Romain Francoise  <romain@orebokech.com>
6299
6300         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6301         Update copyright.
6302
6303 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6304
6305         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6306
6307 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6308
6309         * gnus-registry.el (gnus-registry-unfollowed-groups)
6310         (gnus-registry-split-fancy-with-parent): Fix documentation.
6311
6312 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6313
6314         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6315         from nnweb groups.
6316
6317 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6318
6319         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6320         Xref urls.  Erase buffer before requesting head.
6321
6322 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6323
6324         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6325         customizable.
6326
6327 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6328
6329         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6330         no signing key is found.
6331         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6332         no encrypting and/or signing key is found.
6333
6334 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6335
6336         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6337
6338 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6339
6340         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6341         headers read from disk with the ones newly found in the current search.
6342         This should no longer cause problems, because the article numbers in
6343         Gmane's `nov.php' output are ignored since the previous change.
6344
6345 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6346
6347         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6348
6349 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6350
6351         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6352         replace-regexp-in-string; bind url-version; fbind display-images-p and
6353         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6354         find-face and set-itimer-function for Emacs; bind itimer-list for
6355         Emacs.
6356
6357         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6358
6359 2007-01-01  Romain Francoise  <romain@orebokech.com>
6360
6361         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6362
6363 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6364
6365         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6366         `define-minor-mode' macro definition expanded properly.
6367         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6368         exclude it there.
6369
6370         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6371         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6372         `fboundp' test.
6373         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6374         This is OK to autoload in (S)XEmacs now.
6375
6376 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6377
6378         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6379         keystroke.
6380         (gnus-summary-limit-to-singletons): Fix typo.
6381
6382         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6383         else fails.
6384
6385 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6386
6387         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6388         docstring.
6389
6390         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6391         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6392         (gnus-summary-insert-dormant-articles): Fix typo in message.
6393
6394 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6395
6396         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6397         nil for XEmacs.
6398         (gnus-message-citation-mode): Don't autoload in XEmacs.
6399
6400         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6401
6402 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6403
6404         * nnimap.el (nnimap-expunge-search-string): Mention
6405         nnimap-search-uids-not-since-is-evil in docstring.
6406
6407 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6408
6409         * spam.el: Revert to make-obsolete-variable because
6410         define-obsolete-variable-alias is not supported in Emacs 21.
6411
6412         * spam.el (spam-ifile-path, spam-ifile-database-path)
6413         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6414         make-obsolete-variable.
6415         (spam-bsfilter-path, spam-bsfilter-program)
6416         (spam-spamassassin-path, spam-spamassassin-program)
6417         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6418         use "path" inappropriately.
6419         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6420         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6421         variable names.
6422
6423 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6424
6425         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6426         summary buffer.
6427
6428         * password.el (password-cache-remove): Use clear-string to burn
6429         password, if available.
6430
6431 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6432
6433         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6434
6435         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6436
6437         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6438         (gnus-message-highlight-citation): Move defcustom here from
6439         gnus-cite.el.
6440         (gnus-message-citation-mode): Autoload.
6441
6442         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6443         checks to make it compile with XEmacs.
6444         (gnus-message-citation-mode): New minor mode.
6445         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6446         (gnus-message-highlight-citation): New variables.
6447         (gnus-message-search-citation-line)
6448         (gnus-message-add-citation-keywords)
6449         (gnus-message-remove-citation-keywords)
6450         (turn-on-gnus-message-citation-mode)
6451         (turn-off-gnus-message-citation-mode): New functions.
6452
6453 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6454
6455         * gnus-cite.el: Enable highlighting of different citation levels in
6456         message-mode.
6457
6458 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6459
6460         * message.el (message-make-fqdn): Fix comment.
6461         (message-bogus-system-names): Add ".local".
6462
6463         * spam.el (spam-ifile-path, spam-ifile-program)
6464         (spam-ifile-database-path, spam-ifile-database)
6465         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6466         Don't use "path" inappropriately.
6467         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6468         strings.
6469         (spam-check-ifile, spam-ifile-register-with-ifile)
6470         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6471         new variable names.
6472
6473         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6474         (gnus-treat-display-smileys): Simplify using
6475         gnus-image-type-available-p.
6476
6477         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6478         available.
6479
6480         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6481         `display-images-p' if available.
6482
6483 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6484
6485         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6486         one after turning on the buffer's multibyteness instead of decoding
6487         them directly in the unibyte buffer that causes unexpected conversion
6488         in Emacs 23 (unicode).
6489
6490 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6491
6492         * message.el (message-generate-hashcash): Fix custom type.
6493
6494 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6495
6496         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6497
6498 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6499
6500         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6501         disconnect icons.  Add help text.
6502
6503 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6504
6505         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6506         negated to be consistent with the others we handle.
6507
6508 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6509
6510         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6511         version of gnus-summary-buffer to something, so that we can use two
6512         article buffers at the same time.
6513
6514 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6515
6516         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6517         trigger all the extra headers.
6518         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6519         sorting.
6520
6521 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6522
6523         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6524         solid groups.
6525
6526 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6527
6528         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6529
6530 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6531
6532         * legacy-gnus-agent.el: Add Copyright notice.
6533
6534 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6535
6536         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6537
6538 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6539
6540         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6541
6542         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6543         to make it work reliably in CVS Emacs.
6544         (gnus-summary-limit-strange-charsets-predicate)
6545         (gnus-summary-limit-to-predicate): New functions.
6546
6547 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6548
6549         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6550         specifying array size.
6551         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6552         array if it is too small.
6553         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6554         (gnus-sort-threads-loop): New function.
6555
6556 2006-12-06  Chris Moore  <dooglus@gmail.com>
6557
6558         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6559         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6560
6561 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6562
6563         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6564         options.
6565
6566 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6567
6568         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6569         DOS-ing the recipient.
6570
6571         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6572         the headers when creating the mapping to avoid mismappings.
6573         (nnweb-gmane-create-mapping): Always nix out old mapping.
6574
6575 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6576
6577         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6578         and mm-verify-option to never.
6579
6580 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6581
6582         * message.el (message-signed-or-encrypted-p): New function.
6583         (message-forward-make-body): Use it.
6584
6585         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6586         Replace encode-coding-string with mm-encode-coding-string.
6587
6588 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6589
6590         * nneething.el (nneething-decode-file-name): Replace
6591         decode-coding-string with mm-decode-coding-string.
6592
6593         * gnus-int.el (gnus-open-server): Say failed server's name.
6594
6595 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6596
6597         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6598         strings to a single string.  Quote `errors-file-name'.
6599         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6600         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6601         Adjust calls.  Use `shell-quote-argument'.
6602
6603 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6604
6605         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6606         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6607
6608         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6609         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6610         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6611         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6612         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6613         (gnus-subscribe-newsgroup, gnus-1):
6614         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6615         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6616         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6617         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6618
6619 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6620
6621         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6622         keystroke.
6623         (gnus-summary-limit-to-bodies): Implement headersp.
6624
6625 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6626
6627         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6628
6629 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6630
6631         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6632
6633 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6634
6635         * message.el (message-generate-hashcash): Expand range of values to
6636         include `opportunistic'.
6637         (message-send-mail): Use it.
6638
6639 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6640
6641         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6642         and comment it.
6643
6644         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6645
6646 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6647
6648         * gnus-util.el (gnus-extract-address-components): Improve comment.
6649
6650 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6651
6652         * gnus-util.el (gnus-extract-address-components): Work with address in
6653         which the name portion contains @.
6654
6655         * lpath.el: Fbind custom-autoload.
6656
6657 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6658
6659         * gnus.el (gnus-start): Move custom group up.
6660         (gnus-select-method): Don't autoload, but make it available for
6661         `customize-variable'.
6662         (gnus-getenv-nntpserver): Don't autoload.
6663
6664 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6665
6666         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6667
6668 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6669
6670         * message.el (message-sendmail-extra-arguments): New variable.
6671         (message-send-mail-with-sendmail): Use it.
6672
6673 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6674
6675         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6676         mm-with-unibyte-current-buffer to make string unibyte.
6677
6678         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6679         mm-string-as-multibyte.
6680
6681 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6682
6683         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6684         Reported by Werner Koch <wk@gnupg.org>.
6685
6686 2006-11-14  Daiki Ueno  <ueno@p360>
6687
6688         * mml2015.el: Autoload epa-select-keys when compiling.
6689
6690 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6691
6692         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6693         message-options.
6694         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6695
6696 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6697
6698         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6699         EasyPG (< 0.0.6).
6700         (mml2015-always-trust): New user option.
6701         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6702         prompt.
6703
6704 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6705
6706         * nntp.el (nntp-authinfo-force): New variable.
6707         (nntp-send-authinfo): Use it.
6708
6709 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6710
6711         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6712         decode encoded words.  Improve prompt.  Add comment about forwarding.
6713         (message-replacement-char): Move up.
6714
6715 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6716
6717         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6718         instead of gnus-intersection because arguments of gnus-sorted-nunion
6719         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6720
6721 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6722
6723         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6724         (message-simplify-subject-functions): Enable
6725         message-strip-subject-encoded-words by default.
6726
6727 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6728
6729         * message.el (message-strip-subject-encoded-words): New function.
6730         (message-simplify-subject-functions): New variable.
6731         (message-simplify-subject): Use it.  Fix typo in doc string.
6732         Support message-strip-subject-encoded-words.
6733
6734 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6735
6736         * gnus-diary.el (gnus-diary-delay-format-function):
6737         * nndiary.el (nndiary-reminders):
6738         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6739
6740 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6741
6742         * gnus-art.el (article-hide-boring-headers): Fetch date from
6743         gnus-original-article-buffer to avoid problems with localized date
6744         strings.
6745
6746 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6747
6748         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6749
6750 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6751
6752         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6753         New variables.
6754         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6755         (mm-charset-synonym-alist): Move some entries to
6756         mm-codepage-iso-8859-list.
6757         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6758         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6759
6760 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6761
6762         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6763
6764 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6765
6766         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6767         with Emacs 21 and XEmacs.
6768
6769 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6770
6771         * spam.el (spam-parse-address): New function for better parsing,
6772         catching errors, etc.
6773         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6774
6775 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6776
6777         * mm-view.el: Add interactive arg to html2text autoload.
6778
6779 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6780
6781         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6782
6783 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6784
6785         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6786         variables.
6787         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6788         (mm-charset-synonym-alist): Move some entries to
6789         mm-codepage-iso-8859-list.
6790
6791         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6792
6793 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6794
6795         * message.el (message-citation-line-format)
6796         (message-insert-formated-citation-line): Fix implementation of %E, %N
6797         and %n according to the doc string.
6798
6799 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6800
6801         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6802         car-safe to avoid bad parses.
6803
6804 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6805
6806         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6807         names.
6808
6809         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6810
6811 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6812
6813         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6814         header.
6815
6816         * message.el (message-draft-headers): Add Date.
6817         (message-headers-to-generate): Fix typo in docstring.
6818
6819         * nndraft.el (nndraft-required-headers): New variable.
6820         (nndraft-generate-headers): Use it.
6821
6822         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6823
6824 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6825
6826         * gnus-registry.el (gnus-registry-wash-for-keywords)
6827         (gnus-registry-find-keywords): New functions to allow easy searching of
6828         articles that are in the registry.
6829
6830 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6831
6832         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6833         ietf-drums-parse-address instead of gnus-extract-address-components.
6834         Reported by Damien Elmes <damien@repose.cx>.
6835
6836 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6837
6838         * gnus.el (gnus-mime): Remove unused custom group.
6839
6840 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6841
6842         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6843         "blank line" when searching for end of armor headers.
6844
6845 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6846
6847         * gmm-utils.el (gmm-write-region): Fix variable name.
6848
6849 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6850
6851         * gmm-utils.el (gmm-write-region): New function based on compatibility
6852         code from `mm-make-temp-file'.
6853
6854         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6855
6856         * nnmaildir.el (nnmaildir--update-nov)
6857         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6858         Use `gmm-write-region'.
6859
6860 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6861
6862         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6863         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6864
6865         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6866
6867         * message.el (message-replacement-char): New variable.
6868         (message-fix-before-sending): Use it.
6869         (message-simplify-subject): New function to remove duplicate code.
6870         (message-reply, message-followup): Use it.
6871
6872         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6873         gnus-summary-limit-to-articles.
6874
6875 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6876
6877         * gnus-util.el (gnus-with-local-quit): New macro.
6878
6879         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6880
6881 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6882
6883         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
6884         ignore non-string data.
6885
6886 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
6887
6888         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
6889         non-string data (needs to be done in the registry too).
6890
6891 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6892
6893         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
6894         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
6895         (gnus-registry-split-fancy-with-parent)
6896         (gnus-registry-fetch-simplified-message-subject-fast)
6897         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
6898         Remove text properties on ingress into the registry and when it's saved.
6899         (gnus-registry-clean-empty-function): Fix bug with cleaning the
6900         registry from entries with no groups.
6901
6902 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6903
6904         * gnus-util.el (gnus-string-remove-all-properties): Add utility
6905         function to remove string properties.
6906
6907 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
6908
6909         * gmm-utils.el (gmm): Adjust custom version.
6910
6911         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
6912         custom version.
6913
6914         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
6915
6916 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
6917
6918         * gnus-art.el (gnus-insert-prev-page-button)
6919         (gnus-insert-next-page-button): Simplify.  Reformat.
6920
6921 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6922
6923         * gnus-art.el (gnus-insert-prev-page-button)
6924         (gnus-insert-next-page-button): Apply gnus-article-button-face.
6925
6926 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
6927
6928         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
6929
6930 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6931
6932         * gnus-art.el (gnus-insert-mime-button)
6933         (gnus-insert-mime-security-button):
6934         Apply gnus-article-button-face to MIME and security buttons.
6935
6936 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
6937
6938         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
6939         readable.
6940
6941 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6942
6943         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
6944
6945 2006-09-20  Steve Youngs  <steve@sxemacs.org>
6946
6947         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
6948         `browse-url-of-file' instead of `browse-url'.
6949
6950 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6951
6952         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6953         regexp.  Articles containing quotation were cut prematurely.
6954
6955 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6956
6957         * message.el (message-cite-original-1): Use nobody by default for the
6958         value of From header.
6959         (message-reply): Ditto.
6960
6961 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
6962
6963         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
6964         to the gnus-info.  This fixes a bug of inline-PGP message verification.
6965         Reported by Michael Piotrowski <mxp@dynalabs.de>.
6966
6967 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
6968
6969         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
6970         mails in the doc string.  Add some URLs in comment.
6971         (pop3-movemail): Warn about pop3-leave-mail-on-server.
6972
6973 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6974
6975         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
6976         backslashes handling and the way to find boundaries of quoted strings.
6977
6978 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
6979
6980         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
6981         mml1991-encrypt-to-self is set and mml1991-signers is not set.
6982         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
6983         mml2015-encrypt-to-self is set and mml2015-signers is not set.
6984
6985 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
6986
6987         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
6988         doc string.
6989         (gnus-button-regexp, gnus-button-last): Remove unused variables.
6990
6991 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6992
6993         * lpath.el: Fbind epg-check-configuration.
6994
6995 2006-09-06  Simon Josefsson  <jas@extundo.com>
6996
6997         * mml2015.el (mml2015-use): Doc fix, mention epg.
6998
6999 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7000
7001         * mml2015.el (mml2015-use): Default to epg, if available.
7002
7003 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7004
7005         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
7006         message-sender.
7007         (mml1991-epg-encrypt): Ditto.
7008         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
7009         message-sender.
7010         (mml2015-epg-encrypt): Ditto.
7011
7012 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7013
7014         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7015         several common directories.
7016
7017 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7018
7019         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7020         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7021
7022 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7023
7024         * gnus-art.el (article-decode-encoded-words): Make it fast.
7025
7026 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7027
7028         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7029
7030         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7031         in quoted string into `\'.
7032
7033 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7034
7035         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7036         Use standard-syntax-table.
7037
7038 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7039
7040         * gnus-art.el (gnus-decode-address-function): New variable.
7041         (article-decode-encoded-words): Use it to decode headers which are
7042         assumed to contain addresses.
7043         (gnus-mime-delete-part): Remove useless `or'.
7044
7045         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7046         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7047         (gnus-nov-parse-line): Use it to decode From header.
7048         (gnus-get-newsgroup-headers): Ditto.
7049         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7050
7051         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7052         (mail-decode-encoded-address-string): New alias.
7053
7054         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7055         New function.
7056         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7057         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7058         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7059         (rfc2047-decode-string): Ditto.
7060         (rfc2047-decode-address-region): New function.
7061         (rfc2047-decode-address-string): New function.
7062
7063 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7064
7065         * message.el (message-caesar-buffer-body): Allow rotating headers.
7066
7067         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7068
7069         * message.el (message-insert-formated-citation-line): Fix %f.
7070         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7071
7072 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7073
7074         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7075         (gnus-bookmark-mouse-available-p): New macro.
7076         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7077         (gnus-bookmark-bmenu-show-infos): Use it.
7078         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7079         (gnus-bookmark-bmenu-hide-infos): Ditto.
7080         (gnus-bookmark-remove-properties): New function.
7081         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7082         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7083         (gnus-bookmark-write-file): Bind coding-system-for-write.
7084         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7085         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7086         group before selecting it.
7087         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7088         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7089         quit-window if it is not available; use gnus-mouse-2 and bind it to
7090         gnus-bookmark-bmenu-select-by-mouse.
7091         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7092         (gnus-bookmark-bmenu-select-by-mouse): New function.
7093
7094 2006-08-13  Romain Francoise  <romain@orebokech.com>
7095
7096         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7097         space.
7098
7099 2006-08-10  Romain Francoise  <romain@orebokech.com>
7100
7101         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7102         (dns-mode-soa-auto-increment-serial): New user option.
7103         (dns-mode-soa-maybe-increment-serial): New function.
7104         (dns-mode): Add the latter to `write-contents-functions'.
7105
7106 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7107
7108         * compface.el (uncompface): Use binary rather than raw-text-unix.
7109
7110 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7111
7112         * compface.el (uncompface): Make sure the eol conversion doesn't take
7113         place when communicating with the external programs.  Reported by
7114         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7115
7116 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7117
7118         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7119
7120 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7121
7122         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7123         Make it more robust by parsing author and date independently.
7124
7125 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7126
7127         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7128
7129 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7130
7131         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7132         first matching secret key.
7133         (mml2015-epg-encrypt): Ditto.
7134
7135         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7136         first matching secret key.
7137         (mml1991-epg-encrypt): Ditto.
7138
7139         * mml2015.el (mml2015-encrypt-to-self): New user option.
7140         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7141         mml2015-epg-encrypt-to-self is set.
7142
7143         * mml1991.el (mml1991-encrypt-to-self): New variable.
7144         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7145         mml1991-epg-encrypt-to-self is set.
7146
7147         * mml2015.el (mml2015-signers): New user option.
7148         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7149         (mml2015-epg-encrypt): Allow to select signing keys.
7150
7151         * mml1991.el (mml1991-signers): New variable.
7152         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7153         (mml1991-epg-encrypt): Allow to select signing keys.
7154
7155 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7156
7157         * nnheader.el (nnheader-insert-head): Make it work even if the file
7158         uses CRLF for the line-break code.
7159
7160 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7161
7162         * mml2015.el: Require mml-sec instead of password.
7163         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7164         (mml2015-cache-passphrase): Inherit the default value from
7165         mml-secure-cache-passphrase.
7166         (mml2015-passphrase-cache-expiry): Inherit the default value from
7167         mml-secure-passphrase-cache-expiry.
7168
7169         * mml1991.el: Require mml-sec instead of password.
7170         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7171         (mml1991-cache-passphrase): Inherit the default value from
7172         mml-secure-cache-passphrase.
7173         (mml1991-passphrase-cache-expiry): Inherit the default value from
7174         mml-secure-passphrase-cache-expiry.
7175
7176         * mml-sec.el: Require password.
7177         (mml-secure-verbose): New user option.
7178         (mml-secure-cache-passphrase): New user option.
7179         (mml-secure-passphrase-cache-expiry): New user option.
7180
7181 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7182
7183         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7184         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7185         andreas@altroot.de (Andreas Vögele).
7186
7187         FIXME: Use `tiny change'?
7188
7189 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7190
7191         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7192         workaround for the url package included with Emacs.
7193
7194         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7195
7196 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7197
7198         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7199         correctly.  This fixes a bug caused by the 2006-05-12 change.
7200
7201 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7202
7203         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7204         some information about the error when saying that the `bogus' mail
7205         group will be used.
7206
7207 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7208
7209         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7210         string.
7211
7212 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7213
7214         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7215
7216 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7217
7218         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7219
7220 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7221
7222         * mml1991.el (mml1991-function-alist): Add epg.
7223         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7224         (mml1991-epg-encrypt): New functions.
7225
7226 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7227
7228         * mml2015.el (mml2015-verbose): New variable.
7229         (mml2015-cache-passphrase): Ditto.
7230         (mml2015-passphrase-cache-expiry): Ditto.
7231         (mml2015-function-alist): Add epg.
7232         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7233         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7234         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7235         functions.
7236
7237 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7238
7239         * message.el (message-cite-original-1): Preserve region when removing
7240         quoted text due to X-No-Archive in order to avoid bogus attribution
7241         when citing multiple messages.
7242
7243 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7244
7245         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7246         Kenneth Jacker <khj@be.cs.appstate.edu>.
7247
7248 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7249
7250         * gnus-diary.el (gnus-user-format-function-d)
7251         (gnus-user-format-function-D): Autoload.
7252
7253         * imap.el (Commentary): Fix typo.
7254
7255         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7256         2006-04-22 contribution.
7257
7258 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7259
7260         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7261         It didn't really fix the bogosity I'm seeing with solid web groups.
7262
7263 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7264
7265         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7266         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7267         created using server names.  If we use the feature without declaring
7268         it, Gnus does not properly manage server and group state.
7269
7270         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7271         bound.
7272
7273 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7274
7275         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7276         looking up the method using GROUP's prefix before inventing a new one.
7277         It is used on killed/unknown groups in various places where returning
7278         an all-new method isn't expected by the caller.
7279
7280         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7281         and match semantics of gnus-group-real-prefix.
7282
7283 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7284
7285         * nnmail.el (nnmail-broken-references-mailers): New variable.
7286         (nnmail-ignore-broken-references): New function generalizing
7287         nnmail-fix-eudora-headers.
7288         (nnmail-fix-eudora-headers): Now obsolete.
7289
7290         * gnus-art.el (gnus-button-handle-custom): Support
7291         `customize-apropos*'.
7292
7293 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7294
7295         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7296
7297         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7298         articles.
7299
7300 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7301
7302         * message.el (message-cite-reply-above): New variable.
7303         (message-yank-original): Use it.
7304
7305 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7306
7307         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7308
7309 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7310
7311         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7312         as read.
7313
7314         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7315
7316 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7317
7318         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7319         (gnus-bookmark-default-file): Use gnus-directory.
7320         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7321         Remove "*" in doc string.
7322         (gnus-bookmark-write-file): Simplify.
7323         (gnus-bookmark-maybe-sort-alist): Use `when'.
7324         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7325         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7326         FIXME about Emacs 21 and XEmacs compatibility.
7327         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7328         compatibility.
7329         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7330         compatibility.
7331         (gnus-bookmark-menu-heading): Fix version.
7332
7333 2006-06-19  Bastien Guerry  <bzg@altern.org>
7334
7335         * gnus-bookmark.el: New file.
7336
7337 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7338
7339         * message.el (message-syntax-checks): Doc fix.
7340
7341 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7342
7343         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7344         unsubscribed groups as if they were killed ones.  It causes duplicate
7345         entries in gnus-newsrc-alist.
7346
7347 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7348
7349         * message.el (message-syntax-checks): Doc fix.
7350         (message-send-mail): Add check for continuation headers.
7351         (message-check-news-header-syntax): Fix regexp used to check for
7352         continuation headers.
7353
7354 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7355
7356         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7357
7358 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7359
7360         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7361
7362 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7363
7364         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7365         default-truncate-lines.
7366
7367 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7368
7369         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7370         to fill the utf-8 entry.
7371
7372         * lpath.el: Fbind unicode-precedence-list.
7373
7374 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7375
7376         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7377
7378 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7379
7380         * gnus-agent.el (directory-files-and-attributes): Move all the way
7381         forward (the third and final move).
7382         (gnus-agent-read-agentview): Trap reconstruction errors due to
7383         nonexistant directory.  Handle by returning nil.
7384
7385 2006-05-30  Didier Verna  <didier@xemacs.org>
7386
7387         * message.el (message-dont-reply-to-names): Update the custom type.
7388         * message.el (message-dont-reply-to-names): New defsubst: potentially
7389         convert a list of regexps into a single one.
7390         * message.el (message-get-reply-headers): Use it.
7391         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7392
7393 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7394
7395         * gnus-agent.el (directory-files-and-attributes): Move forward.
7396
7397 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7398
7399         * gnus-ml.el (gnus-mailing-list-subscribe)
7400         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7401         (gnus-mailing-list-message): Fix doc strings.
7402
7403 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7404
7405         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7406         of doing it manually.
7407
7408 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7409
7410         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7411         comment.
7412
7413 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7414
7415         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7416         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7417         (gnus-agent-read-local): All symbols allocated in my-obarray.
7418         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7419         (gnus-agent-regenerate-group): Check numeric names to see if they are
7420         messages or groups.
7421         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7422         better way of do this...)
7423
7424         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7425         'dummy.group' (there should be a better way of do this...)
7426
7427 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7428
7429         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7430         (gnus-saved-headers): Ditto.
7431         (gnus-default-article-saver): Mention functions may have properties.
7432         (gnus-article-save): Override gnus-save-all-headers and
7433         gnus-saved-headers by :headers property which saver function may have.
7434         (gnus-summary-save-in-file): Add :headers property.
7435         (gnus-summary-write-to-file): Ditto.
7436
7437         * gnus-sum.el (gnus-summary-save-article): Bind
7438         gnus-prompt-before-saving to t when saving many articles in a file;
7439         always show all headers.
7440
7441         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7442
7443 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7444
7445         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7446         marks.
7447
7448         * message.el (message-indent-citation): Add optional arguments to allow
7449         using it outside of message buffers.
7450
7451         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7452         (gnus-article-treat-unfold-headers): Use it.
7453         (gnus-article-truncate-lines): New variable.
7454         (gnus-article-mode): Use it.
7455         (gnus-article-toggle-truncate-lines): New function.
7456
7457         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7458         gnus-article-toggle-truncate-lines.
7459
7460         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7461         coding system in XEmacs, use binary.
7462
7463 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7464
7465         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7466         after-load-alist.
7467
7468         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7469         this function should save decoded articles.
7470         (gnus-summary-write-to-file): Use property to specify this function
7471         should save decoded articles and specify gnus-summary-save-in-file
7472         should be used to save articles other than the first one when saving
7473         many articles.
7474         (gnus-summary-save-body-in-file): Use property to specify this
7475         function should save decoded articles.
7476         (gnus-summary-write-body-to-file): Use property to specify this
7477         function should save decoded articles and specify
7478         gnus-summary-save-body-in-file should be used to save articles other
7479         than the first one when saving many articles.
7480
7481         * gnus-sum.el (gnus-summary-save-article): Simplify.
7482
7483 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7484
7485         * gnus-art.el (gnus-default-article-saver): Add
7486         gnus-summary-write-body-to-file.
7487         (gnus-article-save-coding-system): Don't use coding system object
7488         in XEmacs.
7489         (gnus-read-save-file-name): Add optional `dir-var' argument which
7490         specifies directory in which files are saved; work even if optional
7491         `variable' argument is not specified.
7492         (gnus-summary-write-to-file): Read file name.
7493         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7494         (gnus-summary-write-body-to-file): New function.
7495
7496         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7497         (gnus-summary-local-variables): Add it.
7498         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7499         (gnus-summary-save-article): Remove optional `decode' argument;
7500         determine whether to decode articles by the value of
7501         gnus-default-article-saver; when saving many files using
7502         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7503         it first and use gnus-summary-save-in-file or
7504         gnus-summary-save-body-in-file thereafter unless
7505         gnus-prompt-before-saving is always; move point to article which
7506         will be saved.
7507         (gnus-summary-save-article-file): Revert.
7508         (gnus-summary-write-article-file): Revert.
7509         (gnus-summary-save-article-body-file): Revert.
7510         (gnus-summary-write-article-body-file): New function.
7511
7512 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7513
7514         * gnus-art.el (gnus-default-article-saver): Doc fix.
7515         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7516         from gnus-summary-save-article-coding-system, and default to a
7517         certain coding system.
7518         (gnus-output-to-file): Add coding cookie and encode text according
7519         to gnus-article-save-coding-system; don't use mm-append-to-file.
7520
7521         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7522         gnus-art.el and rename to gnus-article-save-coding-system.
7523         (gnus-summary-save-article): Require gnus-art; don't show all
7524         headers if it decodes articles; don't add coding cookie here;
7525         don't bind mm-text-coding-system-for-write.
7526         (gnus-summary-save-article-file): Save decoded articles.
7527         (gnus-summary-write-article-file): When saving many files, use
7528         gnus-summary-write-to-file first and gnus-summary-save-in-file
7529         thereafter unless gnus-prompt-before-saving is always.
7530         (gnus-summary-save-article-body-file): Save decoded articles.
7531
7532         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7533
7534 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7535
7536         * nnrss.el (nnrss-check-group): Bind hash-index.
7537
7538 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7539
7540         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7541         its hash index.  Store this hash in `nnrss-group-data'.
7542         (nnrss-read-group-data): Update accordingly.
7543
7544 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7545
7546         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7547         entry.
7548
7549         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7550         gnus-article-browse-html-article.
7551
7552 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7553
7554         * gnus-sum.el (gnus-summary-mime-map): Add
7555         gnus-article-browse-html-article.
7556
7557         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7558
7559 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7560
7561         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7562         suitable coding systems in customize.
7563
7564 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7565
7566         * mail-source.el (mail-sources): Fix custom type.
7567
7568 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7569
7570         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7571         (gnus-summary-expire-articles-now): Shorten prompt.
7572
7573         * gmm-utils.el (wid-edit): Require.
7574         (defun-gmm): Renamed from `gmm-defun-compat'.
7575         (gmm-image-search-load-path): Use it.
7576         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7577
7578 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7579
7580         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7581         variable.
7582         (gnus-summary-save-article): Add optional `decode' argument.  If
7583         it is set and gnus-summary-save-article-coding-system is non-nil,
7584         save decoded article.
7585         (gnus-summary-write-article-file): Save decoded article if
7586         gnus-summary-save-article-coding-system is non-nil.
7587
7588         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7589         type.
7590
7591 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7592
7593         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7594
7595 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7596
7597         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7598         first to test gnus-single-article-buffer which may be buffer-local.
7599
7600         * gnus-sum.el (gnus-summary-setup-buffer): Make
7601         gnus-single-article-buffer buffer-local and nil in ephemeral
7602         group; make gnus-article-buffer, gnus-article-current, and
7603         gnus-original-article-buffer always buffer-local.
7604         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7605         group.
7606         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7607
7608 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7609
7610         * nnml.el (nnml-request-compact-group): Compressed files might not
7611         have .gz extension.
7612
7613 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7614
7615         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7616         (mm-copy-to-buffer): Use with-current-buffer.
7617         (mm-display-part): Simplify.
7618         (mm-inlinable-p): Add optional arg `type'.
7619
7620 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7621
7622         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7623         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7624         Try harder to show the attachment internally or externally using
7625         gnus-mime-view-part-as-type.
7626
7627 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7628
7629         * message.el (message-from-style, message-signature-separator)
7630         (message-user-organization-file, message-send-mail-function)
7631         (message-citation-line-function, message-yank-prefix)
7632         (message-indent-citation-function, message-signature)
7633         (message-signature-file, message-signature-insert-empty-line):
7634         Remove autoloads.
7635
7636         * gnus-art.el (gnus-buttonized-mime-types): Remove
7637         "multipart/signed".  Revert 2006-04-26 change.
7638
7639 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7640
7641         * gnus.el (gnus-version-number): Bump version.
7642
7643 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7644
7645         * gnus.el: No Gnus v0.5 is released.
7646
7647 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7648
7649         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7650         fetching articles by message-id.
7651
7652 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7653
7654         * message.el (hashcash): Require hashcash as normal.
7655
7656         * ecomplete.el (ecomplete-highlight-match-line): Use
7657         point-at-eol.
7658         (ecomplete-highlight-match-line): Use `highlight', because that
7659         face exists in both Emacs and XEmacs.
7660
7661         * message.el (message-display-abbrev): Use point-at-bol.
7662
7663         * mail-source.el: Don't require timer/timer-funcs.
7664
7665         * gnus-async.el: Ditto.
7666
7667         * password.el: Ditto.
7668
7669         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7670
7671         * mm-url.el: Ditto.
7672
7673         * gnus-xmas.el: Don't require timer-funcs.
7674
7675         * mm-util.el: Require timer/timer-funcs.
7676
7677 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7678
7679         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7680         Close.
7681
7682 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7683
7684         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7685         unibyte after clear-decrypt function runs.
7686
7687         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7688         returns as a unibyte string.
7689
7690 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7691
7692         * lpath.el: Revert.
7693
7694         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7695         (pgg-gpg-process-sentinel): Revert.
7696
7697         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7698         (pgg-pgp-lookup-key): Revert.
7699
7700         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7701         (pgg-pgp5-lookup-key): Revert.
7702
7703         * pgg.el (pgg-fetch-key): Revert.
7704
7705 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7706
7707         * lpath.el: Fbind string-as-multibyte for XEmacs.
7708
7709         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7710         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7711         (mml1991-pgg-encrypt): Ditto.
7712
7713         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7714         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7715         a multibyte buffer.
7716
7717         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7718         (pgg-pgp-lookup-key): Ditto.
7719
7720         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7721         (pgg-pgp5-lookup-key): Ditto.
7722
7723         * pgg.el (pgg-fetch-key): Ditto.
7724
7725 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7726
7727         * message.el (message-user-organization-file): Check several
7728         locations of the organization file.
7729
7730         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7731         Add gnus-article-view-part-as-type.
7732
7733         * gnus-art.el (gnus-article-view-part-as-type): New function.
7734
7735         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7736         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7737
7738         * mml.el: Simplify autoload.
7739         (mml-mode): defvar dnd-protocol-alist instead of using
7740         symbol-value.
7741         (mml-default-directory): New variable.
7742         (mml-minibuffer-read-file): Use it.
7743         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7744
7745         * message.el (message-citation-line-format): New variable.
7746         (message-insert-formated-citation-line): New function.
7747         (message-citation-line-function): Add
7748         `message-insert-formated-citation-line' to custom type.
7749
7750         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7751         to doc string.
7752
7753         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7754         depending on mm-verify-option.
7755
7756 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7757
7758         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7759         binding pgg-* variables; reimplement the section which prevents
7760         MIME header from being signed.
7761         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7762         pgg-text-mode; remove a blank line at the top of body.
7763
7764         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7765         lines at the top of body; use gnus-newsgroup-charset if there's no
7766         Charset header.
7767
7768 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7769
7770         * message.el (message-self-insert-commands): Doc fix.
7771
7772         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7773         (mm-uu-pgp-encrypted-test): Ditto.
7774         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7775         between header and body; return application/pgp-encrypted handle
7776         if decryption failed; decode decrypted body by charset.
7777
7778         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7779         element match to application/pgp-*.
7780
7781 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7782
7783         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7784         HTML.
7785
7786 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7787
7788         * mail-source.el (mail-source-call-script): Message the error
7789         string.
7790
7791 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7792
7793         * gnus-util.el (gnus-byte-compile): Use it.
7794
7795 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7796
7797         * gnus-util.el (kill-empty-logs): New function.
7798
7799 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7800
7801         * message.el (message-mail-alias-type): Doc fix.
7802         (message-mail-alias-type-p): New function.
7803         (message-send): Use it.
7804         (message-mode): Ditto.
7805         (message-strip-forbidden-properties): Ditto.
7806
7807         * ecomplete.el (ecomplete-database-file-coding-system): New
7808         variable.
7809         (ecomplete-save): Use it.
7810         (ecomplete-setup): Use it.
7811
7812 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7813
7814         * message.el (message-self-insert-commands): New variable.
7815         (message-strip-forbidden-properties): Use it.
7816
7817 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7818
7819         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7820         that doesn't make XEmacs choke.
7821
7822 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7823
7824         * gnus-util.el (gnus-replace-in-string):
7825         Prefer replace-regexp-in-string over of replace-in-string.
7826
7827 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7828
7829         * gnus-util.el (gnus-select-frame-set-input-focus):
7830         Use select-frame-set-input-focus if it is available in XEmacs; use
7831         definition defined in Emacs 22 for old Emacsen.
7832
7833         * dgnushack.el: Autoload unmorse-region for XEmacs.
7834
7835         * lpath.el: Bind cursor-in-non-selected-windows and
7836         select-frame-set-input-focus for XEmacs.
7837
7838 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7839
7840         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7841
7842 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7843
7844         * gnus-registry.el (gnus-registry-cache-save): Remove text
7845         properties when saving via the temp buffer.
7846
7847 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7848
7849         * message.el (message-generate-hashcash): Honor custom type.
7850
7851 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7852
7853         * message.el (message-generate-hashcash): Default to non-nil when
7854         hashcash is found.
7855
7856         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7857         (gnus-refer-thread-limit): Increase default to 500.
7858
7859         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7860
7861         * flow-fill.el (fill-flowed): Allow delete-space.
7862
7863 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7864
7865         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7866         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7867         Remove autoloads.
7868
7869 2006-04-18  Simon Josefsson  <jas@extundo.com>
7870
7871         * message.el (message-generate-hashcash): Default to.
7872
7873 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7874
7875         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7876         concatenating segments rather than before concatenating them.
7877
7878 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7879
7880         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7881
7882 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7883
7884         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
7885
7886         * message.el (message-forward-make-body-plain): Allow
7887         message-forward-ignored-headers to be a list.
7888         (message-remove-ignored-headers): Factor out into function.
7889         (message-forward-make-body-mml): Use it.
7890
7891         * imap.el (imap-quote-specials): New function.
7892         (imap-login-auth): Quote specials.
7893
7894         * rfc2231.el (rfc2231-parse-string): Remove dead code.
7895         (rfc2231-parse-string): Allow concatanation of parameters that
7896         aren't contiguous.  The test case is
7897           (mail-header-parse-content-type "message/external-body;
7898             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
7899             access-type=LOCAL-FILE;
7900             name*1*=plugh%2fhello-sailor%2fbing.pdf")
7901
7902 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7903
7904         * nntp.el (nntp-accept-process-output): Return the value of
7905         `nnheader-accept-process-output'.
7906
7907 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7908
7909         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
7910         (gnus-button-alist): Recognize more diff formats.
7911         (gnus-button-patch): Strip directory.
7912
7913 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7914
7915         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
7916         Emacs 22 when setting focus.
7917
7918 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7919
7920         * gnus-art.el (gnus-article-treat-types): Do treatment of
7921         text/x-verbatim parts.
7922         (gnus-button-patch): New command.
7923
7924         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
7925         addresses that contain invalid characters.
7926
7927 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7928
7929         * message.el (message-put-addresses-in-ecomplete): Use
7930         gnus-replace-in-string.
7931         (message-is-yours-p): Use the more correct
7932         mail-header-parse-address instead of
7933         mail-extract-address-components.
7934         (message-put-addresses-in-ecomplete): Fix typo.
7935
7936         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
7937         keystroke.
7938
7939         * gnus-art.el (gnus-treatment-function-alist): Change order of
7940         newsgroups/generic header folding to avoid double-folding.
7941
7942         * message.el (message-hidden-headers): Add X-Draft-From.
7943
7944         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
7945         command.
7946         (gnus-summary-repeat-search-article-backward): New command.
7947
7948         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
7949         groups in the parent topic.
7950
7951 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
7952
7953         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
7954         (spam-extra-header-to-number): Return the CRM114 number as a
7955         number instead of a string.
7956
7957 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7958
7959         * gnus-art.el (gnus-face-properties-alist): Moved here from
7960         gnus-fun.
7961
7962         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
7963
7964 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7965
7966         * message.el (message-strip-forbidden-properties): Only display on
7967         self-insert-command.
7968
7969         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
7970         reindent.
7971         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
7972
7973 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
7974
7975         * smiley.el (smiley-style): Fix typo.
7976
7977 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7978
7979         * hashcash.el (hashcash-insert-payment-async-2): Use
7980         message-goto-eoh instead of doing it manually.
7981         (mail-add-payment): Use message-narrow-to-header instead of trying
7982         to do the same itself.
7983
7984         * message.el (message-hidden-headers): Add Face.
7985
7986         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
7987         reparenting code.
7988         (gnus-summary-reparent-children): Refactored out code.
7989         (gnus-summary-thread-map): New keystroke.
7990         (gnus-summary-reparent-children): Make into command.
7991
7992         * smiley.el (smiley-style): Default to `medium' if using a large
7993         font.
7994
7995         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
7996         does it itself.
7997
7998         * message.el (message-point-in-header-p): Simplify definition.
7999
8000 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8001
8002         * nnagent.el (nnagent-request-set-mark): Silence log file
8003         writing.
8004         (nnagent-request-set-mark): Use write-region instead of
8005         append-to-file.
8006
8007         * gnus-sum.el (gnus-read-header): Fudge article number if using a
8008         strange select method.
8009
8010         * ecomplete.el (ecomplete-display-matches): Get highlightling
8011         right.
8012         (ecomplete-display-matches): Use literals.
8013         (ecomplete-display-matches): Disable message logging.
8014
8015         * message.el (message-display-abbrev): Small optimization.
8016
8017         * ecomplete.el (ecomplete-display-matches): Allow automatic
8018         display.
8019
8020         * message.el (message-strip-forbidden-properties): Display
8021         abbrevs.
8022         (message-display-abbrev): Get automatic display right.
8023
8024         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8025         keystrokes.
8026
8027 2006-04-13  Romain Francoise  <romain@orebokech.com>
8028
8029         TODO: Backport to v5-10!
8030
8031         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8032         Moved here (and renamed) from gnus-registry.el.
8033
8034         * gnus-registry.el: Require gnus-util.
8035         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8036
8037 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8038
8039         * gnus-group.el (gnus-group-catchup-current): Change
8040         if-then-else-if-then-else into cond.
8041         (gnus-group-catchup): Indent.
8042         (group-name-at-point): New function.
8043         (gnus-fetch-group): Provide default from thing at point.
8044
8045 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8046
8047         * message.el (message-display-abbrev): Fix regexp.
8048
8049         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8050         choosing.
8051         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8052         dead variables.
8053
8054         * message.el (message-newline-and-indent): Remove debugging.
8055         (message-display-abbrev): Use new implementation.
8056
8057 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8058
8059         * gnus-art.el (gnus-article-mode): Set
8060         cursor-in-non-selected-windows to nil.
8061
8062         * smiley.el: Revert previous change.
8063         (smiley-data-directory): defvar it before using it in the
8064         defcustom of `smiley-style'.
8065
8066 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8067
8068         * message.el (message-newline-and-indent): New function.
8069
8070         * ecomplete.el: Implement more bits.
8071
8072         * message.el (message-put-addresses-in-ecomplete): Clean up the
8073         string.
8074
8075         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8076
8077         * gnus-sum.el (gnus-summary-save-parts): Bind
8078         gnus-summary-save-parts-counter and use it to make unique file
8079         names.
8080
8081         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8082
8083         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8084         parameter to say whether to actually parse the individual
8085         addresses.
8086
8087         * message.el (message-put-addresses-in-ecomplete): New function.
8088         (ecomplete): Require.
8089         (message-mail-alias-type): Add ecomplete as an option.
8090
8091 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8092
8093         * flow-fill.el (fill-flowed): Remove trailing space from blank
8094         quoted lines.
8095
8096 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8097
8098         * smiley.el (smiley-style): Move definition later to avoid a
8099         compilation warning.
8100
8101 2006-04-12  Kenichi Handa  <handa@m17n.org>
8102
8103         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8104         buffer and then decode the buffer text if necessary.
8105         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8106         first, and after mm-encode-body, change the buffer to unibyte.
8107         Use mm-disable-multibyte instead of set-buffer-multibyte.
8108
8109 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8110
8111         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8112         Content-Type header instead of Content-Disposition header.
8113         (gnus-mime-inline-part): Ditto.
8114         (gnus-mime-view-part-as-charset): Ignore charset that the part
8115         specifies.
8116
8117         * mm-decode.el (mm-display-part): Work with external parts and
8118         usual parts similarly.
8119
8120         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8121         instead of gnus-display-mime.
8122
8123         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8124         instead of with-temp-buffer.
8125
8126         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8127         tag to summarized topics part in order to encode non-ASCII text.
8128
8129 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8130
8131         * smiley.el (smiley-style): New variable.
8132         (smiley-directory): New function.
8133         (smiley-data-directory): Derive from `smiley-style' using
8134         `smiley-directory'.
8135         (smiley-regexp-alist): Add new entries.
8136
8137         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8138         (gnus-article-browse-delete-temp): Add :version.
8139
8140 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8141
8142         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8143         the sieve region.
8144
8145 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8146
8147         * gnus.el (gnus-version-number): Bump version.
8148
8149 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8150
8151         * gnus.el: No Gnus v0.4 is released.
8152
8153 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8154
8155         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8156         layout.
8157
8158         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8159         unknown charset.
8160
8161         * message.el (message-header-synonyms): Add Original-To to the
8162         default.
8163
8164         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8165         optional parameter.
8166
8167 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8168
8169         * gnus-fun.el (gnus): Require it for gnus-directory.
8170
8171 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8172
8173         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8174
8175 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8176
8177         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8178
8179 2006-04-05  Simon Josefsson  <jas@extundo.com>
8180
8181         * password.el (password-reset): New function.
8182
8183 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8184
8185         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8186         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8187
8188 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8189
8190         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8191         Some whitespace was matched into the url, which broke browsing hits
8192         > 100 when mm-url-use-external was nil.
8193
8194 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8195
8196         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8197         gnus-extra-headers for 'Newsgroups.
8198
8199         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8200         bound.
8201
8202 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8203
8204         * pgg-gpg.el: Clean up process buffers every time gpg processes
8205         complete.
8206
8207 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8208
8209         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8210         doc string.
8211
8212 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8213
8214         * pgg-gpg.el (pgg-gpg-process-filter)
8215         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8216
8217         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8218         lines, temporary fix.
8219
8220 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8221
8222         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8223
8224 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8225
8226         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8227         default-enable-multibyte-characters.  This reverts the change from
8228         revision 6.17 which is no longer necessary because the passphrase
8229         is sent separately now.  GnuPG messages are unreadable under
8230         multibyte locales with default-enable-multibyte-characters set to
8231         nil.
8232
8233 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8234
8235         * message.el (message-tool-bar-gnome): Move "spell".
8236
8237 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8238
8239         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8240         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8241         instead.
8242
8243 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8244
8245         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8246         newsgroups handling for NNTP overviews which don't include
8247         Newsgroups.
8248
8249 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8250
8251         * message.el (message-resend): Bind message-generate-hashcash to nil.
8252
8253 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8254
8255         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8256         when searching for already-paid recipients.
8257
8258 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8259
8260         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8261         passphrases when it is not needed.
8262         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8263         passphrase stuff from gpg, should only be necessary when you use
8264         gpg with a smartcard.
8265
8266 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8267
8268         * mml.el (mml-insert-mime): Ignore cached contents of
8269         message/external-body part.
8270
8271         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8272         (mm-insert-part): Ditto.
8273
8274 2006-03-23  Simon Josefsson  <jas@extundo.com>
8275
8276         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8277         Reiner.
8278         (pgg-gpg-use-agent-p): Use it again.
8279
8280 2006-03-23  Simon Josefsson  <jas@extundo.com>
8281
8282         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8283         older emacsen.
8284         (pgg-gpg-use-agent-p): Don't use it.
8285
8286 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8287
8288         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8289         if we can.
8290
8291 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8292
8293         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8294         (pgg-gpg-update-agent): New function.
8295         (pgg-gpg-use-agent-p): New function.
8296         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8297         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8298         (pgg-gpg-sign-region): Use it.
8299
8300 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8301
8302         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8303         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8304
8305 2006-03-21  Simon Josefsson  <jas@extundo.com>
8306
8307         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8308         <wilde@sha-bang.de>.
8309         (pgg-gpg-use-agent): New variable.
8310         (pgg-gpg-process-region): Use it.
8311         (pgg-gpg-encrypt-region): Likewise.
8312         (pgg-gpg-encrypt-symmetric-region): Likewise.
8313         (pgg-gpg-decrypt-region): Likewise.
8314         (pgg-gpg-sign-region): Likewise.
8315         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8316
8317 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8318
8319         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8320
8321         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8322         Add comment on version.
8323
8324 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8325
8326         * smiley.el: Add missing test smiley.
8327
8328 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8329
8330         * mm-decode.el (mm-with-part): New macro.
8331         (mm-get-part): Use it; work with message/external-body as well.
8332         (mm-save-part): Treat name and filename equally.
8333
8334         * mm-extern.el (mm-extern-cache-contents): New function.
8335         (mm-inline-external-body): Use it; force the part to be displayed;
8336         move undisplayer added to the cached handle to the parent.
8337
8338         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8339         (gnus-mime-view-part-as-type): Work with message/external-body.
8340
8341         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8342
8343 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8344
8345         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8346         images in image-load-path.  [Sync with image.el, revision 1.60, in
8347         Emacs.]
8348
8349 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8350
8351         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8352         path rather than symbol.  Always return list of directories.
8353         Guarantee that image directory comes first.  [Sync with image.el,
8354         revision 1.59, in Emacs.]
8355
8356         * message.el (message-make-tool-bar): Adjust to new API of
8357         `gmm-image-load-path-for-library'.
8358
8359         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8360
8361         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8362
8363 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8364
8365         * gnus-art.el (gnus-article-only-boring-p):
8366         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8367         intangible text.
8368         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8369
8370 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8371
8372         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8373         `defun' instead of `gmm-defun-compat'.
8374
8375 2006-03-14  Simon Josefsson  <jas@extundo.com>
8376
8377         * message.el (message-unique-id): Don't use message-number-base36
8378         if (user-uid) is a float.
8379         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8380
8381 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8382
8383         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8384
8385         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8386         empty line between a part and a message part.
8387
8388 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8389
8390         * smiley.el: Add more test smileys.
8391         (smiley-data-directory, smiley-regexp-alist)
8392         (gnus-smiley-file-types): Fix doc strings.
8393         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8394         adding new elements.
8395         (smiley-mouse-map): Unused code.  Make it a comment.
8396
8397 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8398
8399         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8400         scan latest NoCeM messages instead of old ones.
8401         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8402         delimiters that are recently used.
8403         (gnus-nocem-load-cache): Add autoload cookie.
8404
8405         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8406
8407         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8408         level which is larger than gnus-use-nocem is specified.
8409
8410         * gnus-group.el (gnus-group-get-new-news): Ditto.
8411
8412 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8413
8414         * gnus-util.el (gnus-tool-bar-update): New function.
8415
8416         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8417         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8418
8419         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8420
8421         * gnus-group.el (gnus-group-redraw-when-idle)
8422         (gnus-group-redraw-check): Remove.
8423         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8424
8425 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8426
8427         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8428         if optional last element is specified in splits (FIELD VALUE...).
8429
8430 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8431
8432         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8433         to gmm-image-load-path-for-library.  Call with no-error argument.
8434         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8435
8436         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8437
8438         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8439
8440         * gmm-utils.el (gmm-image-load-path): Remove alias.
8441
8442 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8443
8444         * gmm-utils.el (gmm-image-load-path): Add alias.
8445
8446         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8447         nnml-generate-nov-databases-1.
8448         (nnml-generate-nov-databases): Use it.
8449         (nnml-generate-nov-databases-directory): Document no-active
8450         argument.
8451
8452         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8453         directory if path is t.  Add no-error.
8454
8455         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8456         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8457
8458         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8459         resetting gnus-article-browse-html-temp-list.
8460
8461         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8462         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8463         Add example to docstring.  Rename local variables.  Move error
8464         checks to default case in cond and simplify.
8465
8466 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8467
8468         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8469         handle is multipart when calling it recursively.
8470         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8471
8472 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8473
8474         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8475         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8476
8477 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8478
8479         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8480         is loaded.
8481
8482         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8483         loaded.
8484
8485 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8486
8487         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8488         to "Emacs 23 (unicode)" in doc string.
8489
8490         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8491         "Emacs 23 (unicode)" in comment.
8492
8493 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8494
8495         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8496
8497         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8498         characters 160 through 255 in Emacs 23.
8499
8500 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8501
8502         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8503         gnus-article-browse-html-temp.
8504         (gnus-article-browse-delete-temp): Make it customizable.  Add
8505         `file'.  Adjust doc string.
8506         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8507         query for each file.  Adjust doc string.
8508         (gnus-article-browse-html-parts): Add
8509         `gnus-article-browse-delete-temp-files' to
8510         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8511
8512 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8513
8514         * gnus-art.el (gnus-article-browse-html-temp)
8515         (gnus-article-browse-delete-temp): New variables.
8516         (gnus-article-browse-delete-temp-files): New function.
8517         (gnus-article-browse-html-parts): Use it.
8518
8519 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8520
8521         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8522
8523         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8524         string.
8525
8526         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8527         gnus-summary-insert-new-articles when unplugged.  Remove
8528         gnus-summary-search-article-forward.
8529
8530         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8531         display-visual-class instead of display-color-cells.
8532
8533 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8534
8535         * dgnushack.el: Autoload customize-group for XEmacs.
8536
8537         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8538         message/* containing non-ASCII text properly.
8539
8540 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8541
8542         * message.el: Require gmm-utils, remove autoloads.
8543         (message-tool-bar): Set default based on
8544         gmm-tool-bar-style.
8545         (message-tool-bar-gnome): Add gmm-customize-mode.
8546
8547         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8548         gmm-tool-bar-style.
8549         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8550
8551         * gnus-group.el (gnus-group-tool-bar): Set default based on
8552         gmm-tool-bar-style.
8553         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8554
8555         * gmm-utils.el (gmm-image-directory): Rename variable from
8556         gmm-image-load-path.
8557         (gmm-image-load-path): Use gmm-image-directory.
8558         (gmm-customize-mode): New function.
8559         (gmm-tool-bar-style): New variable.
8560
8561         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8562         gnus-group-redraw-line-number.
8563         (gnus-group-redraw-check): Simplify.
8564         (gnus-group-tool-bar-update): Remove redraw check.
8565         (gnus-group-make-tool-bar): Add redraw check.
8566
8567 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8568
8569         * gnus-art.el (gnus-button): Add missing parentheses.
8570
8571 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8572
8573         * lpath.el: Fbind line-number-at-pos.
8574
8575 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8576
8577         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8578
8579 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8580
8581         * gnus-art.el (gnus-button): New face.
8582         (gnus-article-button-face): Use it.
8583
8584         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8585         gnus-summary-next-page.  Re-order.
8586
8587         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8588         next-node are now included.
8589         (gnus-group-redraw-line-number): New internal variable.
8590         (gnus-group-redraw-check): Helper function for updating the tool
8591         bar.
8592         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8593
8594         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8595
8596         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8597         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8598         Use it to match format of Spamassassin 3.0 and later.  Reported by
8599         IRIE Tetsuya <irie@t.email.ne.jp>.
8600         (spam-check-bogofilter)
8601         (spam-bogofilter-register-with-bogofilter): Fix args of
8602         `gnus-error' calls.
8603
8604 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8605
8606         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8607         unnecessary interaction when sending queued mails.  Reported by
8608         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8609
8610 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8611
8612         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8613         first or last are nil.
8614
8615 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8616
8617         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8618
8619 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8620
8621         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8622
8623 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8624
8625         * dns.el (query-dns): Protect more against buggy tcp output.
8626
8627 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8628
8629         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8630         nov.php.
8631
8632 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8633
8634         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8635         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8636         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8637         output on the server side.
8638         (nnweb-google-create-mapping): Update regexps and add some
8639         progress indication.
8640
8641 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8642
8643         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8644         gnus-agent-toggle-plugged.  Re-order icons.
8645         (gnus-group-tool-bar-gnome): Add
8646         gnus-group-{prev,next}-unread-group.
8647         (gnus-group-tool-bar-gnome): Re-order icons.
8648
8649         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8650         gnus-summary-insert-new-articles.
8651
8652         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8653         comments.
8654
8655         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8656         also available in Emacs 21.3.
8657
8658         * message.el (message-fix-before-sending): Change "Emacs 22" to
8659         "Emacs 23 (unicode)" in comment.
8660
8661         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8662         "Emacs 23 (unicode)" in comment.
8663
8664         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8665         comment.
8666         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8667
8668         * mm-view.el (mm-fill-flowed): Add :version.
8669
8670 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8671
8672         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8673         and load-path.
8674
8675 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8676
8677         * message.el: Autoload gmm-image-load-path.
8678         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8679         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8680         consitency.
8681
8682         * gmm-utils.el (gmm-image-load-path): Also search in
8683         "../etc/images".  Don't set gmm-image-load-path if we don't find
8684         the image.
8685
8686 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8687
8688         * gmm-utils.el (gmm-image-load-path): Don't make
8689         `gmm-image-load-path' include subdirectories which the second arg
8690         `image' might specify.
8691
8692         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8693         subdirectory to icon file names.
8694
8695         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8696
8697 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8698
8699         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8700         gmm-image-load-path calls.
8701
8702         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8703
8704         * message.el (message-make-tool-bar): Ditto.
8705
8706         * mml.el (mml-preview): Added comment concerning tool bar icons.
8707
8708         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8709         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8710
8711         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8712         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8713
8714         * message.el (message-tool-bar-gnome): Use new icon names.
8715         (message-make-tool-bar): Use `gmm-image-load-path'.
8716
8717         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8718         functions from MH-E.
8719         (gmm-image-load-path): New variable from MH-E.
8720         (gmm-image-load-path): New function from MH-E.  Added arguments
8721         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8722         *-image-load-path-called-flag.
8723
8724 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8725
8726         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8727
8728 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8729
8730         * nnimap.el (nnimap-request-move-article): Change folder back to
8731         source group before deleting.
8732
8733 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8734
8735         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8736
8737         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8738         mm-url.
8739
8740         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8741
8742 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8743
8744         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8745         coding system which mm-charset-to-coding-system returns for a
8746         given charset is valid.
8747
8748 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8749
8750         * html2text.el (html2text-remove-tag-list):
8751         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8752
8753 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8754
8755         * gnus-cus.el: Revert 2005-10-17 change.
8756
8757 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8758
8759         * gnus-art.el (article-strip-banner): Call
8760         article-really-strip-banner only when the regexp match is made.
8761
8762 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8763
8764         * gnus-art.el (article-strip-banner): Use
8765         gnus-extract-address-components instead of
8766         mail-header-parse-addresses to make it work with non-ASCII text;
8767         remove mail-encode-encoded-word-string.
8768
8769         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8770         values which are surrounded with \"...\"; make it never cause a
8771         Lisp error; give up parsing of parameters if it failed in
8772         extracting type.
8773
8774 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8775
8776         * smime.el (smime-cert-by-ldap-1): Fix bug where
8777         `smime-ldap-search' returns results without userCertificates.
8778
8779 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8780
8781         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8782
8783 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8784
8785         * spam.el (spam-check-spamassassin-headers): Adapt format for
8786         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8787         <ari@mbf.ocn.ne.jp>.
8788         (spam-list-of-processors): Add spam-use-gmane.
8789
8790 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8791
8792         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8793         make-temp-file; make it work with XEmacs as well.
8794
8795         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8796         mm-make-temp-file.
8797
8798         * mm-decode.el (mm-display-external): Use the 3rd arg of
8799         mm-make-temp-file.
8800         (mm-create-image-xemacs): Ditto.
8801
8802 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8803
8804         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8805         with message-narrow-to-headers.
8806         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8807         (gnus-draft-check-draft-articles): New function.
8808         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8809
8810 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8811
8812         * gnus-art.el (gnus-article-browse-html-parts):
8813         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8814         Don't use suffix argument for mm-make-temp-file for Emacs 21
8815         compatibility.  Remove useless `format'.
8816
8817 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8818
8819         * nnweb.el (nnweb-google-wash-article): Update regexps.
8820         (nnweb-group-alist): Use defvoo instead of defvar.
8821
8822 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8823
8824         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8825         re-loading nn* modules.
8826
8827 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8828
8829         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8830         for `tool-bar-mode' and don't check it's default-value.
8831
8832         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8833
8834         * message.el (message-make-tool-bar): Ditto.
8835
8836         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8837         `substring'.  Shorten tmp-file name.
8838
8839         * gnus.el: Remove bogus comment.
8840
8841 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8842
8843         * gnus-art.el (gnus-article-browse-html-parts): New function.
8844         (gnus-article-browse-html-article): New function for viewing html
8845         articles with a browser.
8846
8847 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8848
8849         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8850         in elisp.
8851         (pgg-gpg-encrypt-symmetric-region): Ditto.
8852         (pgg-gpg-sign-region): Ditto.
8853
8854         * pgg-def.el (pgg-text-mode): New variable.
8855
8856         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8857         (mml2015-pgg-encrypt): Ditto.
8858
8859         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8860         (mml1991-pgg-encrypt): Ditto.
8861
8862 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8863
8864         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8865         message-make-date instead of current-time-string.
8866
8867         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8868         to gnus-decoded which mm-uu might set.
8869
8870 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8871
8872         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8873         don't decode quoted parameters; remove misimported Emacs code.
8874         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8875         (rfc2231-decode-encoded-string): Don't use split-string which
8876         behaves differently according to Emacs version; use
8877         mm-decode-coding-region to convert charset to coding-system.
8878         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8879         (rfc2231-encode-string): Remove misimported Emacs code.
8880
8881 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8882
8883         * gnus-art.el (article-decode-charset): Don't use ignore-errors
8884         when calling mail-header-parse-content-type.
8885         (article-de-quoted-unreadable): Ditto.
8886         (article-de-base64-unreadable): Ditto.
8887         (article-wash-html): Ditto.
8888
8889         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
8890         calling mail-header-parse-content-type and
8891         mail-header-parse-content-disposition.
8892         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
8893         mail-header-parse-content-type.
8894
8895         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
8896         insert charset and format parameters; encode description after
8897         inserting it to buffer.
8898         (mml-insert-parameter): Fold lines properly even if a parameter is
8899         segmented into two or more lines; change the max column to 76.
8900
8901         * rfc1843.el (rfc1843-decode-article-body): Don't use
8902         ignore-errors when calling mail-header-parse-content-type.
8903
8904         * rfc2231.el (rfc2231-parse-string): Return at least type if
8905         possible; don't cause an error even if it fails in parsing of
8906         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8907         (rfc2231-encode-string): Don't break lines at the beginning, leave
8908         it to mml-insert-parameter.
8909
8910         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
8911         calling mail-header-parse-content-type.
8912
8913 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
8914
8915         * spam-report.el (spam-report-gmane-use-article-number):
8916         Improve doc string.
8917         (spam-report-gmane-internal): Check if a suitable header was found
8918         in the article.
8919
8920 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8921
8922         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
8923         (rfc2231-encode-string): Make param*=value always begin with LWSP.
8924
8925 2006-02-05  Romain Francoise  <romain@orebokech.com>
8926
8927         Update copyright notices of all files in the gnus directory.
8928
8929 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8930
8931         * nnweb.el (nnweb-request-group): Avoid growing overview files.
8932
8933 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8934
8935         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
8936         segmented lines of parameter value to cope with Thunderbird 1.5
8937         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
8938         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8939         (rfc2231-encode-string): Don't make lines exceeding 76 column.
8940
8941 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
8942
8943         * mml.el (mml-generate-mime-1): Correct the order of inline signed
8944         parts.
8945
8946 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8947
8948         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
8949         there's only one active file for all servers.
8950         (nnweb-request-scan): Make sure nnweb-articles is initialized on
8951         solid groups.  Gnus might have used a FAST request to select the group.
8952         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
8953         and nnweb-search redundantly in the active file.
8954         (nnweb-request-list): Don't list bogus groups.  There can only be one.
8955         (nnweb-request-create-group): Don't use ARGS.
8956         (nnweb-possibly-change-server, nnweb-request-group): Remove some
8957         initialisations.  Let nnoo do the work.
8958
8959 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8960
8961         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
8962         Say the part has been decoded.
8963
8964         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
8965
8966 2006-01-31  Kevin Ryde  <user42@zip.com.au>
8967
8968         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
8969         mailcap-viewer-test-cache when there's no 'test clause, since that
8970         will invert the meaning of a "nil" test previously determined by
8971         mailcap-mailcap-entry-passes-test.
8972
8973 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8974
8975         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
8976         compiling.
8977
8978         * gnus-sum.el: Ditto.
8979
8980         * message.el: Don't bind tool-bar-map when compiling.
8981
8982 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
8983
8984         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
8985
8986 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8987
8988         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
8989         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
8990         current Google Groups.
8991
8992 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
8993
8994         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
8995         and tool-bar-mode.
8996
8997         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
8998         and tool-bar-mode.
8999
9000         * message.el (message-tool-bar-update): Simplify.
9001         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
9002
9003         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
9004         gnus-summary-buffer.
9005         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
9006         gnus-summary-reply.
9007
9008         * gmm-utils.el (gmm): Add :version.
9009
9010 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9011
9012         * Makefile.in (clean): New rule.
9013         (distclean): Use it.
9014
9015 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9016
9017         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9018         autoload.
9019
9020 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9021
9022         * gmm-utils.el (gmm-verbose): Add :group.
9023
9024 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9025
9026         * message.el: Change some comments WRT tool-bars.
9027
9028         * gnus-sum.el (gnus-summary-tool-bar)
9029         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9030         (gnus-summary-tool-bar-zap-list): New variables.
9031         (gnus-summary-make-tool-bar): Complete rewrite using
9032         `gmm-tool-bar-from-list'.
9033
9034         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9035         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9036         variables.
9037         (gnus-group-make-tool-bar): Complete rewrite using
9038         `gmm-tool-bar-from-list'.
9039         (gnus-group-tool-bar-update): New function.
9040
9041         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9042
9043 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9044
9045         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9046         is dissected into a single part of which the type is the same as
9047         the given one; decode charset.
9048
9049 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9050
9051         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9052         into alists as symbol not string, since that's what
9053         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9054         look for.
9055
9056 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9057
9058         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9059         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9060
9061         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9062
9063 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9064
9065         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9066         (gnus-xmas-mime-security-button-menu): New function.
9067
9068         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9069         (gnus-mime-security-button-menu): New definition.
9070         (gnus-mime-security-button-map): Use them.
9071         (gnus-mime-security-button-menu): New function.
9072         (gnus-insert-mime-security-button): Addition to help echo.
9073         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9074         (gnus-mime-security-pipe-part): New functions.
9075
9076         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9077         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9078
9079         * mm-decode.el (mm-handle-set-disposition): Remove.
9080         (mm-handle-set-description): Remove.
9081
9082 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9083
9084         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9085         (mm-w3m-standalone-supports-m17n-p): New function.
9086         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9087         w3m usage.
9088
9089         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9090         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9091
9092 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9093
9094         * message.el (message-tool-bar-zap-list): Use
9095         gmm-tool-bar-zap-list as custom type.
9096         (message-tool-bar-update): New function.
9097         (message-tool-bar, message-tool-bar-gnome)
9098         (message-tool-bar-retro): Add message-tool-bar-update.
9099         (message-tool-bar-gnome): Add flyspell-buffer.
9100
9101         * gnus-util.el (gnus-error): Describe `args'.
9102
9103         * gmm-utils.el (gmm-error): Describe `args'.
9104         (gmm-tool-bar-zap-list): New widget.
9105         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9106
9107 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9108
9109         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9110         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9111         the number of recursive calls.
9112
9113         * mm-decode.el (mm-handle-set-disposition): New macro.
9114         (mm-handle-set-description): New macro.
9115
9116 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9117
9118         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9119         encoding.
9120
9121 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9122
9123         * message.el (message-tool-bar-zap-list, message-tool-bar)
9124         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9125         (message-tool-bar-local-item-from-menu): Remove.
9126         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9127         (message-make-tool-bar): New function.
9128         (message-mode): Use `message-make-tool-bar'.
9129
9130         * gmm-utils.el: New file.
9131         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9132         (gmm-lazy): New widget copied from `nnmail.el'.
9133         (gmm-tool-bar-from-list): New function for creating customizable
9134         tool bars.
9135         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9136         output.
9137         (gmm): Add :prefix to defgroup.
9138
9139 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9140
9141         * gmm-utils.el (gmm-widget-p): New function.
9142
9143 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9144
9145         * mml.el (mml-attach-file): Describe `description' in doc string.
9146         (mml-menu): Add Emacs MIME manual and PGG manual.
9147
9148 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9149
9150         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9151
9152 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9153
9154         * nntp.el (nntp-end-of-line): Doc fix.
9155
9156 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9157
9158         * imap.el (imap-open): Handle case where buffer is a buffer
9159         object.
9160
9161 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9162
9163         * gnus-delay.el (gnus-delay): Don't autoload.
9164         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9165         to be re-loaded when customizing the `gnus-delay' group.
9166
9167 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9168
9169         * message.el (message-insert-citation-line): Use newlines.
9170
9171 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9172
9173         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9174         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9175         these routines, so the passphrase can be managed externally and
9176         passed in to the system.
9177         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9178         pgg-add-passphrase-to-cache function.
9179
9180         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9181         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9182         these routines, so the passphrase can be managed externally and
9183         passed in to the system.
9184         (pgg-pgp5-sign-region): Use new name of
9185         pgg-add-passphrase-to-cache function.
9186
9187 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9188
9189         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9190         part of the decoded armor to find the key-identifier.
9191         (pgg-gpg-lookup-key-owner): New function to return the
9192         human-readable identifier of a key owner.
9193         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9194         itself.
9195         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9196         the key value) if we have a key and can match it against a secret
9197         key.  Also, added a note pointing out fact that the prompt only
9198         indicates the first matching key.
9199
9200         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9201         pgg-decrypt-region.
9202         (pgg-add-passphrase-to-cache): Rename from
9203         `pgg-add-passphrase-cache' to reduce confusion (all callers
9204         changed).
9205         (pgg-remove-passphrase-from-cache): Rename from
9206         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9207         changed).
9208         (pgg-read-passphrase, pgg-add-passphrase-cache)
9209         (pgg-remove-passphrase-cache): Add informative docstrings.
9210         (pgg-decrypt): Convey provided passphrase in subordinate call to
9211         pgg-decrypt-region.
9212
9213 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9214
9215         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9216         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9217         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9218         'passphrase' argument, so the passphrase can be managed externally
9219         and then passed in to the system.
9220
9221         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9222         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9223         so the passphrase cache can be used reliably with identifiers
9224         besides a pgp packet's key id.
9225
9226         * pgg-gpg.el (pgg-gpg-encrypt-region)
9227         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9228         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9229         these routines, so the passphrase can be managed externally and
9230         passed in to the system.
9231
9232         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9233         'notruncate' argument, so the passphrase cache can be used
9234         reliably with identifiers besides a pgp packet's key id.
9235
9236 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9237
9238         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9239         symmetric encryption.
9240         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9241         encrypted session key.
9242         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9243         message ask for the passphrase in a proper way.
9244
9245         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9246         New user commands for symmetric encryption.
9247
9248 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9249
9250         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9251
9252         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9253
9254 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9255
9256         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9257
9258 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9259
9260         * mm-decode.el (mm-inlined-types): Add application/pgp.
9261         (mm-automatic-display): Ditto.
9262
9263         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9264         part as text.
9265
9266 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9267
9268         * nnrss.el: Update copyright.
9269         (nnrss-opml-import): Query whether to subscribe to each entry.
9270
9271         * gnus-art.el:
9272         * gnus-sum.el:
9273         * gnus-xmas.el:
9274         * messagexmas.el:
9275         * mm-uu.el:
9276         * mm-view.el: Update copyright.
9277
9278 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9279
9280         * message.el (message-info): New function.
9281         (message-mode-menu): Add it.
9282         Update copyright.
9283
9284         * ChangeLog: Fix and update copyright.
9285
9286 2006-01-13  Romain Francoise  <romain@orebokech.com>
9287
9288         * message.el (message-forward-subject-name-subject): Prefer the
9289         address to 'nowhere' if the sender has no name.
9290         Fix typo.  Update copyright year.
9291
9292 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9293
9294         * gnus-art.el (article-wash-html): Use
9295         gnus-summary-show-article-charset-alist if a numeric arg is given.
9296         (gnus-article-wash-html-with-w3m-standalone): New function.
9297
9298         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9299         mm-inline-text-html-render-with-w3m-standalone.
9300         (mm-text-html-washer-alist): Map w3m-standalone to
9301         gnus-article-wash-html-with-w3m-standalone.
9302         (mm-inline-text-html-render-with-w3m-standalone): New function.
9303
9304 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9305
9306         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9307         Improve LaTeX.
9308
9309 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9310
9311         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9312         (nnrss-request-article): Render text/plain parts as HTML.
9313
9314         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9315         the buffer.
9316
9317 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9318
9319         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9320         custom definition of `gnus-posting-styles'.
9321
9322         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9323         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9324
9325 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9326
9327         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9328         Use nntp for bug archive.
9329
9330 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9331
9332         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9333         parts.
9334         (nnrss-normalize-date): New function converts ISO 8601 date into
9335         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9336         (nnrss-check-group): Use it.
9337
9338 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9339
9340         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9341
9342         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9343         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9344         (nnrss-insert-w3): Ditto.
9345
9346 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9347
9348         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9349         the articles to be forwarded including the case where neither a
9350         number of articles nor a region is specified.
9351
9352 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9353
9354         * nnrss.el (nnrss-request-article): Fix last change; fill
9355         text/plain parts.
9356
9357 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9358
9359         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9360         in text/plain part.
9361         (nnrss-check-group): Don't add excessive newline to dc:subject.
9362
9363 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9364
9365         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9366         article.
9367
9368 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9369
9370         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9371         (nnml-use-compressed-files, nnml-save-mail): Support other
9372         comression programs such as bzip2.
9373
9374 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9375
9376         * dns.el (query-dns): Make sure we check the buffer size before
9377         removing tcp headers.
9378
9379 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9380
9381         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9382         remove MIME buttons associated with multipart/alternative parts.
9383         (gnus-mime-display-alternative): Tag buttons using `article-type'
9384         text property.
9385
9386         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9387         associated with multipart/alternative parts.
9388
9389         * gnus-art.el (gnus-signature-separator): Fix custom type.
9390
9391         * mm-decode.el (mm-inlined-types): Fix custom type.
9392         (mm-keep-viewer-alive-types): Ditto.
9393         (mm-automatic-display): Ditto.
9394         (mm-attachment-override-types): Ditto.
9395         (mm-inline-override-types): Ditto.
9396         (mm-automatic-external-display): Ditto.
9397
9398 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9399
9400         * spam-report.el (spam-report-user-mail-address)
9401         (spam-report-user-agent): New variables.
9402         (spam-report-url-ping-plain): Use spam-report-user-agent.
9403
9404 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9405
9406         * gnus-art.el (gnus-button-handle-custom): Do not just use
9407         `customize-apropos' for any "M-x customize-*" button but the
9408         function called for.  Accept both the function name and its
9409         argument in order to achieve this.
9410         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9411         function name to `gnus-button-handle-custom' in case of "M-x
9412         customize-*" buttons.
9413
9414 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9415
9416         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9417         multipart/alternative and add xref to mm-discouraged-alternatives
9418         in doc string.
9419
9420         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9421         gnus-buttonized-mime-types in doc string.
9422
9423 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9424
9425         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9426         Suggest image/.* in the doc string.
9427
9428 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9429
9430         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9431         message-marks (Debian bug #342521).
9432
9433 2005-12-12  Simon Josefsson  <jas@extundo.com>
9434
9435         * password.el (password-read-from-cache): Add.
9436         (password-read): Use it.
9437
9438 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9439
9440         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9441         us-ascii as a MIME charset.
9442
9443         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9444         against the case where the 2nd arg TYPE is nil.
9445
9446 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9447
9448         * pop3.el (pop3-stream-type): Fix custom version.
9449
9450         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9451
9452 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9453
9454         * mm-decode.el (mm-display-external): Add missing cdr.
9455
9456 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9457
9458         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9459         RFC1524) if it is in mailcap or add a suffix according to
9460         mailcap-mime-extensions when generating a temp filename; postpone
9461         deleting a temp file for 2 seconds for some wrappers, shell
9462         scripts, and so on, which might exit right after having started a
9463         viewer command as a background job.
9464
9465 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9466
9467         * nntp.el (nntp-marks-directory): Fix custom group.
9468
9469         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9470         steps when < 10.
9471
9472         * gnus-start.el (gnus-no-server-1): Mention
9473         `gnus-level-default-subscribed' in doc string.
9474
9475 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9476
9477         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9478         parens.
9479
9480 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9481
9482         * gnus-xmas.el (gnus-use-toolbar): Revert.
9483         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9484         gnus-use-toolbar is default.
9485
9486         * messagexmas.el (message-use-toolbar): Revert.
9487         (message-setup-toolbar): Use global default-toolbar if
9488         message-use-toolbar is default.
9489
9490 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9491
9492         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9493         according to default-toolbar-visible-p.
9494
9495         * messagexmas.el (message-use-toolbar): Ditto.
9496
9497 2005-11-26  Dave Love  <fx@gnu.org>
9498
9499         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9500         (tls-program, tls-success): Provide openssl alternative.
9501
9502         * starttls.el: Doc fixes.
9503         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9504         SERVICE to PORT.
9505
9506         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9507         port null or service name.
9508         (starttls-negotiate): Autoload.
9509
9510 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9511
9512         * message.el (message-kill-to-signature): Fix interactive spec.
9513
9514 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9515
9516         * pop3.el (pop3-open-server): Recognize a string as a service name.
9517
9518 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9519
9520         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9521
9522 2005-11-23  Dave Love  <fx@gnu.org>
9523
9524         Add pop3s, pop3/starttls.
9525
9526         * pop3.el (pop3-authentication-scheme): Clarify doc.
9527         (open-tls-stream, starttls-open-stream): Autoload.
9528         (pop3-stream-type): New.
9529         (pop3-open-server): Use it.
9530
9531         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9532         for POP.
9533         (mail-source-keyword-map): Add :stream for POP.
9534         (mail-source-fetch-pop): Use pop3-stream-type.
9535
9536 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9537
9538         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9539         of current-time-string.
9540
9541 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9542
9543         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9544         date header.
9545
9546 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9547
9548         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9549         it can seriously impact performance as it bypasses the agent's
9550         local caches.
9551
9552 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9553
9554         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9555         must be explicitly online rather than "not explicitly offline" for
9556         its flags to be synchronized.
9557
9558         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9559         that gnus-uu-unmark-thread will function correctly.
9560
9561         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9562         1024K is instead displayed as 1M.
9563
9564 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9565
9566         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9567
9568 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9569
9570         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9571
9572 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9573
9574         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9575         error message to display actual error condition.
9576         (gnus-agent-save-local): Avoid saving symbols that are bound to
9577         nil as they simply result in a warning message in
9578         gnus-agent-read-local.
9579
9580 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9581
9582         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9583         rather than make-variable-buffer-local for file-precious-flag.
9584
9585 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9586
9587         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9588         for duplicates which are removed.  The invalid sort check then
9589         triggers a rescan after the sort as sorting may have moved
9590         duplicate entries such that they can be cheaply detected.
9591
9592 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9593
9594         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9595
9596 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9597
9598         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9599         internal variable to a custom variable.  Changed default value
9600         from compressed(2) to uncompressed(1).
9601         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9602         support for uncompressed agentview files.  Taken together, reading
9603         the agentview file should now be 6-7 times faster.
9604
9605 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9606
9607         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9608         as a buffer-local variable.  This avoids creating truncated
9609         dribble files as a result of a hang up, eg.
9610
9611 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9612
9613         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9614         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9615         XEmacs.
9616
9617 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9618
9619         * gnus-start.el (gnus-start-draft-setup): Enforce
9620         `gnus-draft-mode' for nndraft:drafts at startup.
9621
9622         * gnus.el (gnus-splash): Change custom group.
9623         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9624         allow-list argument.
9625
9626         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9627         string.
9628
9629 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9630
9631         * gnus-art.el (gnus-default-article-saver): Add user-defined
9632         `function' to custom type.
9633
9634 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9635
9636         * imap.el (imap-open): Handle case where buffer is a buffer
9637         object.
9638
9639 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9640
9641         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9642         long lines.
9643         (gnus-cache-delete-group): Wrap doc strings.
9644
9645         * gnus-agent.el (gnus-agent-rename-group)
9646         (gnus-agent-delete-group): Wrap doc strings.
9647
9648 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9649
9650         * messagexmas.el (message-use-toolbar): Change the valid values
9651         into default, top, bottom, left, and right.
9652         (message-toolbar-thickness): New variable.
9653         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9654         well.
9655         (message-setup-toolbar): Make it work.
9656
9657         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9658         (gnus-use-toolbar): Change the valid values into default, top,
9659         bottom, left, and right.
9660         (gnus-toolbar-thickness): New variable.
9661         (gnus-xmas-setup-toolbar): New function.
9662         (gnus-xmas-setup-group-toolbar): Use it.
9663         (gnus-xmas-setup-summary-toolbar): Use it.
9664
9665 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9666
9667         * gnus-start.el (gnus-1): Add "native" to
9668         gnus-predefined-server-alist.
9669
9670         * gnus.el (gnus-method-to-server): Don't add "native" to the
9671         lists here, because that leads to problems when
9672         gnus-select-method is bound.
9673
9674 2005-11-09  Simon Josefsson  <jas@extundo.com>
9675
9676         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9677         use (not sort-by-date) instead.
9678
9679 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9680
9681         * gnus-delay.el (gnus-delay-group): Don't autoload.
9682         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9683         to be re-loaded when customizing the `gnus-delay' group.
9684
9685 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9686
9687         * message.el: Revert last changes.
9688         (message-insert-citation-line): Use newlines.
9689
9690 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9691
9692         * message.el (message-courtesy-message)
9693         (message-mark-insert-begin, message-mark-insert-end)
9694         (message-elide-ellipsis, message-cancel-message)
9695         (message-add-header, message-change-subject)
9696         (message-cross-post-followup-to-header)
9697         (message-cross-post-insert-note, message-reduce-to-to-cc)
9698         (message-widen-reply, message-delete-not-region)
9699         (message-kill-to-signature, message-insert-signature)
9700         (message-insert-importance-high, message-insert-importance-low)
9701         (message-insert-or-toggle-importance)
9702         (message-insert-disposition-notification-to)
9703         (message-indent-citation, message-yank-original)
9704         (message-cite-original-without-signature, message-cite-original)
9705         (message-insert-citation-line, message-position-on-field)
9706         (message-fix-before-sending, message-send-mail-partially)
9707         (message-send-mail, message-send-mail-with-sendmail)
9708         (message-send-mail-with-qmail, message-send-news)
9709         (message-check-news-header-syntax, message-generate-headers)
9710         (message-insert-courtesy-copy, message-fill-address)
9711         (message-fill-header, message-shorten-references)
9712         (message-setup-1, message-cancel-news)
9713         (message-forward-make-body-plain, message-forward-make-body-mime)
9714         (message-forward-make-body-mml, message-encode-message-body)
9715         (message-forward-make-body-digest-plain)
9716         (message-forward-make-body-digest-mime)
9717         (message-use-alternative-email-as-from): Insert `hard-newline'
9718         instead of ordinary newlines.
9719
9720 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9721
9722         * message.el (message-generate-headers): Downcase the argument
9723         given to message-check-element.
9724
9725 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9726
9727         * nntp.el (nntp-authinfo-rejected): New error condition.
9728         (nntp-wait-for): Use new error condition to signal authentication
9729         error.
9730         (nntp-retrieve-data): Rethrow new error condition to break out of
9731         recursive call to nntp-send-authinfo.
9732
9733 2005-11-08  Romain Francoise  <romain@orebokech.com>
9734
9735         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9736         (gnus-summary-exit-map): Bind to `Z p'.
9737         (gnus-summary-make-menu-bar): Add menu item.
9738
9739 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9740
9741         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9742         (gnus-treat-*): Add `first' in all doc strings.
9743
9744         * gnus-group.el (gnus-group-compact-group): Fix typo.
9745
9746 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9747
9748         * gnus.el (gnus-parameters-case-fold-search): New variable.
9749         (gnus-parameters-get-parameter): Use it.
9750
9751         * gnus-score.el (gnus-home-score-file): Doc fix.
9752
9753 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9754
9755         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9756
9757 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9758
9759         * mm-util.el (mm-special-display-p): New function.
9760
9761         * mml.el (mml-preview): Use it; doc fix.
9762
9763 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9764
9765         * imap.el (imap-open): Handle case where buffer is a buffer object.
9766
9767 2005-10-29  Romain Francoise  <romain@orebokech.com>
9768
9769         * message.el (message-fix-before-sending): Fix comment.
9770
9771 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9772
9773         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9774
9775 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9776
9777         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9778         Used in gnus-score.el.
9779
9780 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9781
9782         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9783
9784 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9785
9786         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9787         whitespace removed in revision 7.8.  Use concatenated string to
9788         protect trailing whitespace.
9789
9790 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9791
9792         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9793         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9794         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9795         Courier IMAP ("some version from 2004").  Mostly based on similar
9796         code in the same function.
9797
9798 2005-10-26  Didier Verna  <didier@xemacs.org>
9799
9800         * gnus-group.el (gnus-group-compact-group): Invalidate original
9801         article buffer.
9802         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9803         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9804         NOV database and in article itself.
9805         Invalidate article backlog.
9806
9807 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9808
9809         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9810
9811 2005-10-26  Simon Josefsson  <jas@extundo.com>
9812
9813         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9814         part of 2004-07-25 change.
9815
9816 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9817
9818         * message.el (message-display-completion-list): New function.
9819         (message-expand-group): Use it; make sure the Completions buffer
9820         is modifiable.
9821 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9822
9823         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9824         user-mail-name is an empty string.
9825
9826 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9827
9828         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9829         depending on gnus-score-decay-constant.
9830
9831         * encrypt.el (encrypt-insert-file-contents)
9832         (encrypt-write-file-contents): Don't use `gnus-message'.
9833
9834         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9835         arguments.
9836         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9837         arguments to mm-uu-verbatim-marks-extract.
9838         (mm-uu-hide-markers): New variable.
9839         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9840
9841         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9842         (gnus-convert-image-to-face-command): Use "convert" by default to
9843         allow other input image formats.
9844         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9845         accordingly.
9846
9847 2005-10-23  Simon Josefsson  <jas@extundo.com>
9848
9849         * imap.el (imap-gssapi-program): Align command line parameters
9850         with latest GNU SASL.
9851         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9852
9853 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9854
9855         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9856         HTML.
9857         (nnslashdot-request-article): Ditto.
9858
9859         * lpath.el (featurep): Add nobreak-char-display.
9860
9861 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9862
9863         * mail-source.el (mail-source-fetch-pop): Require pop3.
9864         (mail-source-check-pop): Ditto.
9865
9866 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9867
9868         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9869         errors.
9870
9871 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9872
9873         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9874         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9875
9876         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9877
9878         * mm-bodies.el (mm-decode-string): Call
9879         `mm-charset-to-coding-system' with allow-override argument.
9880
9881 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9882
9883         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
9884         (rfc2047-charset-to-coding-system): New function.
9885         (rfc2047-decode-encoded-words): New function.
9886         (rfc2047-decode-region): Use them.
9887         (rfc2047-decode-cte): Remove.
9888         (rfc2047-parse-and-decode): Remove.
9889         (rfc2047-decode): Remove.
9890
9891 2005-10-15  Kenichi Handa  <handa@m17n.org>
9892
9893         * rfc2047.el (rfc2047-decode-cte): New function.
9894         (rfc2047-decode-region): Change the way to decode successive
9895         encoded-words: decode B- or Q-encoding in each encoded-word,
9896         concatenate them, and decode it as charset.
9897
9898 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9899
9900         * lpath.el: Fbind codepage-setup for XEmacs.
9901
9902 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
9903
9904         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
9905         widget-move-and-invoke.
9906         (gnus-custom-mode): Use gnus-custom-map.
9907
9908 2005-10-15  Bill Wohler  <wohler@newt.com>
9909
9910         * message.el (message-tool-bar-map): Renamed image file from
9911         mail_send to mail/send.
9912
9913 2005-10-16  Masatake YAMATO  <jet@gyve.org>
9914
9915         * message.el (message-expand-group): Pass the common
9916         prefix substring of completion to `display-completion-list'.
9917
9918 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
9919
9920         * mml-sec.el (mml-secure-method): New internal variable.
9921         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
9922         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
9923         functions using mml-secure-method.
9924
9925         * mml.el (mml-mode-map): Add key bindings for those functions.
9926         (mml-menu): Simplify security menu entries.  Suggested by Jesper
9927         Harder <harder@myrealbox.com>.
9928         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
9929         end of message if point is the headers of the message.
9930
9931         * message.el (message-in-body-p): New function.
9932
9933         * assistant.el: Autoload gnus-util and netrc.
9934
9935         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
9936         Use `mm-charset-override-alist' only when decoding.
9937
9938         * mm-bodies.el (mm-decode-body): Call
9939         `mm-charset-to-coding-system' with allow-override argument.
9940
9941         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
9942         `filename' from Content-Disposition if Content-Type doesn't
9943         provide `name'.
9944         (gnus-mime-view-part-as-type): Set default instead of
9945         initial-input.
9946
9947 2005-10-09  Daniel Brockman  <daniel@brockman.se>
9948
9949         * format-spec.el (format-spec): Propagate text properties of % spec.
9950
9951 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
9952
9953         * gnus-art.el (gnus-treat-predicate): Add `first'.
9954
9955 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
9956
9957         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
9958         (mm-charset-override-alist): New variable.
9959         (mm-charset-to-coding-system): Use it.
9960         (mm-codepage-setup): New helper function.
9961         (mm-charset-eval-alist): New variable.
9962         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
9963         about unknown charsets.
9964
9965         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
9966
9967 2005-10-04  David Hansen  <david.hansen@gmx.net>
9968
9969         * nnrss.el (nnrss-request-article): Add support for the comments tag.
9970         (nnrss-check-group): Ditto.
9971
9972 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9973
9974         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
9975         Rename x-gnus-verbatim to x-verbatim.
9976         (mm-uu-type-alist): Fix regexp for verbatim-marks.
9977
9978         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
9979         x-verbatim.
9980
9981         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
9982
9983         * gnus-util.el (gnus-remove-duplicates): Remove.
9984
9985         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
9986         instead of gnus-remove-duplicates.
9987
9988         * message.el (message-remove-duplicates): Remove.
9989         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
9990         message-remove-duplicates.
9991
9992         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
9993         available, else use implementation from `delete-dups'.
9994
9995         * message.el (message-insert-expires): New function.
9996         (message-mode-map): Add key binding.
9997         (message-mode-field-menu): Add menu entry.
9998         (message-mode): Document it.
9999         (message-make-expires-date): Use `message-make-date'.
10000
10001 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
10002
10003         * message.el (message-make-expires-date): New function.
10004
10005 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10006
10007         * Makefile.in (list-installed-shadows): New entry.
10008         (install): Use it.
10009         (remove-installed-shadows): New entry.
10010
10011         * dgnushack.el (dgnushack-default-load-path): New variable.
10012         (dgnushack-find-lisp-shadows): New function.
10013         (dgnushack-remove-lisp-shadows): New function.
10014
10015 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10016
10017         * Makefile.in (install-el-elc): New entry.
10018         (install): Use it so that .el files are necessarily installed.
10019
10020 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10021
10022         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10023
10024 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10025
10026         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10027         function rather than the diff-mode.el package.
10028         (mm-display-external): Use with-current-buffer.
10029         (mm-viewer-completion-map, mm-viewer-completion-map):
10030         Move initialization inside declaration.
10031
10032 2005-09-29  Simon Josefsson  <jas@extundo.com>
10033
10034         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10035         autoload mail-check-payment.
10036         (spam-check-hashcash): Define unconditionally, since hashcash.el
10037         is part of Gnus now.  Ignore errors from payment checking.
10038
10039 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10040
10041         * message.el (message-bold-region, message-unbold-region): Rename
10042         from `bold-region' and `unbold-region'.
10043
10044         * message.el: Remove useless autoloads.
10045
10046 2005-09-28  Simon Josefsson  <jas@extundo.com>
10047
10048         * message.el (message-use-idna): Default to t.
10049         (message-use-idna): Test whether encoding works too.  Doc fix.
10050
10051 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10052
10053         * nntp.el (nntp-warn-about-losing-connection): Remove.
10054
10055 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10056
10057         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10058         customizable.  Change default value.
10059         (mm-uu-diff-groups-regexp): Change default value.
10060         (mm-uu-type-alist): Add doc string.
10061         (mm-uu-configure): Add doc string.  Make it interactive.
10062         (mm-uu-tex-groups-regexp): New variable.
10063         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10064         (mm-uu-type-alist): Add LaTeX documents.
10065         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10066         of "text/verbatim".
10067         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10068
10069         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10070         instead of "text/verbatim".
10071
10072         * message.el (message-mark-inserted-region)
10073         (message-mark-insert-file): Use slrn style marks when called with
10074         prefix argument.
10075
10076 2005-09-27  Simon Josefsson  <jas@extundo.com>
10077
10078         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10079
10080 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10081
10082         * message.el (message-remove-duplicates): New function.
10083         Implementation borrowed from `gnus-remove-duplicates'.
10084         (message-idna-to-ascii-rhs): Also encode idna addresses in
10085         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10086         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10087         only ask about the same idna domain once per header and also tell
10088         in what header to replace the idna domain.
10089
10090         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10091         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10092         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10093         a header is decoded and not just the last one.
10094
10095 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10096
10097         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10098         has been decoded.
10099
10100         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10101         (mm-insert-part): Don't modify text if it has been decoded.
10102
10103         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10104         decoded.
10105
10106         * mm-view.el (mm-inline-text): Don't strip text props unless
10107         decoding enriched or richtext parts.
10108
10109 2005-09-25  Romain Francoise  <romain@orebokech.com>
10110
10111         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10112         * gnus-start.el (gnus-subscribe-interactively):
10113         * gnus-uu.el (gnus-uu-grab-articles):
10114         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10115         space.
10116
10117 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10118
10119         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10120         * mm-view.el (mm-view-pkcs7-decrypt):
10121         * gnus-sum.el (gnus-summary-limit-to-extra)
10122         (gnus-summary-respool-article, gnus-read-move-group-name):
10123         * gnus-score.el (gnus-summary-increase-score):
10124         * gnus-util.el (gnus-completing-read-with-default):
10125         * gnus-art.el (gnus-read-save-file-name)
10126         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10127         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10128         * message.el (message-check-news-header-syntax):
10129         Follow convention for reading with the minibuffer.
10130
10131 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10132
10133         * spam-report.el (spam-report-url-ping-plain):
10134         Use gnus-extended-version as User-Agent.
10135
10136         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10137         default value is nil.
10138
10139         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10140         (mm-uu-verbatim-marks-extract): New function.
10141         (mm-uu-extract): New face.
10142         (mm-uu-copy-to-buffer): Use it.
10143
10144         * spam-report.el (spam-report-gmane-ham): Renamed from
10145         `spam-report-gmane-unspam'.
10146         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10147         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10148
10149         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10150         Autoload.
10151         (spam-report-gmane-unregister-routine): Renamed
10152         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10153
10154 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10155
10156         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10157         (spam-report-gmane-unregister-routine): Add support for gmane
10158         unregistration.
10159
10160         * spam-report.el (spam-report-gmane-unspam)
10161         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10162         (spam-report-gmane): Change to take a single article and do unspam
10163         registration.
10164
10165 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10166
10167         * mm-url.el (mm-url-decode-entities): Fix regexp.
10168
10169 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10170
10171         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10172         default to nil, to be able to use Gnus at all.  If the default
10173         switches to something else, then the function should be fixed not
10174         be exceedingly slow.
10175
10176 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10177
10178         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10179         fail hard.
10180
10181         * spam-report.el: Add better Keywords line.
10182
10183         * spam.el: Add Maintainer and better Keywords line.
10184
10185 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10186
10187         * gnus-art.el (gnus-article-replace-part)
10188         (gnus-mime-replace-part): New functions.
10189         (gnus-mime-action-alist, gnus-mime-button-commands)
10190         (gnus-mime-save-part-and-strip): Added file argument.
10191         (gnus-article-part-wrapper): Added interactive argument.
10192
10193         * gnus-sum.el (gnus-summary-mime-map): Add
10194         `gnus-article-replace-part'.
10195
10196 2005-09-19  Didier Verna  <didier@xemacs.org>
10197
10198         The nnml compaction feature:
10199         * nnml.el (nnml-request-compact-group): New function.
10200         * nnml.el (nnml-request-compact): New function.
10201         * gnus-int.el (gnus-request-compact-group): New function.
10202         * gnus-int.el (gnus-request-compact): New function.
10203         * gnus-group.el (gnus-group-compact-group): New function.
10204         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10205         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10206         * gnus-srvr.el (gnus-server-compact-server): New function.
10207         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10208         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10209
10210 2005-09-18  Deepak Goel  <deego@gnufans.org>
10211
10212         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10213         format spec.
10214
10215 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10216
10217         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10218
10219 2005-09-15  Romain Francoise  <romain@orebokech.com>
10220
10221         * message.el (message-fill-paragraph): Clarify docstring.
10222
10223 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10224
10225         * gnus-art.el (gnus-mime-display-part): Protect against broken
10226         MIME messages.
10227
10228 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10229
10230         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10231         before parsing header.
10232
10233 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10234
10235         * html2text.el (html2text-replace-list): Add new entities.
10236
10237 2005-09-11  Romain Francoise  <romain@orebokech.com>
10238
10239         * message.el (message-alternative-emails): Improve docstring.
10240         (message-setup-1): Call `message-use-alternative-email-as-from'
10241         after `message-setup-hook' to give it precedence over posting
10242         styles, etc.
10243         (message-use-alternative-email-as-from): Add docstring.  Remove
10244         the original From header if present.
10245
10246         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10247         (nnml-save-mail): Use it.
10248
10249         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10250         articles.  Add new argument `silent'.
10251         (gnus-uu-mark-all): Report the total number of marked articles.
10252
10253 2005-09-10  Romain Francoise  <romain@orebokech.com>
10254
10255         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10256         (gnus-uu-mark-series): Likewise.
10257
10258 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10259
10260         * spam-report.el (spam-report-gmane): Fix generation of spam
10261         report URL.
10262
10263 2005-09-10  Simon Josefsson  <jas@extundo.com>
10264
10265         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10266         t, based on discussion on the ding list with Robert Epprecht
10267         <epprecht@solnet.ch>.
10268
10269 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10270
10271         * spam-report.el (spam-report-gmane): Make it work without
10272         X-Report-Spam header.  Gmane now only provides Archived-At.
10273         This is only used if `spam-report-gmane-use-article-number' is nil.
10274         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10275
10276         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10277         make `gnus-summary-sort-by-recipient' work with threading.
10278
10279         * nnweb.el (nnweb-google-wash-article): Print a message if article
10280         is not available.
10281
10282 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10283
10284         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10285         change.  Decode text/* parts content before displaying.
10286
10287 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10288
10289         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10290
10291 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10292
10293         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10294
10295         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10296         url-package-name, url-package-version,
10297         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10298         w3m-display-inline-images, and w3m-minor-mode-map.
10299
10300 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10301
10302         * message.el (message-tab-body-function): Fix mismatched custom type.
10303
10304         * gnus.el (gnus-group-change-level-function): Ditto.
10305
10306         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10307
10308         * gnus-art.el (gnus-signature-limit)
10309         (gnus-article-mime-part-function): Ditto.
10310
10311 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10312
10313         * mml.el (mml-mode): Silence the byte compiler.
10314
10315         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10316         using `(sit-for 0)' before moving the point to the specified part;
10317         skip unbuttonized parts.
10318         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10319         return to the summary window if gnus-auto-select-part is non-nil.
10320
10321 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10322
10323         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10324         variables.
10325         (mml-dnd-attach-file, mml-mode): Use them.
10326
10327         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10328         Make fetching article by MID work again for Google Groups.  Added
10329         FIXME concerning gnus-group-make-web-group.
10330
10331         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10332         Don't depend on Gnus by using mail-extract-address-components if
10333         gnus-extract-address-components is not bound.
10334
10335 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10336
10337         * gnus-art.el (gnus-mime-display-security): Don't display the
10338         signature, but only the signed part.
10339
10340 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10341
10342         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10343
10344         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10345         list, not listp.
10346
10347 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10348
10349         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10350         when encoding.
10351
10352         * mm-bodies.el (mm-decode-content-transfer-encoding):
10353         De-canonicalize CRLF for all text content types, not just
10354         text/plain.
10355
10356 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10357
10358         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10359         valid article; point arrow and cursor at the MIME button.
10360
10361 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10362
10363         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10364         Suggested by Dan Christensen <jdc@uwo.ca>.
10365
10366         * mm-decode.el (mm-save-part): Enable change of prompt.
10367
10368 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10369
10370         * gnus-msg.el (gnus-inews-add-send-actions): Made
10371         `message-post-method' lambda parameter ARG `&optional'.
10372
10373 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10374
10375         * gnus-sum.el (gnus-summary-mime-map): Added
10376         gnus-article-save-part-and-strip, gnus-article-delete-part and
10377         gnus-article-jump-to-part.
10378
10379         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10380         (gnus-article-edit-part): Use it.
10381         (gnus-article-part-wrapper): Added no-handle argument.
10382         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10383         functions.
10384
10385 2005-08-29  Romain Francoise  <romain@orebokech.com>
10386
10387         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10388         docstring.
10389         (gnus-face-from-file): Likewise.
10390
10391 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10392
10393         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10394         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10395         non-nil.
10396         (gnus-auto-select-part): New variable.
10397         (gnus-article-jump-to-part): New function.
10398         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10399         (gnus-mime-delete-part): Allow selecting specified part after
10400         deleting or stripping parts.
10401         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10402         part if argument is bogus.
10403
10404 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10405
10406         * gnus-art.el (w3m-minor-mode-map):
10407         * gnus-spec.el (gnus-newsrc-file-version):
10408         * gnus-util.el (nnmail-active-file-coding-system)
10409         (gnus-original-article-buffer, gnus-user-agent):
10410         * gnus.el (gnus-ham-process-destinations)
10411         (gnus-parameter-ham-marks-alist)
10412         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10413         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10414         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10415         * mm-decode.el (gnus-current-window-configuration):
10416         * mm-extern.el (gnus-article-mime-handles):
10417         * mm-url.el (url-current-object, url-package-name)
10418         (url-package-version):
10419         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10420         (smime-keys, w3m-cid-retrieve-function-alist)
10421         (w3m-current-buffer, w3m-display-inline-images)
10422         (w3m-minor-mode-map):
10423         * mml-smime.el (gnus-extract-address-components):
10424         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10425         (gnus-newsrc-hashtb, message-default-charset)
10426         (message-deletable-headers, message-options)
10427         (message-posting-charset, message-required-mail-headers)
10428         (message-required-news-headers):
10429         * mml1991.el (mc-pgp-always-sign):
10430         * mml2015.el (mc-pgp-always-sign):
10431         * nnheader.el (nnmail-extra-headers):
10432         * rfc1843.el (gnus-decode-encoded-word-function)
10433         (gnus-decode-header-function, gnus-newsgroup-name):
10434         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10435
10436 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10437
10438         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10439         the end of the date treatments.
10440
10441 2005-08-15  Simon Josefsson  <jas@extundo.com>
10442
10443         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10444         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10445         Capello and Romain Francoise.
10446         (pgg-fetch-key-function): Removed, not used?
10447         (pgg-insert-url-with-w3): Require url, to get
10448         url-insert-file-contents regardless of where it is defined.
10449
10450 2005-08-13  Romain Francoise  <romain@orebokech.com>
10451
10452         * message.el (message-cite-original-1): New function.
10453         (message-cite-original): Use it.
10454         (message-cite-original-without-signature): Ditto.
10455
10456 2005-08-08  Romain Francoise  <romain@orebokech.com>
10457
10458         * message.el (message-yank-empty-prefix): New variable.
10459         (message-indent-citation): Use it.
10460         (message-cite-original-without-signature): Respect X-No-Archive.
10461
10462 2005-08-08  Simon Josefsson  <jas@extundo.com>
10463
10464         * pgg.el: Autoload url-insert-file-contents instead of loading
10465         w3/url.
10466         (pgg-insert-url-with-w3): Don't load url here.
10467
10468 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10469
10470         * message.el (message-kill-to-signature): Don't insert newline at
10471         bol.
10472         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10473
10474 2005-08-06  Romain Francoise  <romain@orebokech.com>
10475
10476         * message.el (message-user-fqdn): Fix typo in docstring.
10477
10478 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10479
10480         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10481
10482         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10483
10484 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10485
10486         * mm-bodies.el (mm-encode-body): Use coding system rather than
10487         charset to encode text.
10488
10489         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10490         number of charsets if utf-8 is available (XEmacs).
10491
10492 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10493
10494         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10495         taken from `gnus-button-mid-or-mail-regexp'.
10496         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10497         (gnus-button-alist): Improve regexp for domain part of the MIDs
10498         for news:localpart@domain buttons.
10499         (gnus-button-ctan-directory-regexp): Update.
10500
10501 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10502
10503         * sieve-manage.el (sieve-manage-interactive-login): Use
10504         make-local-variable rather than make-variable-buffer-local.
10505         (sieve-manage-open): Ditto.
10506         (sieve-manage-authenticate): Ditto.
10507
10508         * mml.el (mml-generate-mime-1): Make the content type default to
10509         text/plain if the filename is not specified.
10510
10511 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10512
10513         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10514         instead of insert-buffer.
10515
10516         * message.el (message-yank-original): Ditto; set the mark at the
10517         end of the yanked message.
10518
10519 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10520
10521         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10522         lines to scroll rather than to stop it.
10523
10524         * mml.el (mml-generate-default-type): Add doc string.
10525         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10526         default to application/octet-stream when determining the content
10527         type if it is not specified for the part or the mml contents; add
10528         a comment about mml-generate-default-type.
10529
10530 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10531
10532         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10533         make it default to application/octet-stream when determining the
10534         content type if it is not specified for the external contents.
10535
10536 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10537
10538         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10539         segmented parameter but also other parameters might be there.
10540
10541 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10542
10543         * mm-decode.el (mm-display-external): Delete temp file, directory
10544         and buffer immediately if the external process is exited.
10545
10546 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10547
10548         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10549         fewer lines than that of scroll-margin.
10550         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10551
10552 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10553
10554         * gnus-art.el (gnus-article-next-page): Revert.
10555         (gnus-article-beginning-of-window): New macro.
10556         (gnus-article-next-page-1): Use it.
10557         (gnus-article-prev-page): Ditto.
10558         (gnus-article-edit-part): Use insert-buffer-substring instead of
10559         insert-buffer.
10560         (gnus-article-edit-exit): Ditto.
10561
10562         * gnus-util.el (gnus-beginning-of-window): Remove.
10563         (gnus-end-of-window): Remove.
10564
10565         * lpath.el: Don't bind header-line-format and scroll-margin.
10566
10567 2005-07-25  Simon Josefsson  <jas@extundo.com>
10568
10569         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10570         to have the url package without w3.  Reported by Daiki Ueno
10571         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10572
10573 2005-07-20  Didier Verna  <didier@xemacs.org>
10574
10575         * gnus-diary.el: Remove the description comment (nndiary is now
10576         properly documented in the Gnus manual).
10577         Fix the spelling of "Back End".
10578         * nndiary.el: Ditto.
10579         Fix the copyright notice.
10580
10581 2005-07-18  Romain Francoise  <romain@orebokech.com>
10582
10583         * gnus-sum.el (gnus-summary-to-prefix)
10584         (gnus-summary-newsgroup-prefix): New variables.
10585         (gnus-summary-from-or-to-or-newsgroups): Use them.
10586
10587 2005-07-17  Romain Francoise  <romain@orebokech.com>
10588
10589         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10590         space as it's generally not especially interesting to the user.
10591
10592 2005-07-16  Romain Francoise  <romain@orebokech.com>
10593
10594         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10595         nil to avoid prompting and file modification if one of the
10596         messages at the top of the nnfolder file contains a copyright
10597         notice.
10598         Update copyright notice.
10599
10600         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10601         instead of `current-time-string' as the latter creates a time
10602         string that is not RFC 2822 compliant (it lacks the zone).
10603         Update copyright notice.
10604
10605 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10606
10607         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10608         for text/rtf.  Display default in prompt.  Pass default for M-n.
10609
10610         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10611
10612 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10613
10614         * gnus-msg.el (gnus-button-mailto): Remove
10615         save-selected-window-window hackery because it relies on
10616         save-selected-window internals.
10617
10618 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10619
10620         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10621         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10622         (gnus-article-prev-page): Ditto.
10623
10624         * gnus-util.el (gnus-beginning-of-window): New function.
10625         (gnus-end-of-window): New function.
10626
10627         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10628
10629 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10630
10631         * gnus-score.el (gnus-score-edit-all-score): Set
10632         gnus-score-edit-exit-function to gnus-score-edit-done and call
10633         gnus-message.
10634
10635 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10636
10637         * gnus-msg.el (gnus-button-mailto): Remove
10638         save-selected-window-window hackery because it relies on
10639         save-selected-window internals.
10640
10641 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10642
10643         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10644         add-minor-mode.
10645         (gnus-binary-mode): Ditto.
10646
10647         * gnus-topic.el (gnus-topic-mode): Ditto.
10648
10649 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10650
10651         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10652         (gnus-article-prev-page): Take scroll-margin into consideration.
10653
10654 2005-07-04  Lute Kamstra  <lute@gnu.org>
10655
10656         Update FSF's address in GPL notices.
10657
10658 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10659
10660         * gnus.el (gnus-exit):
10661         * gnus-group.el (gnus-group-icons):
10662         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10663
10664         * gnus-nocem.el (gnus-nocem):
10665         * message.el (message-various, message-buffers, message-sending)
10666         (message-interface, message-forwarding, message-insertion)
10667         (message-headers, message-news, message-mail):
10668         * pgg-gpg.el (pgg-gpg):
10669         * pgg-parse.el (pgg-parse):
10670         * pgg-pgp.el (pgg-pgp):
10671         * pgg-pgp5.el (pgg-pgp5):
10672         * pop3.el (pop3): Finish `defgroup' description with period.
10673
10674 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10675
10676         * gnus-art.el (article-display-face): Improve the efficiency.
10677         (article-display-x-face): Ditto; remove grey x-face stuff.
10678
10679 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10680
10681         * gnus-art.el (article-display-face): Correct the position in
10682         which Faces are inserted.
10683
10684 2005-06-29  Didier Verna  <didier@xemacs.org>
10685
10686         * gnus-art.el (article-display-face): Display faces in correct
10687         order.
10688
10689 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10690
10691         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10692         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10693         (gnus-nocem-check-article): Fetch the Type header.
10694         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10695         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10696         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10697         make sure gnus-nocem-hashtb is initialized.
10698         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10699         (gnus-nocem-unwanted-article-p): Ditto.
10700
10701         * pgg.el (pgg-verify): Return the verification result.
10702
10703 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10704
10705         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10706         is ascii.
10707
10708 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10709
10710         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10711         `show-nonbreak-escape'.
10712
10713 2005-06-23  Lute Kamstra  <lute@gnu.org>
10714
10715         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10716
10717         * dig.el (dig-mode):
10718         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10719
10720 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10721
10722         * nnimap.el (nnimap-split-download-body): Fix spellings.
10723
10724 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10725
10726         * gnus-art.el (gnus-article-encrypt-body):
10727         * gnus-cus.el (gnus-score-customize):
10728         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10729         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10730
10731 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10732
10733         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10734         header by looking for magic "MII" at the beginnig.
10735
10736 2005-06-16  Miles Bader  <miles@gnu.org>
10737
10738         * gnus-xmas.el (gnus-xmas-group-startup-message):
10739         Use renamed gnus-splash face.
10740
10741         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10742         (assistant-field-face): New backward-compatibility alias for renamed
10743         face.
10744         (assistant-render-text): Use renamed assistant-field face.
10745
10746         * spam.el (spam): Remove "-face" suffix from face name.
10747         (spam-face): New backward-compatibility alias for renamed face.
10748         (spam-face, spam-initialize): Use renamed spam face.
10749
10750         * message.el (message-header-to, message-header-cc)
10751         (message-header-subject, message-header-newsgroups)
10752         (message-header-other, message-header-name)
10753         (message-header-xheader, message-separator, message-cited-text)
10754         (message-mml): Remove "-face" suffix from face names.
10755         (message-header-to-face, message-header-cc-face)
10756         (message-header-subject-face, message-header-newsgroups-face)
10757         (message-header-other-face, message-header-name-face)
10758         (message-header-xheader-face, message-separator-face)
10759         (message-cited-text-face, message-mml-face):
10760         New backward-compatibility aliases for renamed faces.
10761         (message-font-lock-keywords): Use renamed message faces.
10762
10763         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10764         (sieve-test-commands, sieve-tagged-arguments):
10765         Remove "-face" suffix from face names.
10766         (sieve-control-commands-face, sieve-action-commands-face)
10767         (sieve-test-commands-face, sieve-tagged-arguments-face):
10768         New backward-compatibility aliases for renamed faces.
10769         (sieve-control-commands-face, sieve-action-commands-face)
10770         (sieve-test-commands-face, sieve-tagged-arguments-face):
10771         Use renamed sieve faces.
10772
10773         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10774         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10775         (gnus-group-news-3-empty, gnus-group-news-4)
10776         (gnus-group-news-4-empty, gnus-group-news-5)
10777         (gnus-group-news-5-empty, gnus-group-news-6)
10778         (gnus-group-news-6-empty, gnus-group-news-low)
10779         (gnus-group-news-low-empty, gnus-group-mail-1)
10780         (gnus-group-mail-1-empty, gnus-group-mail-2)
10781         (gnus-group-mail-2-empty, gnus-group-mail-3)
10782         (gnus-group-mail-3-empty, gnus-group-mail-low)
10783         (gnus-group-mail-low-empty, gnus-summary-selected)
10784         (gnus-summary-cancelled, gnus-summary-high-ticked)
10785         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10786         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10787         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10788         (gnus-summary-low-undownloaded)
10789         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10790         (gnus-summary-low-unread, gnus-summary-normal-unread)
10791         (gnus-summary-high-read, gnus-summary-low-read)
10792         (gnus-summary-normal-read, gnus-splash):
10793         Remove "-face" suffix from face names.
10794         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10795         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10796         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10797         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10798         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10799         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10800         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10801         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10802         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10803         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10804         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10805         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10806         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10807         (gnus-summary-normal-ticked-face)
10808         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10809         (gnus-summary-normal-ancient-face)
10810         (gnus-summary-high-undownloaded-face)
10811         (gnus-summary-low-undownloaded-face)
10812         (gnus-summary-normal-undownloaded-face)
10813         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10814         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10815         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10816         (gnus-splash-face):
10817         New backward-compatibility aliases for renamed faces.
10818         (gnus-group-startup-message): Use renamed gnus faces.
10819
10820         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10821         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10822         (gnus-server-agent): Remove "-face" suffix from face names.
10823         (gnus-server-agent-face, gnus-server-opened-face)
10824         (gnus-server-closed-face, gnus-server-denied-face)
10825         (gnus-server-offline-face):
10826         New backward-compatibility aliases for renamed faces.
10827         (gnus-server-agent-face, gnus-server-opened-face)
10828         (gnus-server-closed-face, gnus-server-denied-face)
10829         (gnus-server-offline-face): Use renamed gnus faces.
10830
10831         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10832         Remove "-face" suffix from face names.
10833         (gnus-picon-xbm-face, gnus-picon-face):
10834         New backward-compatibility aliases for renamed faces.
10835
10836         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10837         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10838         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10839         (gnus-cite-11): Remove "-face" suffix from face names.
10840         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10841         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10842         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10843         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10844         New backward-compatibility aliases for renamed faces.
10845         (gnus-cite-attribution-face, gnus-cite-face-list)
10846         (gnus-article-boring-faces): Use renamed gnus faces.
10847
10848         * gnus-art.el (gnus-signature, gnus-header-from)
10849         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10850         (gnus-header-content): Remove "-face" suffix from face names.
10851         (gnus-signature-face, gnus-header-from-face)
10852         (gnus-header-subject-face, gnus-header-newsgroups-face)
10853         (gnus-header-name-face, gnus-header-content-face):
10854         New backward-compatibility aliases for renamed faces.
10855         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10856
10857         * gnus-sum.el (gnus-summary-selected-face)
10858         (gnus-summary-highlight): Use renamed gnus faces.
10859         * gnus-group.el (gnus-group-highlight): Likewise.
10860
10861 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10862
10863         * gnus-sieve.el (gnus-sieve-article-add-rule):
10864         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10865         * spam-stat.el (spam-stat-buffer-change-to-spam)
10866         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10867
10868         * message.el (message-is-yours-p):
10869         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10870
10871 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10872
10873         * mm-view.el (mm-inline-text): Withdraw the last change.
10874
10875 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10876
10877         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10878         executing enriched-decode.
10879
10880 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10881
10882         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
10883         charset of tar files.
10884
10885 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
10886
10887         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
10888
10889 2005-06-04  Lute Kamstra  <lute@gnu.org>
10890
10891         * nnfolder.el (nnfolder-read-folder): Make sure that undo
10892         information is never recorded.
10893
10894 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10895
10896         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
10897
10898 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10899
10900         * pop3.el (pop3-apop): Run md5 in the binary mode.
10901
10902         * starttls.el (starttls-set-process-query-on-exit-flag):
10903         Use eval-and-compile.
10904
10905 2005-05-31  Simon Josefsson  <jas@extundo.com>
10906
10907         * smime.el (smime-replace-in-string): Define.
10908         (smime-cert-by-ldap-1): Use it.
10909
10910 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10911
10912         * gnus-art.el (article-display-x-face): Replace
10913         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10914
10915         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
10916         set-process-query-on-exit-flag or process-kill-without-query.
10917
10918         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
10919         loop instead of replace-regexp.
10920
10921         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
10922         instead of process-kill-without-query if it is available.
10923
10924         * lpath.el: Fbind ldap-search-entries.
10925
10926         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
10927         instead of find-file-hooks if it is available.
10928
10929         * mml1991.el: Bind pgg-default-user-id when compiling.
10930
10931         * mml2015.el: Bind pgg-default-user-id when compiling.
10932
10933         * nndraft.el (nndraft-request-associate-buffer):
10934         Use write-contents-functions instead of write-contents-hooks if it is
10935         available.
10936
10937         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
10938         instead of find-file-hooks if it is available.
10939
10940         * nntp.el (nntp-open-connection): Replace
10941         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10942         (nntp-open-ssl-stream): Ditto.
10943         (nntp-open-tls-stream): Ditto.
10944
10945         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
10946         set-process-query-on-exit-flag or process-kill-without-query.
10947         (starttls-open-stream-gnutls): Use it instead of
10948         process-kill-without-query.
10949         (starttls-open-stream): Ditto.
10950
10951 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
10952
10953         * smime.el (smime-cert-by-ldap-1): Don't use
10954         replace-regexp-in-string.
10955
10956 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
10957
10958         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
10959
10960         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
10961         in PEM format.  Adjust to the XEmacs compability.
10962
10963 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
10964
10965         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
10966         by `string-to-number'.
10967         * gnus-agent.el (gnus-agent-regenerate-group)
10968         (gnus-agent-fetch-articles): Ditto.
10969         * gnus-art.el (gnus-button-fetch-group): Ditto.
10970         * gnus-cache.el (gnus-cache-generate-active)
10971         (gnus-cache-articles-in-group): Ditto.
10972         * gnus-group.el (gnus-group-set-current-level)
10973         (gnus-group-insert-group-line): Ditto.
10974         * gnus-score.el (gnus-score-set-expunge-below)
10975         (gnus-score-set-mark-below, gnus-summary-score-effect)
10976         (gnus-summary-score-entry): Ditto.
10977         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
10978         (gnus-soup-pack): Ditto.
10979         * gnus-spec.el (gnus-xmas-format): Ditto.
10980         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
10981         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
10982         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
10983         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
10984         * nndb.el (nndb-get-remote-expire-response): Ditto.
10985         * nndiary.el (nndiary-parse-schedule-value)
10986         (nndiary-string-to-number, nndiary-request-replace-article)
10987         (nndiary-request-article): Ditto.
10988         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
10989         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
10990         * nneething.el (nneething-make-head): Ditto.
10991         * nnfolder.el (nnfolder-request-article)
10992         (nnfolder-retrieve-headers): Ditto.
10993         * nnheader.el (nnheader-file-to-number): Ditto.
10994         * nnkiboze.el (nnkiboze-request-article): Ditto.
10995         * nnmail.el (nnmail-process-unix-mail-format)
10996         (nnmail-process-babyl-mail-format): Ditto.
10997         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
10998         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
10999         (nnmh-request-create-group, nnmh-request-list-1)
11000         (nnmh-request-group, nnmh-request-article): Ditto.
11001         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
11002         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
11003         * nnsoup.el (nnsoup-make-active): Ditto.
11004         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
11005         * nntp.el (nntp-find-group-and-number)
11006         (nntp-retrieve-headers-with-xover): Ditto.
11007         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
11008         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
11009         (pgg-format-key-identifier): Ditto.
11010         * pop3.el (pop3-last, pop3-stat): Ditto.
11011         * qp.el (quoted-printable-decode-region): Ditto.
11012
11013         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11014         of concat.
11015
11016 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11017
11018         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11019
11020         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11021
11022         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11023
11024         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11025
11026         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11027
11028         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11029
11030         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11031         (gnus-carpal-mode): Ditto.
11032
11033         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11034         (gnus-browse-mode): Ditto.
11035
11036         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11037
11038         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11039
11040 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11041
11042         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11043
11044 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11045
11046         * gnus-util.el (gnus-run-mode-hooks): New function.
11047
11048         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11049
11050         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11051         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11052
11053 2005-05-27  Lute Kamstra  <lute@gnu.org>
11054
11055         * dns-mode.el (dns-mode): Specify customization group.
11056
11057 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11058
11059         * gnus-agent.el (gnus-agent-make-mode-line-string):
11060         Use mode-line-highlight as mouse-face.
11061
11062 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11063
11064         * canlock.el (canlock): Change the parent group to news.
11065
11066         * deuglify.el (gnus-outlook-deuglify): Add :group.
11067
11068         * dig.el (dig): Add :group.
11069
11070         * dns-mode.el (dns-mode): Add :group.
11071
11072         * encrypt.el (encrypt): Add :group.
11073
11074         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11075         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11076         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11077         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11078         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11079
11080         * gnus-diary.el (gnus-diary): Add :group.
11081
11082         * gnus.el (gnus-group-news-1-face): Add :group.
11083         (gnus-group-news-1-empty-face): Ditto.
11084         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11085         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11086         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11087         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11088         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11089         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11090         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11091         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11092         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11093         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11094         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11095         (gnus-summary-high-ticked-face): Ditto.
11096         (gnus-summary-low-ticked-face): Ditto.
11097         (gnus-summary-normal-ticked-face): Ditto.
11098         (gnus-summary-high-ancient-face): Ditto.
11099         (gnus-summary-low-ancient-face): Ditto.
11100         (gnus-summary-normal-ancient-face): Ditto.
11101         (gnus-summary-high-undownloaded-face): Ditto.
11102         (gnus-summary-low-undownloaded-face): Ditto.
11103         (gnus-summary-normal-undownloaded-face): Ditto.
11104         (gnus-summary-high-unread-face): Ditto.
11105         (gnus-summary-low-unread-face): Ditto.
11106         (gnus-summary-normal-unread-face): Ditto.
11107         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11108         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11109
11110         * hashcash.el (hashcash): New custom group.
11111         (hashcash-default-payment): Add :group.
11112         (hashcash-payment-alist): Ditto.
11113         (hashcash-default-accept-payment): Ditto.
11114         (hashcash-accept-resources): Ditto.
11115         (hashcash-path): Ditto.
11116         (hashcash-extra-generate-parameters): Ditto.
11117         (hashcash-double-spend-database): Ditto.
11118         (hashcash-in-news): Ditto.
11119
11120         * message.el (message-minibuffer-local-map): Add :group.
11121
11122         * netrc.el (netrc): Add :group.
11123
11124         * sieve-manage.el (sieve-manage-log): Add :group.
11125         (sieve-manage-default-user): Diito.
11126         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11127         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11128         (sieve-manage-authenticators): Ditto.
11129         (sieve-manage-authenticator-alist): Ditto.
11130         (sieve-manage-default-port): Ditto.
11131
11132         * sieve-mode.el (sieve-control-commands-face): Add :group.
11133         (sieve-action-commands-face): Ditto.
11134         (sieve-test-commands-face): Ditto.
11135         (sieve-tagged-arguments-face): Ditto.
11136
11137         * smime.el (smime): Add :group.
11138
11139         * spam-report.el (spam-report): Add :group.
11140
11141         * spam.el (spam, spam-face): Add :group.
11142
11143 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11144
11145         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11146         return \n.\n.\n at the end of articles.  Protect against that.
11147         (nntp-with-open-group): Allow debugging.
11148
11149         * nnheader.el (mail-header-set-extra): Make into a function
11150         because I just could't understand how to quote the list properly.
11151
11152         * dns.el (query-dns-cached): New function.
11153
11154 2005-05-26  Lute Kamstra  <lute@gnu.org>
11155
11156         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11157
11158 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11159
11160         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11161
11162         * gnus-art.el: Don't autoload mail-extract-address-components.
11163
11164         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11165         eval-and-compile to evaluate it.
11166
11167         * hashcash.el: Don't autoload executable-find.
11168
11169         * nndb.el: Don't declare the nndb back end two or more times; don't
11170         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11171
11172         * nntp.el: Autoload format-spec instead of format; use
11173         eval-and-compile to evaluate autoload forms.
11174
11175 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11176
11177         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11178
11179 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11180
11181         * gnus.el (gnus-version-number): Bump version.
11182
11183 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11184
11185         * gnus.el: No Gnus v0.3 is released.
11186
11187 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11188
11189         * lpath.el (featurep): Bind show-nonbreak-escape.
11190
11191 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11192
11193         * gnus-art.el (gnus-article-edit-part): Disable undo.
11194
11195 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11196
11197         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11198         gnus-article-date-lapsed-new-header is t if date timer is active;
11199         skip headers in which the original date value is empty.
11200         (gnus-article-save-original-date): Redefine it as a macro.
11201         (gnus-display-mime): Use it.
11202
11203 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11204
11205         * gnus-art.el (article-date-ut): Support converting date in
11206         forwarded parts as well.
11207         (gnus-article-save-original-date): New function.
11208         (gnus-display-mime): Use it.
11209
11210 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11211
11212         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11213         enclosure element of <item>.
11214
11215 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11216
11217         * message.el (message-kill-buffer-query): Renamed from
11218         `message-kill-buffer-query-if-modified'.  Added :version.
11219
11220 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11221
11222         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11223         window layout.
11224
11225 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11226
11227         * mml.el: Autoload dnd when compiling.
11228
11229 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11230
11231         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11232         x-dnd-*.
11233
11234 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11235
11236         * qp.el (quoted-printable-encode-region): Save excursion.
11237
11238 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11239
11240         * message.el (message-kill-buffer-query-if-modified): Add new variable
11241         so the user can kill a modified message buffer quickly.
11242         (message-kill-buffer): Use it.
11243
11244 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11245
11246         * lpath.el: Fbind display-time-event-handler; don't fbind
11247         string-to-multibyte.
11248
11249         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11250
11251 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11252
11253         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11254         contained in text because xml.el decodes entities) with LFs.
11255
11256 2005-04-11  Lute Kamstra  <lute@gnu.org>
11257
11258         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11259         differently.
11260
11261 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11262
11263         * mm-util.el (mm-detect-coding-region): Typo.
11264
11265 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11266
11267         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11268
11269 2005-04-06  Deepak Goel  <deego@gnufans.org>
11270
11271         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11272         user-function allow user modifications of the scores.
11273         (spam-stat-score-buffer-user): New function, to allow
11274         user-computed modifications to the score.
11275         (spam-stat-score-buffer-user-functions): List of additional
11276         scoring functions.
11277         (spam-stat-error-holder): Global temporary error holder.
11278         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11279         variable.
11280
11281 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11282
11283         * gnus-registry.el (gnus-registry-clean-empty-function)
11284         (gnus-registry-trim, gnus-registry-fetch-groups)
11285         (gnus-registry-delete-group): Groups that match
11286         `gnus-registry-ignored-groups' are removed from the registry
11287         entries, not just ignored for splitting.  This helps clean up the
11288         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11289         to get all the groups a message ID is in.
11290
11291         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11292         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11293         (spam-stat-score-buffer-user-functions): Add :number custom type.
11294
11295 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11296
11297         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11298         argument in XEmacs.
11299
11300         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11301         (nnrss-request-group): Decode group name first.
11302         (nnrss-request-article): Make a text/plain article if mml-to-mime
11303         failed.
11304         (nnrss-get-encoding): Return a compatible encoding according to
11305         nnrss-compatible-encoding-alist.
11306         (nnrss-find-el): Use consp instead of listp.
11307         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11308
11309 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11310
11311         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11312         which Emacs 20 doesn't support.
11313         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11314
11315 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11316
11317         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11318         silence the byte compiler inside the defun.
11319
11320         * gnus-demon.el (parse-time-string): Add autoload.
11321
11322         * gnus-delay.el (parse-time-string): Add autoload.
11323
11324         * gnus-art.el (parse-time-string): Add autoload.
11325
11326         * nnultimate.el (parse-time): Require for `parse-time-string'.
11327
11328 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11329
11330         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11331
11332         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11333
11334         * smime.el (smime-ldap-host-list): Add :version.
11335
11336 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11337
11338         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11339         pass it to `gnus-browse-read-group'.
11340         (gnus-browse-read-group): Add NUMBER argument and pass it to
11341         `gnus-group-read-ephemeral-group'.
11342
11343         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11344         argument and pass it to `gnus-group-read-group'.
11345
11346 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11347
11348         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11349         mm-xemacs-find-mime-charset-1 if we have the mule feature
11350         available at runtime.
11351
11352 2005-03-25  Werner Lemberg  <wl@gnu.org>
11353
11354         * nnmaildir.el: Replace `illegal' with `invalid'.
11355
11356 2005-03-23  Lute Kamstra  <lute@gnu.org>
11357
11358         * time-date.el: Add comment on time value formats.
11359         Don't require parse-time.
11360         (with-decoded-time-value): New macro.
11361         (encode-time-value): New function.
11362         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11363         (days-to-time): Return a valid time value when arg is huge.
11364         (time-since): Use time-subtract.
11365         (time-to-number-of-days): Use time-to-seconds.
11366
11367 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11368
11369         * gnus-start.el (gnus-display-time-event-handler):
11370         Check display-time-timer at runtime rather than only at load time
11371         in case display-time-mode is turned off in the mean time.
11372
11373 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11374
11375         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11376         used.
11377
11378         * nneething.el (nneething-map-file-directory): Derive from
11379         `gnus-directory'.
11380
11381         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11382         the To/Cc button.
11383
11384 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11385
11386         * nnmaildir.el (nnmaildir-request-accept-article):
11387         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11388
11389 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11390
11391         * gnus-async.el: Require timer-funcs at compile time when in
11392         XEmacs for `run-with-idle-timer'.
11393
11394 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11395
11396         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11397         autoloaded function.
11398
11399 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11400
11401         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11402
11403 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11404
11405         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11406
11407 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11408
11409         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11410         gnus-expert-user to default.
11411
11412 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11413
11414         * nnimap.el (nnimap-open-server): Ditto.
11415
11416         * imap.el (imap-authenticate): Fix typo.
11417
11418 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11419
11420         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11421         buffer (since IMAP server might return FETCH response out of
11422         order, and the nntp buffer must be sorted).
11423
11424 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11425
11426         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11427         comparison on string.
11428
11429         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11430         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11431         (gnus-agent-summary-fetch-series): Modified to protect against
11432         gnus-agent-summary-fetch-group clearing processable flags.
11433         (gnus-agent-synchronize-group-flags): Update live group buffer as
11434         synchronization may occur due to the user toggle the plugged
11435         status.
11436         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11437         successfully downloaded.
11438         (gnus-agent-expire-group-1): Avoid using markers when the overview
11439         is in ascending order; greatly improves performance.
11440         (gnus-agent-regenerate-group): Use
11441         gnus-agent-synchronize-group-flags to reset read status in both
11442         gnus and server.
11443         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11444
11445 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11446
11447         * message.el: Don't autoload former message-utils variables.
11448         (message-strip-subject-trailing-was): Change doc string.
11449
11450         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11451         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11452         (nnweb-google-search): Add "hl=en" here.
11453         (nnweb-google-parse-1, nnweb-google-create-mapping):
11454         Don't hardcode URL.
11455
11456 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11457
11458         * message.el (message-get-reply-headers, message-followup):
11459         Mention related variables `message-use-followup-to' and
11460         `message-use-mail-followup-to', in the information buffer.
11461
11462         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11463         of broken groups(-beta).google.com.
11464
11465 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11466
11467         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11468         parameter to invoked gnus-request-move-article; remove the
11469         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11470         all at once instead of once per article.
11471         (gnus-summary-remove-process-mark): Accept a list of articles as
11472         well as a single article for processing.
11473
11474         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11475         parameter.
11476
11477         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11478
11479         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11480
11481         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11482         parameter.
11483
11484         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11485         parameter.
11486
11487         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11488         parameter and remove the gnus-sum-hint-move-is-internal variable.
11489
11490         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11491         parameter.
11492
11493         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11494         parameter.
11495
11496         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11497         parameter.
11498
11499         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11500
11501         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11502         parameter.
11503
11504         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11505         parameter.
11506
11507 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11508
11509         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11510         a more conservative way.
11511
11512 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11513
11514         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11515         buffer, so it moves the window's cursor.
11516
11517 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11518
11519         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11520         `mm-dissect-multipart' and receive the from field as an (optional)
11521         argument from `mm-dissect-multipart'.
11522         (mm-dissect-multipart): Receive the from field as an argument and
11523         pass it on when we call `mm-dissect-buffer' on MIME parts.
11524         Fixes verification/decryption of signed/encrypted MIME parts.
11525
11526 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11527
11528         * gnus-sum.el (gnus-summary-move-article): Set
11529         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11530         whatever it calls (right now, only nnimap-request-move article
11531         respects it).
11532
11533         * nnimap.el (nnimap-request-move-article): When
11534         gnus-sum-hint-move-is-internal is set, don't do the extra
11535         nnimap-request-article.
11536
11537 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11538
11539         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11540
11541         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11542         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11543
11544         * gnus-sum.el (gnus-summary-caesar-message):
11545         Apply `gnus-treat-article' after rotation.
11546
11547         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11548         doc string.
11549
11550 2005-02-22  Simon Josefsson  <jas@extundo.com>
11551
11552         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11553         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11554         <arne@arnested.dk>.
11555         (encrypt): Add password-cache and password-cache-expiry as group
11556         members.
11557
11558 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11559
11560         * smime.el (smime-ldap-host-list): Doc fix.
11561         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11562         cache) password.
11563         (smime-sign-region): Use it.
11564         (smime-decrypt-region): Use it.
11565         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11566         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11567         fails.
11568         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11569         certificate from DER to PEM format rather than calling openssl.
11570
11571         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11572
11573         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11574         for signing/encryption.
11575
11576         * mml.el (mml-parse-1): Use them.
11577
11578 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11579
11580         * nnrss.el (nnrss-verbose): Removed.
11581         (nnrss-request-group): Use `nnheader-message' instead.
11582
11583 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11584
11585         * nnrss.el (nnrss-verbose): New variable.
11586         (nnrss-request-group): Make it say nnrss is requesting a group.
11587
11588 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11589
11590         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11591         Handle news URL with given port correctly.
11592
11593 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11594
11595         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11596         containing special characters.
11597
11598         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11599
11600         * mml.el (mime-to-mml): Ditto.
11601
11602         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11603         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11604         (rfc2047-decode-region): Quote decoded words containing special
11605         characters when rfc2047-quote-decoded-words-containing-tspecials
11606         is non-nil.
11607
11608 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11609
11610         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11611
11612         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11613
11614 2005-02-15  Simon Josefsson  <jas@extundo.com>
11615
11616         * nnimap.el (nnimap-debug): Doc fix.
11617
11618         * imap.el (imap-debug): Doc fix.
11619
11620 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11621
11622         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11623
11624 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11625
11626         * gnus.el (spam-contents): Improve docs for spam-contents
11627         parameter in its variable incarnation.
11628
11629 2005-02-14  Simon Josefsson  <jas@extundo.com>
11630
11631         * smime-ldap.el: Use require instead of load-library for ldap.
11632         (smime-ldap-search): Indent.
11633         (smime-ldap-search-internal): Shorten line.
11634
11635         * smime.el (smime-cert-by-dns): Add doc-string.
11636         (smime-cert-by-ldap-1): Indent.
11637
11638         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11639         mml-smime-get-dns-ldap.
11640         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11641
11642 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11643
11644         * smime.el: Require smime-ldap.
11645         (smime-ldap-host-list): New variable.
11646         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11647
11648         * mml-smime.el (mml-smime-encrypt-query): New function.
11649         (mml-smime-encrypt-query): Use it.
11650
11651         * smime-ldap.el: New file.
11652
11653 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11654
11655         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11656
11657 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11658
11659         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11660         argument in doc string.  Make query for type more clear.
11661
11662 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11663
11664         * gnus.el (gnus-group-startup-message): Search for gnus images in
11665         etc/images/gnus.
11666         * mm-util.el (mm-image-load-path): Likewise.
11667         * smiley.el (smiley-data-directory): Search for smilies in
11668         etc/images/smilies.
11669
11670 2005-02-09  Kim F. Storm  <storm@cua.dk>
11671
11672         Change Emacs release version from 21.4 to 22.1 throughout.
11673         Change Emacs development version from 21.3.50 to 22.0.50.
11674
11675 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11676
11677         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11678
11679         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11680         non-Mule XEmacs as well.
11681         (mm-decompress-buffer): Signal an error intentionally if it does
11682         not decompress compressed data because auto-compression-mode is
11683         disabled.
11684
11685 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11686
11687         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11688         an ID in the registry even if it has no groups.
11689
11690 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11691
11692         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11693         merge it into mm-decompress-buffer.
11694         (gnus-mime-copy-part): Use the MIME part charset, the value which
11695         a user specified or gnus-newsgroup-charset for decoding, like
11696         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11697         save-buffer what was used.  Suggested by Kevin Ryde
11698         <user42@zip.com.au>.
11699         (gnus-mime-inline-part): Allow the name parameter as well as the
11700         filename parameter; force decompressing of compressed data; always
11701         display contents being not decoded as unibyte.
11702
11703         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11704         as well as the filename parameter.
11705
11706         * mm-util.el (mm-decompress-buffer): Merge
11707         gnus-mime-jka-compr-maybe-uncompress.
11708         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11709         of compressed data.
11710
11711 2005-02-08  Simon Josefsson  <jas@extundo.com>
11712
11713         * imap.el (imap-log): Doc fix.
11714
11715 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11716
11717         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11718         the coding cookies; decompress compressed parts.
11719
11720         * mml.el (mml-generate-mime-1): Add the charset parameter according
11721         to the value which a user specified manually or the coding cookie.
11722
11723         * mm-util.el (mm-string-to-multibyte): New function.
11724         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11725         (mm-coding-system-to-mime-charset): New function.
11726         (mm-decompress-buffer): New function.
11727         (mm-find-buffer-file-coding-system): New function.
11728
11729         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11730         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11731         parts.
11732
11733 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11734
11735         * mm-view.el (mm-display-inline-fontify): Decode a part according
11736         to the charset parameter.
11737
11738 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11739
11740         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11741         prefix arg is neither nil nor a number, as info specifies.
11742
11743 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11744
11745         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11746         timestamps.
11747
11748 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11749
11750         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11751         groups error checking and notify user.
11752
11753 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11754
11755         * message.el (message-send-mail-function): Check existence of
11756         sendmail-program first before using default value
11757         `message-send-mail-with-sendmail'.  Otherwise use more generic
11758         `smtpmail-send-it'.
11759
11760 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11761
11762         * nntp.el (nntp-request-update-info): Always return nil.
11763
11764 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11765
11766         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11767
11768 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11769
11770         * message.el (message-beginning-of-line): Change the behavior when
11771         invoked between BOL and : so that it first moves backward.
11772
11773 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11774
11775         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11776         article buffer when editing of the article is discarded.
11777         (gnus-article-prepare): Revert.
11778
11779 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11780
11781         * gnus-art.el (gnus-article-prepare):
11782         Remove message-strip-forbidden-properties from the local hook.
11783
11784 2005-01-27  Simon Josefsson  <jas@extundo.com>
11785
11786         * password.el (password-cache-add): Only start one timer per key.
11787         Reported by Derek Atkins <warlord@MIT.EDU>.
11788
11789 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11790
11791         * run-at-time.el: Removed.  It is no longer needed as
11792         timer-funcs.el in the xemacs-base package has a working version of
11793         `run-at-time'.
11794
11795         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11796
11797         * password.el: Require timer-funcs instead of run-at-time in
11798         XEmacs.
11799         Remove `password-run-at-time' macro.
11800         (password-cache-add): Use `run-at-time' instead of
11801         `password-run-at-time'.
11802
11803         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11804         Remove `nnheader-cancel-function-timers' alias,
11805         `cancel-function-timers' exists in XEmacs in timer-funcs.
11806
11807         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11808         for `run-with-idle-timer'.
11809
11810         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11811         for `run-at-time'.
11812
11813         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11814         for `with-timeout'.
11815
11816         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11817         the same as for XEmacs 21.4.
11818         No need to ignore `run-with-idle-timer', this function exists in
11819         XEmacs now in timer-funcs.el in the xemacs-base package.
11820         (dgnushack-compile): No need to delete
11821         run-at-time.el from the list of files to compile because it
11822         doesn't exist anymore.
11823
11824 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11825
11826         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11827         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11828
11829 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11830
11831         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11832         sensitively.
11833
11834 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11835
11836         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11837
11838 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11839
11840         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11841         which will be inserted according to the multibyteness of a buffer
11842         rather than the type of contents.  Suggested by ARISAWA Akihiro
11843         <ari@mbf.ocn.ne.jp>.
11844
11845         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11846         of string which old xml.el may return rather than a string.
11847
11848 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11849
11850         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11851
11852 2005-01-16  Simon Josefsson  <jas@extundo.com>
11853
11854         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11855         idn/idna.el isn't available.
11856         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11857         <michael@waxrat.com>.
11858
11859         * hashcash.el: Remove non-FSF copyright header.
11860
11861         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11862         (hashcash-generate-payment): Use it.
11863         (hashcash-generate-payment-async): Use it.
11864
11865 2005-01-15  Simon Josefsson  <jas@extundo.com>
11866
11867         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11868         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11869
11870         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11871         gnus-summary-idna-message.
11872         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11873         (gnus-summary-idna-message): New function.
11874
11875 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11876
11877         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11878         gnus-novice-user.
11879
11880 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11881
11882         * nnrss.el (nnrss-request-delete-group): Delete entries in
11883         nnrss-group-alist as well.
11884         (nnrss-save-server-data): Insert newline.
11885
11886 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
11887
11888         * gnus.el (gnus-user-agent): Use list of symbols instead of
11889         symbols.  Display full version number for (S)XEmacs.  Optionally
11890         display (S)XEmacs codename.
11891
11892         * gnus-util.el (gnus-emacs-version): Update for new
11893         `gnus-user-agent'.
11894
11895         * gnus-msg.el (gnus-extended-version): Make it possible to omit
11896         Gnus version.
11897
11898 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
11899
11900         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
11901         which is unreadable in some setups.
11902
11903 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11904
11905         * gnus-spec.el (gnus-update-format-specifications): Flush the
11906         group format spec cache if it doesn't support decoded group names.
11907
11908 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11909
11910         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
11911         Allow to apply decay on score files matching a regexp.
11912
11913 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11914
11915         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
11916         compatibility in %g and %c.
11917
11918 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11919
11920         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
11921         name for only %g and %c.
11922         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
11923         of gnus-tmp-group to decoded group name.
11924         (gnus-group-make-rss-group): Exclude `/'s from group names.
11925
11926 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11927
11928         * nnrss.el (nnrss-get-encoding): Fix regexp.
11929
11930 2004-12-27  Simon Josefsson  <jas@extundo.com>
11931
11932         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
11933         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
11934         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
11935
11936 2004-12-17  Kim F. Storm  <storm@cua.dk>
11937
11938         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
11939
11940         * gnus-sum.el (gnus-summary-mode-map): Likewise.
11941
11942 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11943
11944         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
11945
11946 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11947
11948         * nnrss.el: Require rfc2047 and mml.
11949         (nnrss-file-coding-system): New variable.
11950         (nnrss-format-string): Redefine it as an inline function.
11951         (nnrss-decode-group-name): New function.
11952         (nnrss-string-as-multibyte): Remove.
11953         (nnrss-retrieve-headers): Decode group name; don't use
11954         nnrss-format-string.
11955         (nnrss-request-group): Decode group name.
11956         (nnrss-request-article): Decode group name; allow a Message-ID as
11957         well as an article number; don't use nnrss-format-string; encode a
11958         Message-ID string which may contain non-ASCII characters; use
11959         mml-to-mime to compose a MIME article.
11960         (nnrss-request-expire-articles): Decode group name.
11961         (nnrss-request-delete-group): Decode group name.
11962         (nnrss-fetch): Clarify error message.
11963         (nnrss-read-server-data): Use insert-file-contents instead of load;
11964         bind file-name-coding-system; use multibyte buffer.
11965         (nnrss-save-server-data): Bind coding-system-for-write to the
11966         value of nnrss-file-coding-system; bind file-name-coding-system;
11967         add coding cookie.
11968         (nnrss-read-group-data): Use insert-file-contents instead of load;
11969         bind file-name-coding-system; use multibyte buffer.
11970         (nnrss-save-group-data): Bind coding-system-for-write to the
11971         value of nnrss-file-coding-system; bind file-name-coding-system.
11972         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
11973         make it work with non-ASCII text.
11974         (nnrss-find-el): Make it work with old xml.el as well.
11975
11976 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11977
11978         * nnrss.el (nnrss-get-encoding): New function.
11979         (nnrss-fetch): Use unibyte buffer initially; bind
11980         coding-system-for-read while performing mm-url-insert; remove ^Ms;
11981         decode contents according to the encoding attribute.
11982         (nnrss-save-group-data): Add coding cookie.
11983         (nnrss-mime-encode-string): New function.
11984         (nnrss-check-group): Use it to encode subject and author.
11985
11986 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
11987
11988         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
11989         imaginary variable.
11990
11991 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11992
11993         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
11994         correctly even if there are wide characters.
11995
11996 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
11997
11998         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
11999         downcased symbol names; make a new cache instead of reusing
12000         bbdb-hashtable.
12001
12002 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12003
12004         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12005         concatenating segments rather than before concatenating them.
12006         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12007
12008         * message.el (message-get-reply-headers): Bind `extra'.
12009
12010 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12011
12012         * message.el (message-extra-wide-headers): New variable.
12013         (message-get-reply-headers): Use it.
12014
12015 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12016
12017         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12018         (gnus-agent-group-pathname): Ditto.
12019
12020         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12021
12022         * gnus-group.el (gnus-group-make-group): Decode group name.
12023         (gnus-group-make-rss-group): Register the group data after opening
12024         the nnrss group.
12025
12026 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12027
12028         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12029         by expiry now get marked as read.
12030
12031 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12032
12033         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12034
12035 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12036
12037         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12038         unify Latin characters in XEmacs.
12039         (mm-find-mime-charset-region): Use it.
12040
12041 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12042
12043         * gnus-util.el (gnus-delete-directory): New function.
12044
12045         * gnus-agent.el (gnus-agent-delete-group): Use it.
12046
12047         * gnus-cache.el (gnus-cache-delete-group): Use it.
12048
12049 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12050
12051         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12052         names.
12053
12054 2004-12-16  Simon Josefsson  <jas@extundo.com>
12055
12056         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12057
12058 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12059
12060         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12061
12062         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12063         (gnus-group-set-current-level): Decode group name.
12064
12065 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12066
12067         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12068         failed.
12069
12070 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12071
12072         * gnus-group.el (gnus-group-delete-group): Decode group name.
12073         (gnus-group-make-rss-group): Encode group name.
12074         (gnus-group-catchup-current): Decode group name.
12075         (gnus-group-kill-group): Decode group name.
12076
12077 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12078
12079         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12080
12081 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12082
12083         * gnus-group.el (gnus-group-make-rss-group):
12084         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12085
12086         * gnus-start.el (gnus-setup-news): Honor user's setting to
12087         gnus-message-archive-method.  Suggested by Lute Kamstra
12088         <lute@gnu.org>.
12089
12090 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12091
12092         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12093         global counterparts of the buffer-local variables.
12094
12095 2004-11-16  Romain Francoise  <romain@orebokech.com>
12096
12097         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12098         counterparts of the buffer-local variables.
12099
12100 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12101
12102         * message.el (message-forbidden-properties): Fixed typo in doc
12103         string.
12104
12105 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12106
12107         * gnus-util.el (gnus-replace-in-string): Added doc string.
12108
12109         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12110         to avoid problems when splitting mails with many recipients.
12111
12112 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12113
12114         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12115         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12116
12117 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12118
12119         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12120         if there is no hashtable in memory or file modification time is
12121         newer than cached timestamp.
12122
12123 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12124
12125         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12126         not-matching option.
12127
12128 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12129
12130         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12131         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12132         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12133         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12134         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12135         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12136
12137 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12138
12139         * message.el (message-forward-make-body-mml): Remove headers
12140         according to message-forward-ignored-headers if a message is decoded.
12141
12142 2004-12-02  Romain Francoise  <romain@orebokech.com>
12143
12144         * message.el (message-forward-make-body-plain): Always remove
12145         headers according to message-forward-ignored-headers.
12146
12147 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12148
12149         * spam.el (spam-summary-prepare-exit): Remove the
12150         gnus-summary-limit pop for now, it has problems with ham marks for
12151         me.
12152
12153 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12154
12155         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12156         correctly.
12157
12158 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12159
12160         * format-spec.el (format-spec): Message the char.
12161
12162 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12163
12164         * gnus-art.el (gnus-split-methods): Reformat comments.
12165
12166         * spam.el (spam-summary-prepare-exit): Remove article limits
12167         before exiting the summary buffer.
12168
12169 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12170
12171         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12172         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12173
12174         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12175         order to silence the byte compiler.
12176
12177         * spam.el: Fix the way to silence the byte compiler, which
12178         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12179         bbdb-search-simple, spam-BBDB-register-routine,
12180         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12181         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12182         spam-stat-buffer-is-spam, spam-stat-load,
12183         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12184         spam-stat-save and spam-stat-split-fancy.
12185
12186 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12187
12188         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12189         which may confuse users.
12190         (canlock-password-for-verify): Ditto.
12191
12192         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12193
12194         * gnus-art.el (gnus-emphasis-alist): Ditto.
12195
12196         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12197
12198         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12199
12200         * gnus-start.el (gnus-save-killed-list): Ditto.
12201
12202         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12203         (gnus-sum-thread-tree-root): Ditto.
12204         (gnus-sum-thread-tree-false-root): Ditto.
12205         (gnus-sum-thread-tree-single-indent): Ditto.
12206
12207         * message.el (message-courtesy-message): Ditto.
12208         (message-archive-note): Ditto.
12209         (message-subscribed-address-file): Ditto.
12210         (message-user-fqdn): Ditto.
12211
12212         * spam-report.el (spam-report-gmane-regex): Ditto.
12213
12214         * spam.el (spam-blackhole-good-server-regex): Ditto.
12215
12216 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12217
12218         * mml.el (mml-preview): Widen the message buffer before copying
12219         the contents to the preview buffer; sort headers before previewing.
12220
12221         * message.el (message-hidden-headers): Fix the way to avoid a bug
12222         in the `repeat' widget in Emacs 21.3 or earlier.
12223
12224 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12225
12226         * message.el (message-hidden-headers): Default to "^References:".
12227         Improve customization type.  Suggested by Reiner Steib
12228         <Reiner.Steib@gmx.de>.
12229
12230 2004-11-25  Romain Francoise  <romain@orebokech.com>
12231
12232         * message.el (message-strip-forbidden-properties): Remove check for
12233         obsolete `message-hidden' text property, hidden headers are not
12234         accessible in the buffer anymore.
12235
12236 2004-11-22  Romain Francoise  <romain@orebokech.com>
12237
12238         * message.el (message-header-format-alist): Add `From' in list
12239         so that it can be sorted.
12240         (message-fix-before-sending): Widen and sort headers before
12241         sending.
12242         (message-hide-headers): Use narrowing to hide headers by moving
12243         them to the top of the buffer and narrowing to the region
12244         underneath.
12245
12246 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12247
12248         * message.el (message-strip-forbidden-properties): Bind
12249         buffer-read-only (etc) to nil.
12250
12251 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12252
12253         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12254         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12255
12256 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12257
12258         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12259
12260 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12261
12262         * dns.el (query-dns): Use sit-for to time instead of
12263         accept-process-output, since that doesn't seem to work on udp
12264         sockets.
12265
12266 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12267
12268         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12269
12270 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12271
12272         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12273         doc string.  Improve doc string.
12274
12275 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12276
12277         * nntp.el (nntp-request-update-info): Return nil if
12278         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12279         may not call gnus-activate-group which uselessly issues the GROUP
12280         commands for all nntp groups and wastes time.  Reported by Romain
12281         Francoise <romain@orebokech.com>.
12282
12283         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12284
12285 2004-11-15  Simon Josefsson  <jas@extundo.com>
12286
12287         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12288         headers separately.
12289         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12290         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12291
12292 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12293
12294         * gnus-start.el (gnus-convert-old-newsrc):
12295         Assign legacy-gnus-agent to 5.10.7.
12296
12297 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12298
12299         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12300         start of the lines.
12301
12302 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12303
12304         * hashcash.el (hashcash-default-payment): Change default to 20.
12305         (hashcash-default-accept-payment): Change default to 20.
12306         (hashcash-process-alist): New variable.
12307         (hashcash-generate-payment-async): Add.
12308         (hashcash-already-paid-p): Add.
12309         (hashcash-insert-payment): Don't generate payments twice.
12310         (hashcash-insert-payment-async): Add.
12311         (hashcash-insert-payment-async-2): Add.
12312         (hashcash-cancel-async): Add.
12313         (hashcash-wait-async): Add.
12314         (hashcash-processes-running-p): Add.
12315         (hashcash-wait-or-cancel): Add.
12316         (mail-add-payment): New optional argument.  Conditionally start
12317         asynchronous calculation.
12318         (mail-add-payment-async): Add.
12319
12320         * message.el (message-send-mail): Wait for asynchronous hashcash
12321         results.  Don't clobber existing X-Hashcash headers.
12322         (message-setup-1): Call mail-add-payment-async when
12323         message-generate-hashcash is non-nil.
12324
12325 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12326
12327         * message.el (message-use-alternative-email-as-from): Examine the
12328         From header as well; use message-make-from in order to include a
12329         user's full name.
12330
12331 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12332
12333         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12334         default; improve customization type.
12335         (gnus-emphasis-custom-with-format): New macro.
12336         (gnus-emphasis-custom-value-to-external): New function.
12337         (gnus-emphasis-custom-value-to-internal): New function.
12338
12339 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12340
12341         * dns.el (query-dns): Resolve reverse addresses.
12342
12343 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12344
12345         * gnus-group.el (gnus-group-get-new-news): Use it.
12346
12347         * gnus-start.el (gnus-check-reasonable-setup): New function.
12348
12349 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12350
12351         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12352         "Args out of range" error.  Reported by Arnaud Giersch
12353         <arnaud.giersch@free.fr>.
12354
12355 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12356
12357         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12358
12359 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12360
12361         * spam.el (spam group): Add :version.
12362
12363         * pgg-def.el (pgg group): Add :version.
12364
12365 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12366
12367         * gnus-art.el (gnus-article-edit-article): Don't associate the
12368         article buffer with a draft file.  This is a temporary measure
12369         against the 2004-08-22 change to gnus-article-edit-mode.
12370
12371 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12372
12373         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12374         (html2text-format-tags): Remove unused variable `attr'.
12375
12376 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12377
12378         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12379
12380         * tls.el (tls-process-connection-type, tls-success)
12381         (tls-certtool-program): Add :version.
12382
12383         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12384         (starttls-extra-arguments, starttls-process-connection-type)
12385         (starttls-connect, starttls-failure, starttls-success): Add :version.
12386
12387         * spam-stat.el (spam-stat): Add :version.
12388
12389         * sieve.el (sieve): Add :version.
12390
12391         * sha1.el (sha1): Add :version.
12392         (sha1-use-external): Remove redundant version.
12393
12394         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12395         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12396         (nnmail-split-fancy-match-partial-words)
12397         (nnmail-split-lowercase-expanded): Add :version.
12398
12399         * nndiary.el (nndiary): Add :version.
12400
12401         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12402
12403         * mml-sec.el (mml-default-sign-method)
12404         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12405         Add :version.
12406
12407         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12408
12409         * mm-url.el (mm-url-use-external, mm-url-program)
12410         (mm-url-arguments): Add :version.
12411
12412         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12413         (mm-attachment-file-modes, mm-decrypt-option)
12414         (mm-w3m-safe-url-regexp): Add :version.
12415
12416         * message.el (message-cite-prefix-regexp)
12417         (message-sendmail-envelope-from, message-minibuffer-local-map)
12418         (message-user-fqdn, message-completion-alist): Add :version.
12419
12420         * gnus-win.el (gnus-configure-windows-hook)
12421         (gnus-use-frames-on-any-display): Add :version.
12422
12423         * gnus-art.el (gnus-article-address-banner-alist)
12424         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12425         (gnus-treat-from-picon, gnus-treat-mail-picon)
12426         (gnus-treat-x-pgp-sig): Add :version.
12427
12428         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12429         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12430         (gnus-summary-article-delete-hook)
12431         (gnus-summary-display-while-building): Add :version.
12432
12433         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12434         (gnus-get-top-new-news-hook): Add :version.
12435
12436         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12437         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12438
12439         * gnus-registry.el (gnus-registry): Add :version.
12440
12441         * gnus-spec.el (gnus-use-correct-string-widths)
12442         (gnus-make-format-preserve-properties): Add :version.
12443
12444         * gnus.el (gnus-group-charter-alist)
12445         (gnus-group-fetch-control-use-browse-url)
12446         (gnus-install-group-spam-parameters): Add :version.
12447
12448         * gnus-diary.el (gnus-diary): Add :version.
12449
12450         * gnus-delay.el (gnus-delay): Add :version.
12451
12452         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12453         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12454         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12455         Add :version.
12456
12457         * gnus-agent.el (gnus-agent-max-fetch-size)
12458         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12459         (gnus-agent-prompt-send-queue): Add :version.
12460
12461         * deuglify.el (gnus-outlook-deuglify): Add :version.
12462
12463         * html2text.el: Beautify code.  Improve doc strings.  Some
12464         checkdoc cleanup.
12465         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12466
12467 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12468
12469         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12470
12471 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12472
12473         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12474         when package is loaded.
12475
12476         * spam.el (spam-summary-score-preferred-header): Add global preference
12477         for people who want to override the default SpamAssassin over
12478         Bogofilter preference (when both are set).
12479         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12480         (spam-user-format-function-S): Check
12481         spam-summary-score-preferred-header.
12482         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12483         (spam-user-format-function-S): Format the score correctly.
12484
12485 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12486
12487         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12488         signature file.  Suggested by Manoj Srivastava
12489         <srivasta@golden-gryphon.com>.
12490
12491         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12492         iso-2022-jp even in the Japanese language environment.
12493         Suggested by Jason Rumney <jasonr@gnu.org>.
12494
12495 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12496
12497         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12498         use the same characters as the dummy marks; make it free from
12499         getting affected by the language environment.
12500         (gnus-summary-read-group-1): Update mark positions only when the
12501         format spec is updated.
12502
12503         * gnus-spec.el (gnus-update-format-specifications): Return a list
12504         of updated types.
12505
12506 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12507
12508         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12509         of boundp to check if display-warning is available.
12510
12511 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12512
12513         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12514
12515 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12516
12517         * nnspool.el (nnspool-spool-directory): Use news-path if the
12518         news-directory variable is not bound.
12519
12520         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12521         function instead of display-warning if it is not available.
12522
12523 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12524
12525         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12526         v5-10: Use `point-at-bol'.
12527
12528 2004-10-26  Simon Josefsson  <jas@extundo.com>
12529
12530         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12531         <chenggao@gmail.com>.
12532
12533 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12534
12535         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12536         instead.
12537
12538 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12539
12540         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12541         to remove a server from the nnimap-server-buffer-alist.
12542         (nnimap-open-connection, nnimap-close-server): Use it.
12543
12544         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12545
12546 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12547
12548         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12549         running the major-mode function.
12550
12551 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12552
12553         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12554         dummy marks in the right way.
12555
12556 2004-10-18  David Edmondson  <dme@dme.org>
12557
12558         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12559         excessively.
12560
12561 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12562
12563         * gnus-util.el (gnus-split-references): Accept a nil references
12564         string and go on blissfully.
12565
12566         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12567         cases where the references string is non-nil but has no references.
12568
12569         * encrypt.el: Add autoload tags.
12570
12571         * spam.el (spam-resolve-registrations-routine): Remove article
12572         from unregistration list too.  Reported by David Hanak
12573         <dhanak@isis.vanderbilt.edu>
12574
12575 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12576
12577         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12578         nil.  Changed custom type.
12579
12580 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12581
12582         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12583
12584         * gnus-sum.el (gnus-summary-move-article): Use it.
12585
12586 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12587
12588         * encrypt.el: Add autoload cookies.
12589
12590         * spam.el (spam-backend-article-list-property)
12591         (spam-backend-get-article-todo-list)
12592         (spam-backend-put-article-todo-list)
12593         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12594         Resolve registrations separately.
12595         (spam-register-routine): Format comments.
12596         (spam-unregister-routine, spam-register-routine): Always call with
12597         specific-articles, no default list.
12598         (spam-summary-prepare-exit): Use the spam-classifications function.
12599
12600         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12601         gnus-encrypt.el.
12602
12603         * encrypt.el: Copied from gnus-encrypt.el.
12604
12605         * gnus-encrypt.el: Commented that it's obsolete.
12606
12607 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12608
12609         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12610         (gnus-score-save): Use it.
12611
12612         * message.el (message-bury): Use `window-dedicated-p'.
12613
12614 2004-10-15  Simon Josefsson  <jas@extundo.com>
12615
12616         * pop3.el (top-level): Don't require nnheader.
12617         (pop3-read-timeout): Add.
12618         (pop3-accept-process-output): Add.
12619         (pop3-read-response, pop3-retr): Use it.
12620
12621 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12622
12623         * spam.el (spam-register-routine): Move comment.
12624         (spam-verify-bogofilter): Use 'unknown for the initial
12625         spam-bogofilter-valid state, not 'never.
12626
12627         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12628         for netrc-machine.
12629
12630         * nnimap.el (nnimap-open-connection): Use
12631         netrc-machine-user-or-password.
12632
12633 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12634
12635         * gnus-registry.el (gnus-registry-unload-hook):
12636         Set as a variable with add-hook.
12637
12638         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12639         of news-path.
12640
12641         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12642
12643         * spam.el: Delete duplicate `provide'.
12644         (spam-unload-hook): Set as a variable with add-hook.
12645
12646 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12647
12648         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12649         in the doc string.
12650
12651         * message.el (message-ignored-news-headers)
12652         (message-ignored-supersedes-headers)
12653         (message-ignored-resent-headers)
12654         (message-forward-ignored-headers): Improve custom type.
12655
12656 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12657
12658         * message.el (message-tokenize-header): Fix 2004-09-06 change
12659         which used point-min in the wrong place.
12660
12661 2004-10-12  Simon Josefsson  <jas@extundo.com>
12662
12663         * tls.el (tls-certtool-program): New variable.
12664         (tls-certificate-information): New function, based on
12665         ssl-certificate-information.
12666
12667 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12668
12669         * compface.el: Move the version of ELisp-based uncompface program
12670         to the contrib directory because of the copyright problem.
12671
12672 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12673
12674         * message.el (message-kill-buffer): Raise the current frame.
12675
12676 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12677
12678         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12679
12680         * gnus.el (message-y-or-n-p): Autoload.
12681
12682         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12683         (pop3-password-required, pop3-authentication-scheme)
12684         (pop3-leave-mail-on-server): Made customizable.
12685         (pop3): New custom group.
12686         (pop3-retr): Remove `sleep-for' statements.
12687         Suggested by Dave Love <fx@gnu.org>.
12688
12689         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12690         Windows/DOS.
12691
12692         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12693         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12694         Dave Love <fx@gnu.org>.
12695
12696         * mml.el (mml-minibuffer-read-disposition): Require match.
12697         Suggested by Dave Love <fx@gnu.org>.
12698
12699 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12700
12701         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12702         doc string.
12703
12704 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12705
12706         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12707
12708 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12709
12710         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12711         instead of calling `mm-insert-inline', to decode text/* parts
12712         before displaying them.
12713
12714 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12715
12716         * mm-uu.el (mm-uu-text-plain-type): New variable.
12717         (mm-uu-pgp-signed-extract-1): Use it.
12718         (mm-uu-pgp-encrypted-extract-1): Use it.
12719         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12720         bind mm-uu-text-plain-type with that value.
12721         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12722         mm-uu-dissect.
12723
12724 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12725
12726         * gnus-group.el (gnus-update-group-mark-positions):
12727         * gnus-sum.el (gnus-update-summary-mark-positions):
12728         * message.el (message-check-news-body-syntax):
12729         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12730         of string-as-multibyte.
12731
12732 2004-10-05  Juri Linkov  <juri@jurta.org>
12733
12734         * gnus-group.el (gnus-update-group-mark-positions):
12735         * gnus-sum.el (gnus-update-summary-mark-positions):
12736         * message.el (message-check-news-body-syntax):
12737         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12738         8-bit unibyte values to a multibyte string for search functions.
12739
12740 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12741
12742         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12743         (mm-uu-dissect-text-parts): New function.
12744
12745         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12746         dissect text parts.
12747
12748         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12749         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12750
12751         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12752
12753         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12754         gnus-current-topics instead of gnus-current-topic.
12755
12756 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12757
12758         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12759
12760 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12761
12762         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12763         where approriate.
12764
12765         * nnml.el (nnml-generate-active-info): do.
12766
12767         * nndiary.el (nndiary-generate-active-info): do.
12768
12769         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12770         (gnus-topic-move): do.
12771
12772         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12773         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12774
12775         * gnus-srvr.el (gnus-server-prepare)
12776         (gnus-server-open-all-servers): do.
12777
12778         * gnus-msg.el (gnus-summary-cancel-article)
12779         (gnus-summary-resend-message)
12780         (gnus-summary-mail-crosspost-complaint): do.
12781
12782         * gnus-move.el (gnus-change-server): do.
12783
12784         * gnus-group.el (gnus-group-unmark-all-groups)
12785         (gnus-group-set-current-level): do.
12786
12787 2004-10-04  Simon Josefsson  <jas@extundo.com>
12788
12789         * message.el (message-generate-hashcash): Doc fix.
12790
12791 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12792
12793         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12794         avoid infinite recursion via gnus-get-function.
12795
12796 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12797
12798         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12799
12800         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12801
12802         * nnmail.el (nnmail-split-history): do.
12803
12804         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12805         (nnml-request-delete-group): do.
12806
12807         * nnslashdot.el (nnslashdot-read-groups): do.
12808
12809         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12810         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12811
12812         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12813         (nnspool-sift-nov-with-sed): Use last.
12814         (nnspool-retrieve-headers-with-nov): Use mapc.
12815         (nnspool-request-newgroups): Use dolist.
12816         (nnspool-request-group): Use last.
12817
12818         * nntp.el (nntp-read-server-type): Use dolist.
12819
12820         * nnvirtual.el (nnvirtual-create-mapping)
12821         (nnvirtual-update-read-and-marked): Use dolist.
12822         (nnvirtual-convert-headers): Simplify.
12823
12824 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12825
12826         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12827         support for sync'ing tick marks.
12828
12829 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12830
12831         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12832         there's no visible header.
12833
12834 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12835
12836         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12837         necessary, pass full group name to gnus-request-set-marks.
12838
12839 2004-10-01  Simon Josefsson  <jas@extundo.com>
12840
12841         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12842         acroread.
12843
12844 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12845
12846         * spam-report.el (spam-report-gmane): Fix interactive.
12847
12848         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12849
12850         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12851         when writing file.
12852         (gnus-agent-synchronize-flags): Don't default to being
12853         interactive.
12854
12855 2004-09-30  Simon Josefsson  <jas@extundo.com>
12856
12857         * message.el (message-generate-hashcash): Add.
12858         (message-send-mail): Use it, call mail-add-payment.
12859
12860 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12861
12862         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12863
12864 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12865
12866         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12867         gnus-requst-update-info with explicit code to sync the in-memory
12868         info read flags with the marks being sync'd to the backend.
12869
12870         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12871
12872 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12873
12874         * spam.el (spam-verify-bogofilter): Add new function.
12875         (spam-check-bogofilter)
12876         (spam-bogofilter-register-with-bogofilter): Use it.
12877         (spam-verify-bogofilter): Add small fixes.
12878
12879 2004-09-28  Simon Josefsson  <jas@extundo.com>
12880
12881         * hashcash.el (hashcash-generate-payment): Revert.
12882
12883 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12884
12885         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
12886         gnus-extract-references instead of gnus-split-references.
12887
12888         * gnus-util.el (gnus-extract-references): Add new function, analogous
12889         to gnus-split-references but extracts only the message-ID without
12890         anything extra.
12891
12892         * hashcash.el (hashcash-generate-payment)
12893         (hashcash-check-payment): Do the right thing if hashcash-path is
12894         nil (because the hashcash program could not be found).
12895
12896         * spam.el (spam-use-hashcash): Remove comment.
12897
12898 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
12899
12900         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
12901         (gnus-cache-enter-article, gnus-cache-remove-article)
12902         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
12903
12904         * gnus-async.el (gnus-async-prefetch-remove-group): do.
12905
12906         * gnus-art.el (article-hide-boring-headers)
12907         (article-translate-strings, article-display-face)
12908         (gnus-article-mime-match-handle-first)
12909         (gnus-article-highlight-headers)
12910         (gnus-article-add-buttons-to-head): do.
12911
12912 2004-09-27  Simon Josefsson  <jas@extundo.com>
12913
12914         * hashcash.el: New version, from
12915         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
12916         ../contrib/.
12917
12918 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12919
12920         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
12921
12922 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
12923
12924         * gnus-dup.el (gnus-dup-open): Use mapc.
12925         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
12926
12927         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
12928         Reported by Stefan Wiens <s.wi@gmx.net>.
12929
12930         * gnus.el (gnus-shutdown): Use dolist.
12931
12932         * gnus-undo.el (gnus-undo): Use mapc.
12933
12934         * nnrss.el (nnrss-generate-active): do.
12935
12936         * message.el (message-cite-original-without-signature)
12937         (message-cite-original): Use mapc.
12938         (message-do-actions, message-make-forward-subject): Use dolist.
12939
12940 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12941
12942         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
12943         deletion to remove entire duplicate line.  Fixes merged article
12944         number bug.
12945
12946 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12947
12948         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
12949         servers that are offline.  Avoids having gnus-agent-toggle-plugged
12950         first ask if you want to open a server and then, even when you
12951         responded with no, asking if you want to synchronize the server's
12952         flags.
12953         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
12954         multi-line expressions.
12955         (gnus-agent-synchronize-group-flags): New internal function.
12956         Updates marks in memory (in the info structure) AND in the
12957         backend.
12958
12959         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
12960
12961         * nnagent.el (nnagent-request-set-mark): Use
12962         gnus-agent-synchronize-group-flags, not backend's request-set-mark
12963         method, to ensure that synchronization updates marks in the
12964         backend and in the info (in memory) structure.
12965
12966 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12967
12968         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
12969         convention fully; don't miss the root article of a thread; make
12970         the X-Draft-From header with correct article numbers.
12971
12972 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
12973
12974         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
12975         unless plugged.  Disable the agent so that an open failure causes
12976         an error.
12977
12978         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
12979         Reverted 2004-09-21 change.  The backend must be opened while
12980         synchronizing flags even when the backend stores the flags
12981         locally.
12982
12983 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
12984
12985         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
12986         in `header' match.  Reported by Svend Tollak Munkejord.
12987
12988         * message.el (message-cite-original): Fix use of
12989         `message-cite-articles-with-x-no-archive'.
12990
12991 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12992
12993         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
12994         (gnus-window-to-buffer): Ditto.
12995
12996         * mml.el (mml-preview-buffer): New variable.
12997         (mml-preview): Manage window layout with gnus-buffer-configuration.
12998
12999         * gnus-msg.el (gnus-setup-message): Put article numbers into the
13000         X-Draft-From header even if those articles aren't quoted.
13001
13002 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
13003
13004         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
13005         (gnus-request-set-mark, gnus-request-update-mark): Use new
13006         g-s-t-u-l-m to decide to use backend even when unplugged.
13007
13008 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13009
13010         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
13011         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
13012
13013 2004-09-20  Simon Josefsson  <jas@extundo.com>
13014
13015         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13016         "utf-16-le".
13017
13018 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13019
13020         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13021
13022 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13023
13024         * uudecode.el (uudecode-use-external): Add :version.
13025
13026         * smime.el (smime-CA-file, smime-encrypt-cipher)
13027         (smime-dns-server): Add :version.
13028
13029         * smiley.el (gnus-smiley-file-types): Add :version.
13030
13031         * sha1.el (sha1-use-external): Add :version.
13032
13033         * pgg-def.el (pgg-query-keyserver): Add :version.
13034
13035         * nnmail.el (nnmail-fancy-expiry-targets)
13036         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13037         Add :version.
13038
13039         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13040         (nnimap-retrieve-groups-asynchronous): Add :version.
13041         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13042
13043         * mml.el (mml-content-disposition-parameters)
13044         (mml-insert-mime-headers-always): Add :version.
13045
13046         * mm-util.el (mm-coding-system-priorities): Add :version.
13047
13048         * mm-decode.el (mm-inline-text-html-with-images)
13049         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13050         (mm-verify-option): Add :version.
13051         (mm-text-html-renderer): Change :version.
13052
13053         * message.el (message-fcc-externalize-attachments)
13054         (message-required-headers, message-draft-headers)
13055         (message-subject-trailing-was-query)
13056         (message-subject-trailing-was-ask-regexp)
13057         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13058         (message-mark-insert-end, message-archive-header)
13059         (message-archive-note, message-cross-post-default)
13060         (message-cross-post-note, message-followup-to-note)
13061         (message-cross-post-note-function, message-use-mail-followup-to)
13062         (message-subscribed-address-functions)
13063         (message-subscribed-address-file, message-subscribed-addresses)
13064         (message-subscribed-regexps, message-allow-no-recipients)
13065         (message-yank-cited-prefix, message-signature-insert-empty-line)
13066         (message-hidden-headers, message-hierarchical-addresses)
13067         (message-mail-user-agent, message-use-idna)
13068         (message-valid-fqdn-regexp)
13069         (message-strip-special-text-properties, message-header-synonyms)
13070         (message-beginning-of-line, message-tab-body-function): Add :version.
13071         (message-insert-canlock, message-wide-reply-confirm-recipients):
13072         Change :version.
13073
13074         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13075         and :version.
13076         (mail-source-delete-old-incoming-confirm)
13077         (mail-source-movemail-program): Add :version.
13078
13079         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13080         (gnus-agent-cache, gnus-agent): Change :version.
13081
13082         * gnus-util.el (gnus-use-byte-compile): Change :version.
13083
13084         * gnus-sum.el (gnus-summary-make-false-root-always)
13085         (gnus-summary-default-high-score)
13086         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13087         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13088         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13089         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13090         (gnus-sum-thread-tree-single-indent)
13091         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13092         (gnus-sum-thread-tree-leaf-with-other)
13093         (gnus-sum-thread-tree-single-leaf): Add :version.
13094         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13095         (gnus-article-loose-mime): Change :version.
13096
13097         * gnus-start.el (gnus-backup-startup-file)
13098         (gnus-save-startup-file-via-temp-buffer): Add :version.
13099
13100         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13101         (gnus-server-offline-face): Add :version.
13102
13103         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13104
13105         * gnus-msg.el (gnus-gcc-externalize-attachments)
13106         (gnus-debug-files, gnus-debug-exclude-variables)
13107         (gnus-discouraged-post-methods): Change :version.
13108         (gnus-confirm-mail-reply-to-news)
13109         (gnus-confirm-treat-mail-like-news): Add :version.
13110
13111         * gnus-int.el (gnus-server-unopen-status): Add :version.
13112
13113         * gnus-group.el (gnus-group-jump-to-group-prompt)
13114         (gnus-large-ephemeral-newsgroup)
13115         (gnus-fetch-old-ephemeral-headers): Add :version.
13116
13117         * gnus-fun.el (gnus-x-face-directory)
13118         (gnus-convert-pbm-to-x-face-command)
13119         (gnus-convert-image-to-x-face-command)
13120         (gnus-convert-image-to-face-command): Add :version.
13121
13122         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13123
13124         * gnus-cite.el (gnus-cite-blank-line-after-header)
13125         (gnus-article-boring-faces): Add :version.
13126
13127         * gnus-art.el (gnus-buttonized-mime-types)
13128         (gnus-inhibit-mime-unbuttonizing)
13129         (gnus-treat-display-face)
13130         (gnus-treat-body-boundary): Change :version.
13131         (gnus-body-boundary-delimiter, gnus-picon-databases)
13132         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13133         (gnus-treat-date-english, gnus-treat-fold-headers)
13134         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13135         (gnus-treat-mail-picon, gnus-treat-wash-html)
13136         (gnus-article-encrypt-protocol)
13137         (gnus-use-idna, gnus-article-over-scroll)
13138         (gnus-mime-display-multipart-alternative-as-mixed)
13139         (gnus-mime-display-multipart-related-as-mixed)
13140         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13141         (gnus-ctan-url, gnus-button-ctan-handler)
13142         (gnus-button-handle-ctan-bogus-regexp)
13143         (gnus-button-ctan-directory-regexp)
13144         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13145         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13146         (gnus-button-man-level, gnus-button-emacs-level)
13147         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13148
13149         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13150         (gnus-agent-go-online): Change :version.
13151         (gnus-agent-expire-unagentized-dirs)
13152         (gnus-agent-auto-agentize-methods): Add :version.
13153
13154         * flow-fill.el (fill-flowed-display-column)
13155         (fill-flowed-encode-column): Add :version.
13156
13157         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13158         (gnus-outlook-deuglify-unwrap-max)
13159         (gnus-outlook-deuglify-cite-marks)
13160         (gnus-outlook-deuglify-unwrap-stop-chars)
13161         (gnus-outlook-deuglify-no-wrap-chars)
13162         (gnus-outlook-deuglify-attrib-cut-regexp)
13163         (gnus-outlook-deuglify-attrib-verb-regexp)
13164         (gnus-outlook-deuglify-attrib-end-regexp)
13165         (gnus-outlook-display-hook): Add :version.
13166
13167         * binhex.el (binhex-use-external): Add :version.
13168
13169 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13170
13171         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13172         and `invisible'.
13173
13174 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13175
13176         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13177         in gnus-registry-trim.
13178
13179 2004-09-13  Simon Josefsson  <jas@extundo.com>
13180
13181         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13182
13183         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13184
13185         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13186         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13187         <yamaoka@jpl.org>.
13188         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13189         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13190         <yamaoka@jpl.org>.
13191
13192         * sieve.el (sieve-manage-mode): Ditto.
13193
13194 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13195
13196         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13197
13198 2004-09-11  Simon Josefsson  <jas@extundo.com>
13199
13200         * dns-mode.el: Add.
13201
13202         * mm-view.el (mm-display-dns-inline): Add.
13203
13204         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13205         (mm-automatic-display): Ditto.
13206
13207         * mailcap.el (mailcap-mime-data): Add text/dns.
13208         (mailcap-mime-extensions): Map .soa to text/dns.
13209
13210 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13211
13212         * gnus-art.el (article-decode-mime-words, article-babel)
13213         (gnus-article-highlight-signature, gnus-article-add-buttons)
13214         (gnus-signature-toggle): Remove unnecessary bindings of
13215         `inhibit-read-only' inherited from v5.10 merge.
13216
13217 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13218
13219         * nntp.el (nntp): New customization group.
13220         (nntp-authinfo-file): Add customization group.
13221
13222         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13223
13224         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13225
13226         * gnus.el (to-address, to-list, subscribed)
13227         (large-newsgroup-initial): Ditto.
13228
13229         * flow-fill.el (fill-flowed-display-column)
13230         (fill-flowed-encode-column): Ditto.
13231
13232 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13233
13234         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13235         Use point-min rather than 1.
13236         (message-send-mail): Use buffer-size rather than point-max.
13237
13238         * gnus-sum.el (gnus-summary-search-article-forward):
13239         Signal a specific `search-failed' rather than a generic `error'.
13240
13241         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13242         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13243         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13244
13245 2004-09-10  Simon Josefsson  <jas@extundo.com>
13246
13247         * nndb.el (require): Remove tcp and duplicate cl.
13248
13249 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13250
13251         * gnus-agent.el (directory-files-and-attributes): Move forward.
13252
13253 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13254
13255         * gnus-agent.el (directory-files-and-attributes): Optionally
13256         defined to support XEmacs.
13257
13258 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13259
13260         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13261         to avoid run-time CL dependencies.
13262         (gnus-agent-unfetch-articles): New function.
13263         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13264         article numbers even when local .overview file is missing.
13265         (gnus-agent-read-article-number): New function.  Only accepts
13266         27-bit article numbers.
13267         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13268         gnus-agent-read-article-number.
13269         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13270         from backend while recognizing that article numbers in .overview
13271         must be valid.
13272         (gnus-agent-update-files-total-fetched-for): Use
13273         directory-files-and-attributes to improve performance.
13274         * gnus-int.el (gnus-request-move-article): Use
13275         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13276         improve performance.
13277
13278         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13279         some users confused by references to .newsrc when they only have a
13280         .newsrc.eld file.
13281         (gnus-convert-mark-converter-prompt)
13282         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13283         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13284         New function.  Used internally to only display 'gnus converting
13285         files' message when actually necessary.
13286
13287         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13288         methods now autoloaded.
13289
13290 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13291
13292         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13293         identifiers.
13294
13295 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13296
13297         * gnus-picon.el: Fix indentation and closing parenthesis.
13298
13299 2004-09-01  Simon Josefsson  <jas@extundo.com>
13300
13301         * message.el (message-canlock-generate): Require sha1, not
13302         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13303         to require within a function.  Sadly, if sha1.el isn't loaded, the
13304         let binding in m-c-g will hide the defcustom definition, which is
13305         bad.)
13306
13307         * canlock.el: Require sha1, not sha1-el.
13308
13309         * message.el: Don't autoload sha1 (there is a autoload cookie in
13310         sha1.el).
13311
13312         * sha1-el.el: Renamed to sha1.el.
13313
13314 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13315
13316         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13317
13318 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13319
13320         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13321
13322 2004-08-30  Kim F. Storm  <storm@cua.dk>
13323
13324         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13325
13326         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13327         Add :group 'nnimap.
13328
13329 2004-08-30  Andreas Schwab  <schwab@suse.de>
13330
13331         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13332         ?* and ?\;.
13333
13334         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13335         and ?\' to symbol instead of whitespace.
13336
13337 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13338
13339         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13340
13341         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13342         instead of re-search-forward.
13343
13344         * gnus-uu.el (gnus-uu-save-article): Ditto.
13345         (gnus-uu-post-encode-uuencode): Ditto.
13346
13347         * html2text.el (html2text-clean-list-items): Ditto.
13348         (html2text-clean-dtdd): Ditto.
13349         (html2text-format-tags): Ditto.
13350
13351         * message.el (message-send-mail-with-sendmail): Fix regexp.
13352         (message-fill-field-general): Use search-forward instead of
13353         re-search-forward.
13354         (unbold-region): Ditto.
13355
13356         * nnrss.el (nnrss-request-article): Ditto.
13357
13358         * nnslashdot.el (nnslashdot-request-article): Ditto.
13359
13360         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13361
13362         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13363         "Unrecognized menu descriptor" error in XEmacs.
13364
13365 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13366
13367         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13368         parent article of a sparse article in the thread hashtb.
13369
13370 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13371
13372         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13373         (nnmail-expand-newtext): Lowercase expanded entries if
13374         nnmail-split-lowercase-expanded is non-nil.
13375
13376 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13377
13378         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13379
13380         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13381         of gnus-tmp-news-method into string under XEmacs.  It will be
13382         passed to gnus-correct-length which takes only a string argument.
13383
13384 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13385
13386         * gnus-util.el (gnus-bind-print-variables): New macro.
13387         (gnus-prin1): Use it.
13388         (gnus-prin1-to-string): Use it.
13389         (gnus-pp): New function.
13390         (gnus-pp-to-string): New function.
13391
13392         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13393         Replace pp-to-string with gnus-pp-to-string.
13394         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13395         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13396         * gnus-msg.el (gnus-debug): Ditto.
13397         * gnus-score.el (gnus-score-save): Ditto.
13398         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13399         gnus-pp-to-string.
13400         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13401         with gnus-pp.
13402         * score-mode.el (gnus-score-pretty-print): Ditto.
13403         * webmail.el (webmail-debug): Ditto.
13404
13405 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13406
13407         * gnus-art.el (article-display-face, article-display-x-face):
13408         Use buffer-read-only.
13409
13410 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13411
13412         * gnus-art.el (article-hide-list-identifiers):
13413         Bind inhibit-read-only as t.
13414
13415 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13416
13417         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13418
13419 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13420
13421         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13422         (gnus-narrow-to-page): Don't assume point-min == 1.
13423         (gnus-article-edit-mode): Derive from message-mode.
13424
13425         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13426         point-min == 1.
13427
13428         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13429         Disable incorrect use of `assert'.
13430
13431         * message.el (message-mode): Set comment-start-skip.
13432
13433
13434 2004-08-22  Sam Steingold  <sds@gnu.org>
13435
13436         * pop3.el (pop3-leave-mail-on-server): New user variable.
13437         (pop3-movemail): Delete mail only when it is nil.
13438
13439 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13440
13441         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13442
13443         * mml.el (mml-preview): Use `pop-to-buffer'.
13444
13445         * message.el (message-goto-mail-followup-to): Insert after "To".
13446         (message-carefully-insert-headers): Add comment.
13447
13448         * gnus.el: Remove unused variable `gnus-article-check-size'.
13449
13450         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13451
13452         * gnus-art.el (gnus-button-alist): Improve
13453         `gnus-button-handle-library' entry.
13454
13455 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13456
13457         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13458         downcase, since XEmacs capitalizes error messages differently.
13459
13460 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13461
13462         * nntp.el: Add (require 'gnus) due to reference to
13463         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13464
13465 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13466
13467         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13468         `mm-fill-flowed'.
13469
13470         * mm-decode.el (mm-dissect-singlepart): Check it.
13471
13472 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13473
13474         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13475         'imap' for netrc parsing.
13476
13477 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13478
13479         * mailcap.el (mailcap-mime-data): Mark as risky.
13480
13481 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13482
13483         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13484         may be included in the encoded word.
13485         (rfc2047-encode): Don't append a space if the encoded word
13486         includes close parenthesis.
13487
13488 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13489
13490         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13491         of text within parentheses.
13492
13493 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13494
13495         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13496         (gnus-encrypt-write-file-contents): Make the password key the file
13497         name PLUS the cipher, not just the cipher.  Also remove failed
13498         passwords from the cache.
13499
13500 2004-08-06  Simon Josefsson  <jas@extundo.com>
13501
13502         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13503         fix.
13504
13505 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13506
13507         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13508         LWSP.
13509
13510 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13511
13512         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13513         to append in-reply-to: data to the references: header.
13514
13515         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13516         (netrc-parse): Use gnus-encrypt.el functions.
13517
13518         * gnus-encrypt.el: Add new file for encryption support; currently
13519         does only a few GPG ciphers and an internal XOR cipher.
13520
13521         * password.el: Add comments on using password-read-and-add.
13522         (password-read-and-add): Add function to read and add the
13523         password to the cache at once.
13524
13525 2004-07-28  Simon Josefsson  <jas@extundo.com>
13526
13527         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13528         parameter (but don't use it, for now).
13529
13530         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13531         instead of hard coding to nil.
13532
13533 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13534
13535         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13536         as mm-inline-image-xemacs does.
13537
13538 2004-07-26  Simon Josefsson  <jas@extundo.com>
13539
13540         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13541         Revert part of 2004-07-17 change below.
13542
13543 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13544
13545         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13546         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13547
13548 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13549
13550         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13551         quotes that actually start with ">" at the beginning of the
13552         lines.
13553
13554 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13555
13556         * rfc2047.el (rfc2047-encode-region): Fix last change.
13557         (rfc2047-encode-parameter): Remove useless concat.
13558
13559 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13560
13561         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13562         encode special characters; fix some kind of misconfigured headers;
13563         signal a real error if debug-on-quit or debug-on-error is non-nil.
13564         (rfc2047-encode-max-chars): New variable.
13565         (rfc2047-encode-1): Use it.
13566         (rfc2047-encode-parameter): New function.
13567
13568         * mml.el (mml-insert-parameter): Remove an excessive space.
13569
13570 2004-07-17  Simon Josefsson  <jas@extundo.com>
13571
13572         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13573         Kai Grossjohann <kai@emptydomain.de>.
13574         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13575         (gnus-group-make-menu-bar): Ditto.
13576
13577         * gnus-util.el (gnus-group-server): Add.
13578
13579 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13580
13581         * message.el (message-clone-locals): Clone sendmail and smtp
13582         variables.
13583
13584 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13585
13586         * rfc2047.el (rfc2047-encode-region): Fix last change.
13587
13588 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13589
13590         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13591         characters as non-special.
13592
13593 2004-07-09  Simon Josefsson  <jas@extundo.com>
13594
13595         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13596         Users will lose all flag changes made while unplugged with
13597         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13598         good default.  See numerous reports on ding mailing list.
13599
13600 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13601
13602         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13603         add generate-head-function and generate-article-function to the
13604         rfc822-forward entry.
13605         (nndoc-rfc822-forward-generate-article): New function.
13606         (nndoc-rfc822-forward-generate-head): New function.
13607
13608         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13609
13610 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13611
13612         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13613         respect display group parameter and gnus-summary-expunge-below.
13614         (gnus-articles-to-read): Remove unused reference to display group
13615         parameter.
13616
13617 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13618
13619         * nnheader.el (nnheader-uniquify-message-id): New experimental
13620         variable.
13621         (nnheader-nov-read-message-id): Use it.
13622
13623         * spam-report.el (spam-report-gmane): Add interactive.
13624
13625 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13626
13627         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13628         qp-or-base64 for the application/* types.
13629
13630 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13631
13632         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13633
13634 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13635
13636         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13637         trim value.
13638
13639 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13640
13641         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13642         New macro and function.
13643         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13644
13645 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13646
13647         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13648         after-load-alist.
13649
13650 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13651
13652         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13653         update info that isn't there.
13654
13655 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13656
13657         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13658         entry.
13659
13660 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13661
13662         * mm-view.el (mm-inline-render-with-function): Use multibyte
13663         buffer; decode html source by charset.
13664
13665         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13666
13667         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13668         Mule-UCS is loaded under XEmacs.
13669         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13670
13671 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13672
13673         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13674
13675 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13676
13677         * mm-util.el (mm-coding-system-p): Return a coding-system.
13678         (mm-mime-mule-charset-alist): Use shift_jis instead of
13679         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13680         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13681         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13682         instead of japanese-shift-jis and iso-latin-1 respectively in
13683         order to share the default value with both Emacs and XEmacs-mule.
13684         (mm-mule-charset-to-mime-charset): Make
13685         mm-coding-system-priorities effective.
13686         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13687         while predicating of candidates upon the priorities.
13688
13689 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13690
13691         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13692         gnus-uu-invert-processable.
13693
13694         * gnus.el: Autoload gnus-uu-invert-processable.
13695
13696 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13697
13698         * mm-util.el (mm-with-multibyte-buffer): New macro.
13699
13700         * rfc2047.el (rfc2047-encode-string): Use it.
13701         (rfc2047-encode-region): Move point to the end of the region after
13702         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13703
13704 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13705
13706         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13707         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13708
13709 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13710
13711         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13712         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13713         Karl Chen <quarl@nospam.quarl.org>.
13714
13715 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13716
13717         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13718         invalid addresses.
13719
13720 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13721
13722         * spam.el: Change section markers, revise TODO list.
13723         (spam-backends): Make new master list of all installed backends.
13724         (spam-summary-exit-behavior): Add new variable to determine how
13725         messages moves are done at summary exit.
13726         (spam-move-spam-nonspam-groups-only)
13727         (spam-process-ham-in-nonham-groups)
13728         (spam-process-ham-in-spam-groups): Remove variables, the
13729         spam-summary-exit-behavior variable should be used to manage this
13730         behavior.
13731         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13732         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13733         and spam-old-spam-articles.
13734         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13735         Add empty variables, placeholders for the backends they represent.
13736         (spam-set-difference): Move, unchanged.
13737         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13738         unless the user has a processor variable.
13739         (spam-classifications, spam-classification-valid-p)
13740         (spam-backend-properties, spam-backend-property-valid-p)
13741         (spam-backend-function-type-valid-p)
13742         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13743         (spam-report-articles-gmane, spam-report-articles-resend):
13744         Remove functions, they are not needed.
13745         (spam-install-backend-super, spam-backend-list)
13746         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13747         (spam-backend-function, spam-backend-ham-registration-function)
13748         (spam-backend-spam-registration-function)
13749         (spam-backend-ham-unregistration-function)
13750         (spam-backend-spam-unregistration-function)
13751         (spam-backend-statistical-p, spam-backend-mover-p)
13752         (spam-install-backend-alias, spam-install-checkonly-backend)
13753         (spam-install-mover-backend, spam-install-nocheck-backend)
13754         (spam-install-backend, spam-install-statistical-backend)
13755         (spam-install-statistical-checkonly-backend): Add backend installation
13756         support.
13757         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13758         (spam-group-processor-p): Use the new backend code and respect the
13759         summary exit behavior.
13760         (spam-mark-spam-as-expired-and-move-routine): Remove.
13761         (spam-summary-prepare): Change to use the new spam-old-articles
13762         variable.
13763         (spam-copy-or-move-routine, spam-copy-spam-routine)
13764         (spam-move-spam-routine, spam-copy-ham-routine)
13765         (spam-move-ham-routine): Add code to copy/move ham or spam.
13766         (spam-fetch-field-fast): Improve doc and code, plus allow the
13767         'number request.
13768         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13769         variables.
13770         (spam-split, spam-find-spam): Use the new backend code.
13771         (spam-registration-functions): Remove variable.
13772         (spam-unregister-routine): Add convenience wrapper.
13773         (spam-log-undo-registration, spam-register-routine)
13774         (spam-log-processing-to-registry)
13775         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13776         where possible.
13777         (spam-check-gmane-xref, spam-check-regex-headers)
13778         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13779         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13780         (spam-check-bogofilter-headers, spam-check-spamoracle)
13781         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13782         (spam-check-crm114-headers): Use the spam-split-group that
13783         spam-split prepares, no need to determine it every time.
13784
13785         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13786         to the nnheader-parse-naked-head call.
13787
13788         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13789
13790         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13791         the nnheader-nov-read-message-id call.
13792
13793 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13794
13795         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13796         gnus-activate-group twice.  Suggested by Markus Peter
13797         <warp@spin.de>.
13798
13799 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13800
13801         * gnus-art.el (gnus-article-time-format): Exchange the order of
13802         day and month in the default value; fix customization type.
13803         (article-date-ut): Use add-text-properties.
13804         (article-make-date-line): Use message-make-date instead of
13805         current-time-string.
13806
13807         * message.el (message-fetch-field): Don't use set-text-properties.
13808         (message-make-date): Simplify.
13809
13810         * messagexmas.el (message-xmas-make-date): New function.
13811         (message-xmas-redefine): Defalias message-make-date to it.
13812
13813 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13814
13815         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13816         (rfc2047-encode-region): Treat text within parentheses as special;
13817         show the original text when error has occurred.
13818
13819         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13820         already-computed method to gnus-activate-group.
13821
13822         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13823         same select-methods identical Lisp objects.
13824
13825         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13826         object when modifying the info.
13827
13828 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13829
13830         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13831         gnus-opened-servers since it has never been opened with the new
13832         configuration yet.
13833
13834 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13835
13836         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13837         arg to nnheader-generate-fake-message-id.
13838
13839 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13840
13841         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13842         number and build a fake message ID localized to a group and
13843         article number (so it's repeatable from that point on).
13844         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13845         ID format.
13846
13847         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13848         nnheader-generate-fake-message-id with the article number.
13849
13850 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13851
13852         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13853         end-of-buffer.
13854
13855 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13856
13857         * message.el (message-ignored-supersedes-headers): Add Approved.
13858
13859 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13860
13861         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13862         goto-char.
13863         (rfc2047-encode): Fold the line before encoding.
13864
13865 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13866
13867         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13868         folding -- not all headers can be folded, and this should be done
13869         by the message composition mode.  Probably.  I think.
13870
13871 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13872
13873         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13874         fast.
13875
13876         * gnus-ems.el (gnus-remove-image): Don't use
13877         message-text-with-property; remove only the image found first.
13878
13879         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
13880         found first.
13881
13882 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
13883
13884         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
13885
13886 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13887
13888         * message.el (message-text-with-property): Make it fast and accept
13889         optional arguments.
13890         (message-strip-forbidden-properties): Use it.
13891         (message-fix-before-sending): Follow the m-t-w-p change.
13892
13893         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
13894
13895 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13896
13897         * gnus-art.el (article-hide-headers): Don't change the buffer
13898         mistakenly when performing mml-preview even if
13899         gnus-single-article-buffer is nil.
13900
13901 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
13902
13903         * message.el (message-expand-name-databases): New user option.
13904         (message-expand-name): Use it.
13905
13906 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
13907
13908         * spam.el (spam-report-articles-resend)
13909         (spam-report-resend-register-routine): Allow ham reporting.
13910         (spam-report-resend-register-ham-routine): Add wrapper.
13911         (spam-registration-functions): Add ham resending functions.
13912         (spam-list-of-processors): Add ham resend processor.
13913
13914         * gnus.el (ham-resend-to): Add new group parameter.
13915         (spam-process): Add ham resend option.
13916
13917         * spam-report.el (spam-report-resend): Allow reporting ham.
13918         (spam-report-resend-ham): Add wrapper.
13919
13920 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13921
13922         * message.el (message-cite-articles-with-x-no-archive): New
13923         variable.
13924         (message-cite-original): Use it.
13925
13926 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13927
13928         * message.el (message-cite-original): Respect X-No-Archive.
13929
13930 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13931
13932         * gnus-art.el (article-hide-headers): Refer to the values for
13933         gnus-ignored-headers and gnus-visible-headers in the summary
13934         buffer since a user may have set them as group parameters.
13935
13936 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
13937
13938         * assistant.el (assistant-node-name): Add convenience function.
13939         (assistant-render-text, assistant-render-node): Add error handling,
13940         plus handle multiple next nodes.
13941         (assistant-find-next-node): Comment out for now.
13942         (assistant-find-next-nodes): Add function, returns list of next
13943         nodes.
13944
13945 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
13946
13947         * mail-source.el (mail-source-directory): Fix doc-string.
13948
13949 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
13950
13951         * assistant.el (assistant-render-text, assistant-eval): Add :set
13952         widget type, which is different because it takes and returns a
13953         list.  Much hilarity ensues.
13954
13955 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
13956
13957         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
13958
13959         * gnus-group.el (gnus-group-get-new-news-this-group): Added
13960         doc-string.
13961
13962         * gnus-start.el (gnus-activate-group): Added doc-string.
13963
13964 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13965
13966         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
13967
13968 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
13969
13970         * assistant.el (assistant-render-text): Try to add a :set
13971         widget, more to come.
13972
13973         * spam.el (spam-group-spam-contents-p): Handle empty groupname
13974         strings.
13975         (spam-report-articles-resend)
13976         (spam-register-routine): Do registration iff any articles warrant
13977         it.
13978         (spam-summary-prepare-exit): Change log message for nil group
13979         destinations.
13980
13981 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
13982
13983         * spam.el (spam-report-resend-register-routine): Allow
13984         spam-report-resend-to to be a group parameter or a global value.
13985
13986 2004-05-26  Simon Josefsson  <jas@extundo.com>
13987
13988         * starttls.el: Merge with my GNUTLS based starttls.el.
13989         (starttls-gnutls-program, starttls-use-gnutls)
13990         (starttls-extra-arguments, starttls-process-connection-type)
13991         (starttls-connect, starttls-failure, starttls-success): New
13992         variables.
13993         (starttls-program, starttls-extra-args): Doc fix.
13994         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
13995         functions.
13996         (starttls-negotiate, starttls-open-stream): Check
13997         `starttls-use-gnutls' and pass on to corresponding *-gnutls
13998         function if it is set.
13999
14000 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14001
14002         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
14003         structured fields.
14004
14005 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14006
14007         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
14008
14009 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
14010
14011         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
14012         variable.
14013         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14014         assigning the spam-mark to new messages.
14015
14016 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14017
14018         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14019
14020 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14021
14022         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14023
14024         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14025         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14026         default.
14027
14028 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14029
14030         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14031         correct data.
14032
14033 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14034
14035         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14036         (spam-group-processor-p): Fix function.
14037         (spam-group-processor-multiple-p)
14038         (spam-group-spam-processor-report-gmane-p)
14039         (spam-group-spam-processor-report-resend-p)
14040         (spam-group-spam-processor-bogofilter-p)
14041         (spam-group-spam-processor-blacklist-p)
14042         (spam-group-spam-processor-ifile-p)
14043         (spam-group-ham-processor-ifile-p)
14044         (spam-group-spam-processor-spamoracle-p)
14045         (spam-group-spam-processor-crm114-p)
14046         (spam-group-ham-processor-bogofilter-p)
14047         (spam-group-spam-processor-stat-p)
14048         (spam-group-ham-processor-stat-p)
14049         (spam-group-ham-processor-whitelist-p)
14050         (spam-group-ham-processor-BBDB-p)
14051         (spam-group-ham-processor-spamoracle-p)
14052         (spam-group-ham-processor-copy-p): Remove functions with some
14053         prejudice against unneeded code.
14054         (spam-report-articles-resend)
14055         (spam-report-resend-register-routine): Allow the group/topic
14056         spam-resend-to value to override spam-report-resend-to.
14057         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14058         properly now.
14059
14060         * gnus.el (spam-resend-to): Add group/topic parameter.
14061         (spam-process): Move the OBSOLETE processors to the end of the
14062         choices.
14063
14064 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14065
14066         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14067         with resend-to set to nil, and then ask the user if necessary.
14068         (spam-report-resend): spam-report-resend takes a list of articles, not
14069         separate article numbers.
14070
14071 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14072
14073         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14074         addition to emacs-w3m.
14075
14076 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14077
14078         * assistant.el (assistant-authinfo-data): New function.
14079         (assistant-eval): Eval for entire assistant.
14080
14081         * netrc.el (netrc-services-file): New variable.
14082         (netrc-parse-services): New function.
14083         (netrc-find-service-name): New function.
14084         (netrc-find-service-number): New function.
14085         (netrc-port-equal): New function.
14086         (netrc-machine): Use it.
14087
14088         * nnimap.el (nnimap-open-connection): Use netrc.
14089
14090         * gnus-util.el (gnus-netrc-get): Remove aliases.
14091
14092         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14093
14094         * assistant.el (wid-edit): Fix compilation.
14095
14096         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14097
14098 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14099
14100         * gnus-util.el (gnus-set-file-modes): New function.  (small
14101         patch).
14102
14103 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14104
14105         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14106
14107         * assistant.el (assistant-render-node): Fix up rendering and
14108         read-only text.
14109         (assistant-render-node): Reset.
14110         (assistant-make-read-only): Not sticky.
14111
14112 2004-05-20  Danny Siu  <dsiu@adobe.com>
14113
14114         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14115         centered even when gnus-auto-center-summary is t.
14116
14117 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14118
14119         * dns.el (dns-get-txt-answer): New function.
14120         (dns-read-txt): Ditto.
14121         (query-dns): Use it.
14122
14123 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14124
14125         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14126         active for foreign groups even if the group level is higher than
14127         the specified value.
14128
14129 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14130
14131         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14132         non-active groups.
14133
14134         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14135
14136 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14137
14138         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14139
14140 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14141
14142         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14143         (spam-crm114-header, spam-crm114-spam-switch)
14144         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14145         (spam-crm114-positive-spam-header)
14146         (spam-crm114-database-directory, spam-list-of-processors)
14147         (spam-group-spam-processor-crm114-p)
14148         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14149         (spam-generic-score, spam-list-of-checks)
14150         (spam-list-of-statistical-checks, spam-registration-functions)
14151         (spam-check-crm114-headers, spam-crm114-score)
14152         (spam-check-crm114, spam-crm114-register-with-crm114)
14153         (spam-crm114-register-spam-routine)
14154         (spam-crm114-unregister-spam-routine)
14155         (spam-crm114-register-ham-routine)
14156         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14157         asjo@koldfront.dk (Adam Sjøgren).
14158
14159         * gnus.el: Add spam-use-crm114.
14160
14161         * spam.el (spam-list-of-processors, spam-registration-functions):
14162         Add spam-use-resend.
14163         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14164         (spam-report-articles-gmane): Add doc fix.
14165         (spam-report-articles-resend, spam-report-resend-register-routine):
14166         Add wrappers around spam-report-resend-to.
14167
14168         * spam-report.el (spam-report-resend-to, spam-report-resend):
14169         Add support for resending spam.
14170         (spam-report-gmane): Fix line length >80.
14171
14172         * gnus.el (spam-process): Add spam-use-resend.
14173
14174 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14175
14176         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14177         number of processed spam messages.
14178         (spam-ham-copy-or-move-routine): Return the number of processed
14179         ham messages.
14180         (spam-summary-prepare-exit): Use the above values to decide
14181         whether status messages shouled be displayed.
14182
14183 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14184
14185         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14186         `rfc2047-encoding-function-alist' in order to avoid conflicting
14187         with the old version.
14188         (rfc2047-encode-region): Concatenate words containing non-ASCII
14189         characters in structured fields; don't encode space-delimited
14190         ASCII words even in unstructured fields; don't break words at
14191         char-category boundaries.
14192         (rfc2047-encode-1): New function.
14193         (rfc2047-encode): Use it; encode text so that it occupies the
14194         maximum width within 76-column; work correctly on Q encoding for
14195         iso-2022-* charsets.
14196         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14197         sure not to break a line just after the header name.
14198         (rfc2047-b-encode-region): Removed.
14199         (rfc2047-b-encode-string): New function.
14200         (rfc2047-q-encode-region): Removed.
14201         (rfc2047-q-encode-string): New function.
14202
14203         * mm-util.el (mm-replace-in-string): New function.
14204
14205 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14206
14207         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14208         get it right.
14209         (gnus-inews-make-draft): Really.
14210
14211 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14212
14213         * nnmh.el (nnmh-request-list-1): Don't check the link count
14214         before descending.  (small patch)
14215
14216 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14217
14218         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14219         stuff.
14220
14221         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14222         on real group name.
14223
14224         * gnus-art.el (gnus-signature-limit): Doc fix.
14225
14226         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14227
14228         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14229
14230 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14231
14232         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14233         isn't a string.
14234
14235 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14236
14237         * gnus-draft.el (gnus-draft-send): Bind
14238         rfc2047-encode-encoded-words.
14239
14240         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14241         (rfc2047-encodable-p): Say that =? needs encoding.
14242         (rfc2047-encode-encoded-words): New variable.
14243
14244         * gnus-group.el (gnus-group-select-group): Doc fix.
14245
14246         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14247
14248         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14249         to nil.
14250
14251         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14252
14253         * nnheader.el (nnheader-get-lines-and-char): New function.
14254
14255 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14256
14257         * gnus-msg.el (gnus-summary-followup-with-original): Document
14258         yanking of region when active.
14259
14260 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14261
14262         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14263         groups if the group level is higher than the specified value.
14264
14265 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14266
14267         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14268         (gnus-group-jump-to-group): Added prefix argument using
14269         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14270         non-active group.
14271
14272         * compface.el (uncompface): Be verbose when changing
14273         `uncompface-use-external'.
14274
14275         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14276         handle manual section.
14277
14278 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14279
14280         * gnus-art.el (gnus-button-alist): Revert previous change.
14281
14282 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14283
14284         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14285
14286 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14287
14288         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14289         whether backend can accept message.
14290
14291         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14292
14293 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14294
14295         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14296         Avoid creating directory when nntp-marks-is-evil is true.
14297         Reported by Reiner Steib.
14298
14299 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14300
14301         * gnus-picon.el (gnus-picon-style): New variable.
14302         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14303         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14304         Jesper Harder <harder@ifa.au.dk>.
14305
14306 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14307
14308         * message.el (message-fill-field): Return point.
14309         (message-generate-headers): Go to end of field.
14310
14311         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14312         stuff for non-living groups.
14313
14314 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14315
14316         * gnus-art.el (gnus-article-followup-with-original)
14317         (gnus-article-reply-with-original): gnus-mark-active-p ->
14318         gnus-region-active-p.
14319
14320 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14321
14322         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14323         only when there is spam or ham to be processed.
14324
14325 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14326
14327         * mail-source.el (mail-source-delete-crash-box): Refactor.
14328         (mail-source-fetch): Use it.
14329         (mail-source-fetch-file): Ditto.
14330         (mail-source-fetch-directory): Run postscript in loop.
14331         (mail-source-fetch-pop): Delete.
14332         (mail-source-fetch-maildir): Ditto.
14333         (mail-source-fetch-imap): Ditto.
14334
14335         * imap.el (imap-authenticators): Comment out sasl.
14336
14337         * message.el (message-skip-to-next-address): New function.
14338         (message-fill-header-address): Refactor.
14339         (message-fill-address): Use it.
14340         (message-delete-address): Use it.
14341         (message-fill-header-general): Refactor.
14342         (message-fill-field-address): Rename.
14343         (message-narrow-to-field): Find the start of the header.
14344         (message-header-format-alist): Don't pre-fill.
14345         (message-fill-header): Removed.
14346         (message-insert-header): New function.
14347         (message-shorten-references): Use it.
14348
14349         * rfc2047.el (rfc2047-field-value): Strip props.
14350
14351         * mail-parse.el (mail-header-make-address): New alias.
14352
14353         * ietf-drums.el (ietf-drums-make-address): New function.
14354
14355         * imap.el: Add compiler directives.
14356
14357         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14358
14359         * gnus-art.el (article-decode-idna-rhs): Don't use
14360         message-idna-inside-rhs-p.
14361
14362 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14363
14364         * message.el (message-idna-inside-rhs-p): Removed.
14365         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14366
14367         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14368         false positives.
14369
14370 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14371
14372         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14373
14374 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14375
14376         * nneething.el (nneething-file-name): Don't create spurious
14377         files.
14378
14379         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14380         (gnus-inews-do-gcc): Remove sleep.
14381
14382         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14383         part under point.
14384
14385         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14386         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14387
14388 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14389
14390         * spam.el (spam-summary-prepare-exit): Fixed (length).
14391
14392 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14393
14394         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14395         as expired without moving it" message when there are spam
14396         messages left.
14397
14398 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14399
14400         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14401         header is not nil.
14402
14403 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14404
14405         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14406         nntp-possibly-create-directory, not nntp-possibly-change-group.
14407         (nntp-marks-changed-p): New arg SERVER.
14408         (nntp-request-update-info): Adjust caller.
14409
14410 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14411
14412         * nntp.el (nntp-save-marks): Pass missing arg.
14413
14414 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14415
14416         * nntp.el: Support marks.
14417         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14418         (nntp-marks-modtime, nntp-marks-directory): New variables.
14419         (nntp-request-set-mark, nntp-request-update-info)
14420         (nntp-possibly-create-directory, nntp-marks-changed-p)
14421         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14422         functions.
14423
14424 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14425
14426         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14427         (gnus-xmas-redefine): Rename.
14428
14429         * gnus-score.el (gnus-score-insert-help): Use
14430         gnus-select-lowest-window.
14431
14432         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14433         appt-select-lowest-window and rename to gnus-select-lowest-window.
14434
14435         * gnus.el: do.
14436
14437 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14438
14439         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14440         encodings of MIME-encoded words, in order to improve
14441         interoperability with several broken MUAs.
14442
14443 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14444
14445         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14446         tags, only when charsets are not specified in headers.
14447         (mm-inline-text-html-render-with-w3m): Ditto.
14448
14449         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14450         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14451
14452 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14453
14454         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14455         instead of MIME-decoded from fields when checking
14456         `gnus-article-address-banner-alist'.
14457
14458 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14459
14460         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14461         description rather than subject.
14462
14463 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14464
14465         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14466
14467 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14468
14469         * gnus.el (gnus-version-number): Bump.
14470
14471 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14472
14473         * gnus.el: No Gnus v0.2 is released.
14474
14475 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14476
14477         * gnus-agent.el (gnus-agent-read-agentview): Inline
14478         gnus-uncompress-range.
14479
14480 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14481
14482         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14483         `exec-installed-p'.
14484
14485 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14486
14487         * gnus.el (spam-process, spam-autodetect-methods): Add
14488         bsfilter and bsfilter-headers.
14489
14490         * spam.el (spam-bsfilter): New customize group.
14491         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14492         (spam-bsfilter-header, spam-bsfilter-probability-header)
14493         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14494         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14495         (spam-bsfilter-database-directory): New options.
14496         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14497         (spam-list-of-statistical-checks, spam-registration-functions):
14498         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14499         (spam-bsfilter-score): New command.
14500         (spam-check-bsfilter-headers, spam-check-bsfilter)
14501         (spam-bsfilter-register-with-bsfilter)
14502         (spam-bsfilter-register-spam-routine)
14503         (spam-bsfilter-unregister-spam-routine)
14504         (spam-bsfilter-register-ham-routine)
14505         (spam-bsfilter-unregister-ham-routine): New functions.
14506         (spam-generic-score): Support bsfilter; Accept an optional argument
14507         to recalcurate spam score even if scoring header has already been
14508         added.
14509         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14510         optional argument to recalcurate spam score even if scoring header
14511         has already been added.
14512
14513 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14514
14515         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14516         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14517         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14518         link is missing.
14519
14520 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14521
14522         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14523         (html2text-get-attr): Rewrite.
14524
14525         * message.el (message-setup-1): Remove redundant put-text-property
14526         on mail-header-separator.
14527
14528 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14529
14530         * gnus-registry.el (gnus-registry-cache-whitespace)
14531         (gnus-registry-action, gnus-registry-spool-action)
14532         (gnus-registry-split-fancy-with-parent): Change message levels
14533         from 5 to 3 or 7, as needed.
14534
14535         * spam.el (spam-summary-prepare-exit)
14536         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14537         (spam-split, spam-find-spam, spam-log-undo-registration)
14538         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14539         level from 5 to 6.
14540
14541 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14542
14543         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14544         2004-03-04 change).
14545
14546 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14547
14548         * sieve-manage.el (sieve-manage-open):
14549         * nnweb.el (nnweb-insert-html):
14550         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14551         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14552         * nnspool.el (nnspool-request-group):
14553         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14554         * nnml.el (nnml-request-update-info):
14555         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14556         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14557         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14558         (nnimap-request-set-mark):
14559         * nnfolder.el (nnfolder-request-update-info):
14560         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14561         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14562         * gnus-uu.el (gnus-uu-find-articles-matching):
14563         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14564         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14565         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14566         * gnus-nocem.el (gnus-nocem-scan-groups):
14567         * gnus-int.el (gnus-start-news-server):
14568         * gnus-group.el (gnus-group-make-kiboze-group)
14569         (gnus-group-browse-foreign-server):
14570         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14571         Use mapc when appropriate.
14572
14573 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14574
14575         FIXME: Make separate entries for each person.
14576
14577         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14578         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14579         <shields@msrl.com>:
14580
14581         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14582         may need for spam sorting and scoring.
14583         (spam-user-format-function-S): Add user format function suitable for
14584         general use.
14585         (spam-article-sort-by-spam-status): Add sorting function for summary
14586         sorting.
14587         (spam-extra-header-to-number): Add function to get a score from a
14588         header.
14589         (spam-summary-score): Add function to get a numeric score from the
14590         headers.
14591         (spam-generic-score): Fix function doc, was in wrong place.
14592         (spam-initialize): Take symbols when it's run, and install the
14593         extra headers that spam-necessary-extra-headers thinks we need.
14594
14595 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14596
14597         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14598         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14599
14600 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14601
14602         * gnus-sum.el (gnus-set-global-variables)
14603         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14604         (gnus-article-get-xrefs, gnus-summary-best-group)
14605         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14606         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14607         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14608         Use with-current-buffer.
14609
14610 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14611
14612         * spam.el (spam-summary-prepare-exit): Simplify logic.
14613         (spam-fetch-article-header): Read the article header if it's not
14614         available.
14615         (spam-list-articles): Simplify logic.
14616         (spam-filelist-register-routine): Fix bug with unregister-list.
14617
14618         * gnus-registry.el: Fix comments at beginning.
14619
14620 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14621
14622         * message.el (message-cater-to-broken-inn): Remove.
14623         (message-shorten-references): Make sure the total folded length of
14624         References is shorter than 998 characters to cater to a bug in INN
14625         2.3.  Also, don't pretend that references aren't folded -- this
14626         hasn't worked for a while.
14627
14628 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14629
14630         * gnus-agent.el (gnus-agentize):
14631         gnus-agent-send-mail-real-function no longer set to current value
14632         of message-send-mail-function but rather a lambda that calls
14633         message-send-mail-function.  The change makes the agent real-time
14634         responsive to user changes to message-send-mail-function.
14635
14636 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14637
14638         * legacy-gnus-agent.el
14639         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14640         help from Florian Weimer <fw@deneb.enyo.de>
14641
14642 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14643
14644         * nnmail.el (nnmail-cache-insert): Revert last change.
14645
14646 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14647
14648         * nnmail.el (nnmail-cache-insert): Always check whether
14649         nnmail-cache-ignore-groups matches a group name.
14650
14651 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14652
14653         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14654         (spam-find-spam, spam-log-processing-to-registry)
14655         (spam-log-registered-p, spam-log-unregistration-needed-p)
14656         (spam-log-undo-registration): Use gnus-message instead of
14657         gnus-error, none of these errors are fatal.
14658
14659         * gnus-registry.el (gnus-registry-clean-empty-function)
14660         (gnus-registry-clean-empty): Remove only empty entries without
14661         extra data.
14662
14663 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14664
14665         * spam-stat.el (spam-stat-buffer-change-to-spam)
14666         (spam-stat-buffer-change-to-non-spam): Change (error) to
14667         (gnus-message 8) invocation.
14668
14669 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14670
14671         * nntp.el (nntp-via-netcat-command): New variable.
14672         (nntp-via-netcat-switches): New variable.
14673         (nntp-open-via-rlogin-and-netcat): New function.
14674         (nntp-open-connection-function): Doc fix.
14675         (nntp-telnet-command): Doc fix.
14676         (nntp-end-of-line): Doc fix.
14677         (nntp-via-rlogin-command): Doc fix.
14678         (nntp-via-user-name): Doc fix.
14679         (nntp-via-address): Doc fix.
14680
14681 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14682
14683         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14684         error in Emacs 21.1.
14685
14686 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14687
14688         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14689
14690 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14691
14692         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14693         (gnus-agent-with-refreshed-group): New macro.
14694         (gnus-agent-rename-group): New function.
14695         (gnus-agent-delete-group): New function.
14696         (gnus-agent-save-group-info): Use gnus-command-method when
14697         `method' parameter is nil.  Don't write nil entries into the
14698         active file.
14699         (gnus-agent-get-group-info): New function.
14700         (gnus-agent-fetch-articles): Use
14701         gnus-agent-update-files-total-fetched-for to increment disk space
14702         used.
14703         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14704         gnus-agent-update-view-total-fetched-for to increment disk space
14705         used.
14706         (gnus-agent-get-local): Added optional parameters to avoid calling
14707         gnus-group-real-name and gnus-find-method-for-group.
14708         (gnus-agent-set-local): Delete stored entry if either min, or max,
14709         are nil.
14710         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14711         quit, use gnus-agent-regenerate-group to record existance of any
14712         articles fetched to disk before the quit occurred.
14713         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14714         gnus-agent-update-view-total-fetched-for, and
14715         gnus-agent-update-files-total-fetched-for to decrement disk space
14716         used.
14717         (gnus-agent-retrieve-headers): Use
14718         gnus-agent-update-view-total-fetched-for to increment disk space
14719         used.
14720         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14721         with gnus-agent-update-files-total-fetched-for to decrement disk
14722         space and fresh group buffer.
14723         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14724         (gnus-agent-need-update-total-fetched-for): New variable.
14725         (gnus-agent-update-files-total-fetched-for): New function.
14726         (gnus-agent-update-view-total-fetched-for): New function.
14727         (gnus-agent-total-fetched-for): New function.
14728
14729         * gnus-cache.el (gnus-cache-save-buffers): Use
14730         gnus-cache-update-overview-total-fetched-for to change disk space
14731         used by this group.
14732         (gnus-cache-possibly-enter-article): Use
14733         gnus-cache-update-file-total-fetched-for to increment disk space
14734         used by this group.
14735         (gnus-cache-possibly-remove-article): Use
14736         gnus-cache-update-file-total-fetched-for to decrement disk space
14737         used by this group.
14738         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14739         (gnus-cache-rename-group): New function.
14740         (gnus-cache-delete-group): New function.
14741         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14742         (gnus-cache-need-update-total-fetched-for): New variable.
14743         (gnus-cache-with-refreshed-group): New macro.
14744         (gnus-cache-update-file-total-fetched-for): New function.
14745         (gnus-cache-update-overview-total-fetched-for): New function.
14746         (gnus-cache-rename-group-total-fetched-for): New function.
14747         (gnus-cache-delete-group-total-fetched-for): New function.
14748         (gnus-cache-total-fetched-for): New function.
14749
14750         * gnus-group.el: Require gnus-sum and autoload functions to
14751         resolve warnings when gnus-group.el compiled alone.
14752         (gnus-group-line-format): Documented new %F.
14753         (size of Fetched data) group line format; identifies disk space
14754         used by agent and cache.
14755         (gnus-group-line-format-alist): Defined new F format.
14756         (gnus-total-fetched-for): New function.
14757         (gnus-group-delete-group): No longer update
14758         gnus-cache-active-altered as gnus-request-delete-group now keeps
14759         the cache in sync.
14760         (gnus-group-list-active): Let the agent store a server's active
14761         list if currently plugged.
14762
14763         * gnus-int.el (gnus-request-delete-group):
14764         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14765         local disk in sync with the server.
14766         (gnus-request-rename-group):
14767         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14768         local disk in sync with the server.
14769
14770         * gnus-start.el (gnus-get-unread-articles):
14771         Cosmetic simplification to logic.
14772
14773         * gnus-util.el (gnus-rename-file): New function.
14774
14775 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14776
14777         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14778
14779 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14780
14781         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14782         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14783
14784 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14785
14786         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14787         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14788
14789 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14790
14791         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14792
14793 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14794
14795         * spam.el (spam-set-difference): Add function to replace
14796         gnus-set-difference in spam.el.
14797         (spam-summary-prepare-exit): Use spam-set-difference.
14798
14799 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14800
14801         * gnus-registry.el (gnus-registry-cache-file): Update to use
14802         gnus-dribble-directory OR gnus-home-directory OR ~.
14803         (gnus-registry-split-fancy-with-parent): Fix doc.
14804
14805 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14806
14807         * message.el (message-exchange-point-and-mark): Use
14808         message-mark-active-p.  Suggested by Jesper Harder
14809         <harder@ifa.au.dk>.
14810
14811 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14812
14813         * message.el (message-exchange-point-and-mark): Don't activate
14814         region if it was inactive.  Suggested by Hiroshi Fujishima
14815         <pooh@nature.tsukuba.ac.jp>.
14816
14817 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14818
14819         * gnus-art.el (article-display-face): Display Faces in the same
14820         order as X-Faces.
14821
14822 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14823
14824         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14825
14826 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14827
14828         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14829         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14830         (gnus-article-mime-hierarchy): Remove.
14831         (gnus-article-mime-hierarchy-next): Remove.
14832         (gnus-article-mode): Revert 2004-03-19 change.
14833         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14834         (gnus-insert-mime-button): Revert 2004-03-19 change.
14835         (gnus-mime-accumulate-hierarchy): Remove.
14836         (gnus-mime-enter-multipart): Remove.
14837         (gnus-mime-leave-multipart): Remove.
14838         (gnus-mime-display-part): Revert 2004-03-19 change.
14839         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14840
14841         * mml.el (mml-preview): Revert 2004-03-19 change.
14842
14843 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14844
14845         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14846
14847 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14848
14849         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14850         t while entering a file name using the mm-with-multibyte macro.
14851         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14852
14853         * mm-util.el (mm-with-multibyte): New macro.
14854
14855 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14856
14857         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14858         user option.
14859         (gnus-mime-multipart-functions): Doc and customization fix.
14860         (gnus-article-mime-hierarchy): New variable.
14861         (gnus-article-mime-hierarchy-next): New variable.
14862         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14863         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14864         gnus-article-mime-hierarchy-next to nil.
14865         (gnus-insert-mime-button): Show hierarchy numbers.
14866         (gnus-mime-accumulate-hierarchy): New function.
14867         (gnus-mime-enter-multipart): New function.
14868         (gnus-mime-leave-multipart): New function.
14869         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14870         (gnus-mime-display-alternative): Show hierarchy numbers.
14871
14872         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14873         gnus-article-mime-hierarchy-next to nil.
14874
14875 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
14876
14877         * dns.el: Don't require gnus-xmas.
14878
14879 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
14880
14881         * mml.el (mml-generate-mime-1): Don't use format=flowed with
14882         inline PGP.
14883         (mml-menu): Disable mml-quote-region if mark is inactive.
14884
14885 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14886
14887         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
14888         when the group's active is not available.
14889
14890 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14891
14892         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
14893         error.
14894
14895 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
14896
14897         * imap.el (imap-store-password): New variable.
14898         (imap-interactive-login): Use it.
14899         Suggested by Mark Plaksin <happy@mcplaksin.org>.
14900
14901 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14902
14903         * gnus-art.el (gnus-article-read-summary-keys): Restore new
14904         window-start and hscroll to summary window.
14905
14906 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14907
14908         * gnus-start.el (gnus-convert-old-newsrc): Only write the
14909         conversion message to newsrc-dribble when an actual conversion is
14910         performed.
14911
14912 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
14913
14914         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
14915
14916 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14917
14918         * mm-decode.el (mm-complicated-handles): New function reviving
14919         former definition of mm-multiple-handles.
14920
14921         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
14922         (gnus-mime-delete-part): Use it.
14923
14924 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14925
14926         * gnus-agent.el (gnus-agent-read-local): Bind
14927         nnheader-file-coding-system to gnus-agent-file-coding-system to
14928         avoid the implicit assumption that they will always be equal.
14929         (gnus-agent-save-local): Bind buffer-file-coding-system, not
14930         coding-system-for-write, as the with-temp-file macro first prints
14931         to a buffer then saves the buffer.
14932
14933 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14934
14935         * gnus-art.el (gnus-article-edit-part): New function.
14936         (gnus-mime-save-part-and-strip): Use it; do query instead of
14937         signaling an error; don't use mm-multiple-handles.
14938         (gnus-mime-delete-part): Ditto.
14939
14940 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14941
14942         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
14943         old file versions.
14944         (gnus-group-prepare-hook): Removed function that converted list
14945         form of gnus-agent-expire-days to group properties.
14946
14947         * gnus-int.el: Autoload gnus-agent-regenerate-group.
14948         (gnus-request-accept-article): Re-indented.
14949
14950         * gnus-start.el (gnus-convert-old-newsrc): Registered new
14951         converters to handle old agent file formats.  Added logic for a
14952         "backup before upgrading warning".
14953         (gnus-convert-mark-converter-prompt): Developers can mark
14954         functions as needing (default), or not needing,
14955         gnus-convert-old-newsrc's "backup before upgrading warning".
14956         (gnus-convert-converter-needs-prompt): Tests whether the user
14957         should be protected from potentially irreversable changes by the
14958         function.
14959
14960         * legacy-gnus-agent.el: New.  Provides converters that are only
14961         loaded when gnus-convert-old-newsrc needs to call them.
14962
14963 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14964
14965         * mail-source.el (mail-source-touch-pop): Doc fix.
14966
14967         * message.el (message-smtpmail-send-it): Doc fix.
14968
14969 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
14970
14971         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
14972
14973         * nnmail.el (nnmail-split-fancy): do.
14974
14975         * gnus-kill.el (gnus-kill, gnus-execute): do.
14976
14977 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
14978
14979         * gnus-sum.el (gnus-widget-reversible-match)
14980         (gnus-widget-reversible-to-internal)
14981         (gnus-widget-reversible-to-external): New functions.
14982         (gnus-widget-reversible): New widget.
14983         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
14984
14985 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
14986
14987         * gnus-sum.el (gnus-thread-sort-functions)
14988         (gnus-article-sort-functions): Document `(not F)' items.
14989
14990 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
14991
14992         * spam.el (spam-use-gmane-xref): Add new backend.
14993         (spam-gmane-xref-spam-group): Add variable to control the name of the
14994         Gmane spam group.
14995         (spam-blackhole-servers, spam-blackhole-good-server-regex)
14996         (spam-regex-headers-spam, spam-regex-headers-ham)
14997         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
14998         (spam-list-of-checks): Add spam-use-gmane-xref to list of
14999         backends and checks.
15000         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
15001
15002         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
15003         an autodetect method.
15004
15005 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15006
15007         * gnus-int.el (gnus-request-accept-article): Inform the agent that
15008         articles are being added to a group.
15009         (gnus-request-replace-article): Inform the agent that articles
15010         need to be uncached as the cached contents are no longer valid.
15011
15012 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15013
15014         * binhex.el: Don't autoload executable-find.
15015
15016         * canlock.el: Don't autoload mail-fetch-field.
15017
15018         * dgnushack.el: Autoload c-mode for XEmacs.
15019
15020         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15021
15022         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15023         rmail-dont-reply-to and rmail-output.
15024
15025         * gnus-score.el: Don't autoload ffap-string-at-point.
15026
15027         * gnus-setup.el: Don't autoload sc-cite-original.
15028
15029         * imap.el: Don't autoload base64-decode-string,
15030         base64-encode-string and md5.
15031
15032         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15033         and rmail-msg-restore-non-pruned-header.
15034
15035         * mm-decode.el: Don't autoload executable-find.
15036
15037         * mm-url.el: Don't autoload executable-find.
15038
15039         * mm-view.el: Don't autoload diff-mode.
15040
15041         * nndb.el: Don't autoload news-reply-mode, news-setup,
15042         cancel-timer and telnet.
15043
15044         * password.el: Don't autoload run-at-time for Emacs.
15045
15046         * sha1-el.el: Don't autoload executable-find.
15047
15048         * sieve-mode.el: Don't autoload c-mode.
15049
15050         * uudecode.el: Don't autoload executable-find.
15051
15052 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15053
15054         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15055         (gnus-agent-possibly-alter-active): Avoid null in numeric
15056         comparison.
15057         (gnus-agent-set-local): Refuse to save null in local object table.
15058         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15059         list of articles that will be marked as unread.
15060
15061 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15062
15063         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15064
15065 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15066
15067         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15068         language tags.
15069
15070 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15071
15072         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15073         Don't bind "obarray".
15074
15075         * gnus-sum.el (gnus-thread-sort-functions): Added
15076         `gnus-thread-sort-by-most-recent-number' and
15077         `gnus-thread-sort-by-most-recent-date'.
15078         Reported by Kai Grossjohann <kai@emptydomain.de>.
15079
15080 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15081
15082         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15083
15084 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15085
15086         * gnus-cus.el (gnus-agent-customize-category): Removed
15087         ignore-errors macro reference that required cl to be loaded at
15088         run-time.
15089
15090         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15091         single-interval range of the form (min . max).  Previously the
15092         range had to look like ((min . max)).  Likewise, return
15093         (min . max) rather than ((min . max)).
15094         (gnus-range-map): Use gnus-range-normalize to accept
15095         single-interval range.
15096
15097         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15098         the cache, but not the agent, now appear with their usual face.
15099
15100         * dgnushack.el (loaddir): New variable that is bound to the
15101         directory containing the dgnushack.el file. Use loaddir, rather
15102         than srcdir, to update load-path. Change lets dgnushack compile
15103         code in directories other than GNUS/lisp.
15104
15105 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15106
15107         * lpath.el: Don't bind w3m-safe-url-regexp.
15108
15109         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15110         w3m-safe-url-regexp variable buffer-local.
15111
15112         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15113
15114 2004-02-27  Simon Josefsson  <jas@extundo.com>
15115
15116         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15117         gnus-group-real-prefix.
15118         (gnus-summary-move-article): Use it, instead of
15119         gnus-group-real-prefix.
15120
15121 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15122
15123         * lpath.el: Bind w3m-safe-url-regexp.
15124
15125         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15126         w3m-safe-url-regexp variable buffer-local and set it as the value
15127         of mm-w3m-safe-url-regexp.
15128
15129         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15130
15131         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15132         parsing gnus-posting-styles when the message is not for replying.
15133
15134         * dgnushack.el: Autoload sgml-mode for XEmacs.
15135
15136         * nnrss.el (nnrss-opml-export): Use
15137         mm-set-buffer-file-coding-system instead of
15138         set-buffer-file-coding-system.
15139
15140 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15141
15142         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15143         of checkdoc.el).
15144         * nnrss.el: do.
15145         * gnus-mlspl.el: do.
15146         * gnus-ml.el: do.
15147         * gnus-srvr.el: do.
15148
15149         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15150
15151 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15152
15153         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15154         Corrections to custom-manual links.
15155
15156         * gnus-art.el (gnus-article): Ditto.
15157
15158         * mm-decode.el (mime-display, mime-security): Ditto.
15159
15160 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15161
15162         * flow-fill.el: Typo.
15163
15164 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15165
15166         * spam-wash.el: New file.
15167
15168 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15169
15170         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15171
15172 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15173
15174         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15175         to be run with new-articles as LIST1, not LIST2.
15176         (spam-registration-functions): Add spam-use-ham-copy as a nil
15177         registration backend.
15178
15179 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15180
15181         * spam-stat.el (spam-stat-washing-hook): New option.
15182         (spam-stat-buffer-words): Use it.
15183         (spam-stat-process-directory, spam-stat-test-directory): Use
15184         insert-file-contents-literally.
15185         (spam-stat-coding-system): New variable.
15186         (spam-stat-load, spam-stat-save): Use it.
15187
15188 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15189
15190         * spam-report.el (spam-report-plug-agent): Quote
15191         spam-report-url-to-file and spam-report-url-ping-plain.
15192
15193 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15194
15195         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15196         / in mailto URLs.
15197
15198 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15199
15200         * spam-report.el (spam-report-process-queue): Fix interactive use.
15201         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15202         (spam-report-unplug-agent): Doc fixes.
15203         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15204         (spam-report-agentize, spam-report-deagentize): Autoload.
15205
15206 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15207
15208         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15209
15210         * message.el (message-setup-fill-variables): Add mml tags to
15211         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15212         <ajk@iu.edu>.
15213         (message-mode): Don't modify paragraph-separate there.
15214
15215 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15216
15217         * compface.el (uncompface-use-external): Default to undecided.
15218         (uncompface-use-external-threshold): New variable.
15219         (uncompface-float-time): New macro.
15220         (uncompface): Determine whether to use the external decoder if
15221         uncompface-use-external is undecided.
15222
15223 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15224
15225         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15226         after images.
15227
15228         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15229
15230 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15231
15232         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15233
15234         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15235
15236         * gnus-sum.el (gnus-summary-limit-to-age)
15237         (gnus-summary-limit-children): do.
15238
15239         * gnus-int.el (gnus-request-scan): do.
15240
15241         * gnus-group.el (gnus-group-suspend): do.
15242
15243         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15244
15245         * gnus-cite.el (gnus-cite-parse-attributions): do.
15246
15247         * gnus-agent.el (gnus-summary-set-agent-mark)
15248         (gnus-agent-regenerate-group): do.
15249
15250         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15251
15252         * binhex.el (binhex-decode-region-internal): do.
15253
15254 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15255
15256         * gnus-fun.el (gnus-face-properties-alist): New user option.
15257         (gnus-display-x-face-in-from): Use it.
15258
15259         * gnus-art.el (article-display-face): Ditto.
15260
15261         * compface.el (uncompface-use-external): Default to nil.
15262
15263 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15264
15265         * nntp.el (nntp-erase-buffer): New function.
15266         (nntp-retrieve-data, nntp-send-command)
15267         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15268         (nntp-possibly-change-group): Use it.
15269
15270         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15271         with-current-buffer.
15272
15273 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15274
15275         * compface.el: Merge the ELisp-based uncompface program.
15276         (compface): New customization group.
15277         (uncompface-use-external): New user option.
15278         (uncompface): Call uncompface-internal if uncompface-use-external
15279         is nil.
15280         (uncompface-internal): New function.  Note that there are also
15281         some other functions and variables added for this function.
15282
15283 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15284
15285         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15286         if necessary.
15287
15288 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15289
15290         * spam-report.el (spam-report-unplug-agent)
15291         (spam-report-plug-agent, spam-report-deagentize)
15292         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15293         Add support for the Agent in spam-report: when unplugged, report to a
15294         file; when plugged, submit all the requests.
15295
15296         * spam.el (spam-register-routine): Fix message about
15297         registration.
15298
15299 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15300
15301         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15302         dependencies.
15303         (rfc2047-encode): Use it.
15304
15305         * gnus-art.el (gnus-button-marker-list): Move before first
15306         reference.
15307
15308         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15309         (imap-parse-body): Fix format string mismatch.
15310
15311         * gnus-score.el (gnus-summary-increase-score): do.
15312
15313         * nnrss.el (nnrss-close): New function.
15314
15315 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15316
15317         * nnrss.el (nnrss-make-filename): New function.
15318         (nnrss-request-delete-group, nnrss-read-server-data)
15319         (nnrss-save-server-data, nnrss-read-group-data)
15320         (nnrss-save-group-data): Use it.
15321         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15322         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15323         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15324
15325 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15326
15327         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15328
15329 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15330
15331         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15332         files.
15333
15334         * message.el (message-generate-headers-first): Don't quote nil
15335         and t in docstrings.
15336
15337         * imap.el (imap-id): do.
15338
15339         * gnus-agent.el (gnus-agent-consider-all-articles)
15340         (gnus-agent-queue-mail): do.
15341
15342 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15343
15344         * spam-report.el (spam-report-process-queue): New function.
15345         Process requests from `spam-report-requests-file'.
15346         (spam-report-process-queue): Doc fix.
15347
15348 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15349
15350         * spam.el (spam-register-routine)
15351         (spam-log-processing-to-registry, spam-log-registered-p)
15352         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15353         Change "check" to "spam-check" for semi-clarity.
15354
15355 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15356
15357         * pop3.el: Require nnheader.
15358
15359         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15360
15361         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15362
15363         * gnus-picon.el: Require cl.
15364
15365         * gnus-fun.el: Require gnus-ems and gnus-util.
15366
15367         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15368
15369         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15370
15371         * gnus-art.el (gnus-article-edit-mode): Define before first
15372         reference.
15373
15374 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15375
15376         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15377         (gnus-uu-post-encoded): Use point-at-bol.
15378
15379         * gnus-topic.el (gnus-group-active-topic-p): do.
15380
15381         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15382
15383         * gnus-group.el (gnus-group-kill-region): do.
15384
15385         * gnus-art.el (article-date-ut): do.
15386
15387         * message.el (message-fetch-field): Remove redundant
15388         case-fold-search binding.
15389         (message-narrow-to-field): Simplify.
15390
15391 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15392
15393         * spam.el (spam-directory): Derive from `gnus-directory'.
15394
15395         * spam-report.el (spam-report-url-to-file)
15396         (spam-report-requests-file): New function and variable for offline
15397         reporting.
15398         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15399         and user defined function.
15400         (spam-report-url-ping-mm-url): Remove doubled slash.
15401
15402 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15403
15404         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15405
15406 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15407
15408         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15409         format string mismatch.
15410
15411         * sieve.el (sieve-deactivate-all): do.
15412
15413         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15414
15415         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15416
15417         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15418
15419         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15420
15421 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15422
15423         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15424         the list of checks.
15425
15426 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15427
15428         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15429         padding.
15430
15431 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15432
15433         * mm-view.el (mm-fill-flowed): New variable.
15434         (mm-inline-text): Use it.
15435
15436 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15437
15438         * spam.el (spam-spamassassin-register-ham-routine)
15439         (spam-spamassassin-register-spam-routine): Fix function names.
15440
15441 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15442
15443         * gnus.el (gnus-tmp-grouplens): Remove.
15444         (gnus-summary-line-format): Remove grouplens.
15445
15446         * gnus-group.el (gnus-group-line-format): Ditto.
15447
15448         * gnus-spec.el (gnus-format-specs): Ditto.
15449         (gnus-update-format-specifications): Flush the group format spec
15450         cache if there's the grouplens stuff.
15451         (gnus-parse-simple-format): Replace %l with the empty string.
15452
15453 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15454
15455         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15456         omission.
15457
15458 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15459
15460         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15461         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15462
15463 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15464
15465         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15466         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15467         New macros and functions.
15468         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15469         Handle > NLINK_MAX messages.
15470         * nnmaildir.el (nnmaildir-request-set-mark): Use
15471         nnmaildir--emlink-p and nnmaildir--eexist-p.
15472
15473 2004-01-25  Alex Schroeder  <alex@gnu.org>
15474
15475         * spam-stat.el (spam-stat-process-directory-age): New option.
15476         (spam-stat-process-directory): Use it.
15477
15478 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15479
15480         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15481         (spam-stat-save): Accept prefix argument.
15482
15483 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15484
15485         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15486         links" error.
15487
15488 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15489
15490         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15491         the rest of the and/or forms.
15492
15493 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15494
15495         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15496         compatibility with old .newsrc.eld files.
15497
15498         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15499
15500         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15501
15502         * gnus-start.el (gnus-1): do.
15503
15504         * gnus-group.el (gnus-group-line-format-alist): do.
15505
15506         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15507
15508         * gnus-gl.el: Remove.
15509
15510 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15511
15512         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15513         marks consisting of a single range {for example, (3 . 5)} rather
15514         than a list of a single range { ((3 . 5)) }.
15515
15516 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15517
15518         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15519         with-current-buffer.
15520         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15521         avoid consing a string.
15522
15523         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15524         Remove obsolete entries for big5 and gb2312.
15525
15526 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15527
15528         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15529         uncompressed list.
15530
15531 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15532
15533         * spam-stat.el (spam-stat-strip-xref): New function.
15534         (spam-stat-process-directory): Use it.
15535
15536         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15537         here -- it's done in message-fetch-field.
15538
15539 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15540
15541         * gnus-agent.el (gnus-agent-queue-mail)
15542         (gnus-agent-prompt-send-queue): New variables.
15543         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15544         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15545         "nndraft:queue" along to gnus-draft-send.  Use
15546         gnus-agent-prompt-send-queue.
15547         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15548         is "nndraft:queue".  Suggested by Gaute Strokkenes
15549         <gs234@srcf.ucam.org>
15550
15551         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15552         (agent-enable-undownloaded-faces): Added.
15553         (gnus-agent-cat-groups): Use eval-and-compile, not
15554         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15555         method of gnus-agent-cat-groups even when the buffer has been
15556         evaled.
15557         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15558         delete gnus-agent-save-active-1.
15559         (gnus-agent-save-groups): Deleted.  Identical to
15560         gnus-agent-save-active.
15561         (gnus-agent-write-active): No longer adjust agent's copy of active
15562         file as agent's adjustments are now stored in their own
15563         file.  Removed optional parameter.
15564         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15565         servers.  Add use of min/max range limits from server's local
15566         file.
15567         (gnus-agent-save-alist): Removed unused optional argument.
15568         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15569         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15570         (gnus-agent-set-local): A per-server file that keeps min/max range
15571         limits for articles known to the agent.  Provides a fast mechanism
15572         for altering many active ranges.
15573         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15574         active file (local makes it unnecessary).
15575         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15576
15577         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15578         (agent-enable-undownloaded-faces): Added.
15579
15580         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15581         disable it when sending to "nndraft:queue".
15582         (gnus-group-send-queue): Add safety check to avoid sending queue
15583         when unplugged.
15584
15585         * gnus-group.el (gnus-group-catchup): Use new
15586         gnus-sequence-of-unread-articles, not
15587         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15588         numbers of articles.  Use gnus-range-map to avoid having to
15589         uncompress the unread list.
15590         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15591         Fixed invalid ange-ftp reference.
15592
15593         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15594         (gnus-sorted-range-intersection): Intersection of two ranges
15595         without requiring that they first be uncompressed.
15596
15597         * gnus-start.el (gnus-activate-group): Unless blocked by the
15598         caller, possibly expand the active range to include both cached
15599         and agentized articles.
15600         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15601         multiple version-dependent converters.
15602         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15603         gnus-agent-save-active.
15604         (gnus-save-newsrc-file): Save dirty agent range limits.
15605
15606         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15607         gnus-agent-possibly-alter-active.
15608         (gnus-adjust-marked-articles): Faster handling of simple lists.
15609
15610 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15611
15612         * spam-stat.el (spam-stat-test-directory): New optional argument
15613         displays a list of files detected.  Suggested by Andrew Cohen
15614         <cohen@andy.bu.edu>.
15615         (spam-stat-buffer-words-with-scores): Don't narrow and change
15616         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15617
15618 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15619
15620         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15621         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15622         (spam-spamassassin-arguments)
15623         (spam-spamassassin-spam-flag-header)
15624         (spam-spamassassin-positive-spam-flag-header)
15625         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15626         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15627         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15628         (spam-list-of-processors, spam-list-of-checks)
15629         (spam-list-of-statistical-checks, spam-registration-functions)
15630         (spam-check-spamassassin-headers, spam-check-spamassassin)
15631         (spam-spamassassin-score)
15632         (spam-spamassassin-register-with-sa-learn)
15633         (spam-spamassassin-register-spam-routine)
15634         (spam-spamassassin-register-ham-routine)
15635         (spam-assassin-register-spam-routine)
15636         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15637         (spam-bogofilter-score): Fix to show article before scoring.
15638
15639 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15640
15641         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15642         default scoring function.
15643         (spam-generic-score): Call spam-spamassassin-score if
15644         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15645         spam-bogofilter-score otherwise.
15646
15647         * gnus.el (spam-process, spam-autodetect-methods): Add
15648         spamassassin and spamassassin-headers.
15649
15650 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15651
15652         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15653         Suppress unnecessary messages.
15654
15655 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15656
15657         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15658         make-hash-table.
15659
15660 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15661
15662         * canlock.el (base64-encode-string): Don't autoload it.
15663
15664 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15665
15666         * run-at-time.el: Remove useless (require 'itimer),
15667         eval-and-compile and (featurep 'xemacs).
15668
15669 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15670
15671         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15672         GROUP is a virtual group.
15673
15674 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15675
15676         * gnus.el: Autoload `message-y-or-n-p'.
15677
15678 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15679
15680         * pgg-parse.el: Remove unnecessary (require 'custom).
15681
15682         * pgg-def.el: do.
15683
15684         * nnmail.el: do.
15685
15686         * gnus-undo.el: do.
15687
15688         * gnus-picon.el: do.
15689
15690         * gnus-util.el: do.
15691
15692 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15693
15694         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15695
15696 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15697
15698         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15699         handle, as well as a list.
15700
15701         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15702         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15703         (mm-w3m-cid-retrieve): Simplify.
15704
15705 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15706
15707         * message.el (message-kill-to-signature): Allow prefix arg to
15708         specify number of lines to keep before signature.
15709
15710 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15711
15712         * message.el (message-kill-to-signature): Change docstring.
15713
15714 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15715
15716         * canlock.el: Always require sha1-el.
15717         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15718
15719         * message.el: Autoload sha1 only when compiling.
15720
15721         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15722         eudc-expand-inline for XEmacs.
15723
15724 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15725
15726         * message.el (message-canlock-generate): Require sha1-el.
15727
15728 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15729
15730         * message.el (message-expand-name): Silence the byte compiler.
15731
15732         * lpath.el: Add detect-coding-system.
15733
15734         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15735         cus-edit.
15736
15737 2004-01-13  Simon Josefsson  <jas@extundo.com>
15738
15739         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15740         Invoke gnus-score-mode.  Reported by
15741         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15742
15743         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15744         Jim Blandy <jimb@redhat.com> (tiny change).
15745
15746 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15747
15748         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15749
15750 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15751
15752         * spam.el (spam-get-article-as-string): Update to use
15753         gnus-request-article-this-buffer, much simpler.
15754         (spam-get-article-as-buffer): Remove.
15755
15756 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15757
15758         * message.el (message-expand-name): Use EUDC if the user uses that.
15759
15760 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15761
15762         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15763         character for the encoding to avoid consing a string.
15764
15765         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15766         unnecessarily.
15767
15768         * mm-util.el (mm-replace-chars-in-string): Remove.
15769
15770         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15771         of mm-replace-chars-in-string.
15772
15773 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15774
15775         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15776
15777         * mm-util.el (mm-subst-char-in-string): Support inplace.
15778
15779         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15780         a new string in every iteration.  Use shy groups.
15781
15782 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15783
15784         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15785         * gnus-soup.el (gnus-soup-group-brew):
15786         * gnus-msg.el (gnus-put-message):
15787         * gnus-move.el (gnus-group-move-group-to-server):
15788         * gnus-kill.el (gnus-batch-score):
15789         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15790         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15791         (gnus-group-update-group, gnus-group-read-group)
15792         (gnus-group-make-group, gnus-group-make-help-group)
15793         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15794         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15795         (gnus-group-sort-by-unread, gnus-group-catchup)
15796         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15797         (gnus-group-yank-group, gnus-group-set-info)
15798         (gnus-group-list-groups):
15799         * gnus.el (gnus-generate-new-group-name):
15800         * gnus-delay.el (gnus-delay-send-queue):
15801         * nnvirtual.el (nnvirtual-catchup-group):
15802         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15803         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15804         (gnus-group-prepare-topics, gnus-topic-check-topology):
15805         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15806         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15807         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15808         (gnus-group-make-articles-read):
15809         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15810         (gnus-group-change-level, gnus-kill-newsgroup)
15811         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15812         (gnus-get-unread-articles, gnus-make-articles-unread)
15813         (gnus-make-ascending-articles-unread): Use accessor
15814         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15815         to get group information for improved readability.
15816
15817
15818 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15819
15820         * gnus-art.el (article-decode-mime-words, article-babel)
15821         (gnus-article-highlight-signature, gnus-article-add-buttons)
15822         (gnus-signature-toggle): Use gnus-with-article-buffer.
15823
15824         * gnus-art.el (gnus-article-highlight-headers)
15825         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15826
15827         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15828         (gnus-article-set-globals, gnus-request-article-this-buffer)
15829         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15830         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15831         (gnus-mime-display-alternative): Use with-current-buffer.
15832
15833 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15834
15835         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15836         also under 80 char limit, and call gnus-error if needed.
15837         (spam-fetch-article-header): Fix - it was a
15838         buffer-local variable (gnus-newsgroup-data).
15839         (spam-find-spam): Use spam-generate-fake-headers, forget about
15840         spam-insert-fake-headers.
15841         (spam-insert-fake-headers): Remove.
15842
15843 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15844
15845         * deuglify.el (gnus-article-outlook-unwrap-lines)
15846         (gnus-outlook-rearrange-article)
15847         (gnus-outlook-repair-attribution-outlook)
15848         (gnus-outlook-repair-attribution-block)
15849         (gnus-outlook-repair-attribution-other): Remove redundant
15850         save-excursion.
15851
15852 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15853
15854         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15855         (spam-fetch-field-subject-fast)
15856         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15857         (spam-fetch-article-header): Add functions to deal with Gnus
15858         internals for fast retrieval of article header data.
15859         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15860
15861 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15862
15863         * pop3.el (pop3-md5): Remove.
15864         (pop3-apop): Replace pop3-md5 with md5.
15865
15866         * mm-bodies.el: base64 is always built-in.
15867
15868         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15869         with-current-buffer.
15870
15871 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15872
15873         * canlock.el (canlock-insert-header): Remove excessive grouping in
15874         regexp.
15875
15876         * gnus-sum.el (gnus-summary-read-document): Ditto.
15877
15878         * gnus-uu.el (gnus-uu-part-number): Ditto.
15879
15880         * html2text.el (html2text-remove-tags): Ditto.
15881         (html2text-format-tags): Ditto.
15882         (html2text-format-single-elements): Ditto.
15883
15884         * mml.el (mml-parse-1): Ditto.
15885
15886 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15887
15888         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
15889
15890         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
15891
15892         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
15893
15894         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
15895
15896 2003-11-15  Simon Josefsson  <jas@extundo.com>
15897
15898         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
15899         (pgg-gpg-lookup-key): Use regexp match instead of
15900         split-string (split-string is different between emacs 21.2 and
15901         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
15902
15903 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15904
15905         * gnus-art.el (gnus-mime-view-all-parts)
15906         (gnus-article-part-wrapper, gnus-article-view-part): Use
15907         with-current-buffer.
15908
15909 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15910
15911         * spam.el (spam-disable-spam-split-during-ham-respool)
15912         (spam-spamoracle-database, spam-cache-lookups)
15913         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
15914         (spam-group-ham-mark-p, spam-group-spam-mark-p)
15915         (spam-group-ham-marks, spam-group-spam-marks)
15916         (spam-group-spam-contents-p, spam-group-ham-contents-p)
15917         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
15918         also add spam-use-blackholes to the statistical checks.
15919         (spam-fetch-field-fast): Add interface to fetching fields, may
15920         become a macro.
15921         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
15922         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
15923         (spam-insert-fake-headers): Fake an article when needed.
15924         (spam-find-spam): Fake article when possible.
15925         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
15926         (spam-check-bogofilter-headers): Use message-fetch-field instead
15927         of nnmail-fetch-field.
15928
15929 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
15930
15931         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
15932
15933 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15934
15935         * spam.el (spam-split): Do not require spam-use-CHECK to be
15936         enabled if that check is passed to spam-split explicitly; also
15937         fix so 'spam doesn't get converted to spam-split-group when
15938         spam-split-symbolic-return is t.
15939         (spam-find-spam): Find registrations of the article and use those
15940         instead of re-running spam-split to find the spam/ham
15941         classification of the article.
15942         (spam-log-processing-to-registry, spam-log-registered-p)
15943         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15944         Use gnus-error instead of gnus-message.
15945         (spam-log-registration-type): Add function to determine the
15946         classification of a message based on registry entries; will
15947         return nil if both 'spam and 'ham are found.
15948         (spam-check-BBDB): Expand all the BBDB macros here so we can have
15949         a reasonably fast local cache without the loading errors.
15950         (spam-cache-lookups): Set to t by default.
15951         (spam-find-spam): Don't try to guess spam-cache-lookups.
15952         (spam-enter-whitelist, spam-enter-blacklist): Clear the
15953         spam-caches entry.
15954         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
15955         caching of whitelist/blacklist entries.
15956         (spam-check-whitelist, spam-check-blacklist): Invoke
15957         spam-from-listed-p with a type, not a cache variable.
15958         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
15959
15960 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
15961
15962         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
15963
15964         * nnmail.el (nnmail-split-fancy): do.
15965
15966         * mml.el (mml-parse): do.
15967
15968         * gnus-score.el (gnus-enter-score-words-into-hashtb)
15969         (gnus-score-adaptive): do.
15970
15971 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15972
15973         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
15974         (gnus-mime-button-map): Don't set keymap parent.
15975         (gnus-button-ctan-directory-regexp): Use shy grouping.
15976         (gnus-prev-page-map): Don't set keymap parent.
15977         (gnus-prev-page-map): Remove duplicated one.
15978         (gnus-next-page-map): Don't set keymap parent.
15979         (gnus-mime-security-button-map): Ditto.
15980
15981         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
15982         version number.
15983
15984         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
15985
15986 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15987
15988         * canlock.el (canlock-sha1-function): Remove.
15989         (canlock-sha1-function-for-verify): Remove.
15990         (canlock-openssl-program): Remove.
15991         (canlock-openssl-args): Remove.
15992         (canlock-ignore-errors): Remove.
15993         (canlock-sha1-with-openssl): Remove.
15994         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
15995         (canlock-verify): Don't use canlock-ignore-errors.
15996
15997         * sha1-el.el (sha1-string-external): Make it can return a string
15998         in binary form.
15999         (sha1-region-external): Ditto.
16000         (sha1-string-internal): Ditto.
16001         (sha1-region-internal): Ditto.
16002         (sha1-region): Ditto.
16003         (sha1-string): Ditto.
16004         (sha1): Ditto.
16005
16006 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16007
16008         * spam.el (spam-report-articles-gmane): New command.
16009
16010 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16011
16012         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16013
16014         * run-at-time.el (run-at-time-saved): Remove.
16015         (run-at-time): Doc fix.
16016
16017 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16018
16019         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16020         (gnus-summary-limit-map): Add it.
16021         (gnus-summary-make-menu-bar): do.
16022
16023 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16024
16025         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16026         Make attempt at some caching support (done for BBDB only now).
16027         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16028         addresses to be checked.
16029         (spam-clear-cache-BBDB): Add function, to be invoked by
16030         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16031         (spam-check-BBDB): Check and use the caches, if
16032         spam-cache-lookups is on, remove superfluous (provide).
16033
16034 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16035
16036         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16037
16038 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16039
16040         * run-at-time.el (run-at-time-saved): Move to after the definition
16041         of `run-at-time'.
16042
16043         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16044
16045 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16046
16047         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16048         mm-w3m-local-map-property.
16049
16050         * mm-view.el (mm-w3m-mode-map): Remove.
16051         (mm-w3m-local-map-property): Remove.
16052         (mm-inline-text-html-render-with-w3m): Don't use
16053         mm-w3m-local-map-property.
16054
16055 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16056
16057         * run-at-time.el: New file.
16058
16059         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16060         under Emacs.
16061
16062         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16063         of gnus-set-text-properties.
16064
16065         * gnus-uu.el (gnus-uu-save-article): Ditto.
16066
16067         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16068
16069         * gnus-cite.el (gnus-cite-parse): Ditto.
16070
16071         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16072         of gnus-.
16073
16074         * gnus-xmas.el (run-at-time): Require run-at-time.
16075
16076         * gnus.el: Changed calls to nnheader-run-at-time and
16077         password-run-at-time throughout to use run-at-time directly.
16078
16079         * password.el: Removed definition of run-at-time.
16080
16081         * nnheaderxm.el: Remove definition of run-at-time.
16082
16083 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16084
16085         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16086         in prompt.
16087
16088 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16089
16090         * messagexmas.el (message-xmas-redefine): Alias
16091         `message-make-caesar-translation-table' to
16092         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16093         version.
16094
16095         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16096         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16097         `gnus-xmas-set-text-properties'.
16098         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16099         `gnus-xmas-completing-read'.
16100         (gnus-xmas-completing-read): Removed.
16101         (gnus-xmas-open-network-stream): Removed.
16102
16103         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16104         XEmacs version.
16105
16106         * dns.el (dns-make-network-process): Use `open-network-stream'
16107         instead of `gnus-xmas-open-network-stream'.
16108
16109         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16110
16111         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16112
16113 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16114
16115         * gnus-art.el (gnus-mime-display-alternative)
16116         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16117         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16118         Don't use gnus-local-map-property.
16119
16120         * gnus-util.el (gnus-local-map-property): Remove.
16121
16122         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16123         gnus-completing-read-maybe-default with completing-read.
16124
16125         * gnus-util.el (gnus-completing-read): do.
16126         (gnus-completing-read-maybe-default): Remove.
16127
16128 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16129
16130         * password.el: Only autoload `run-at-time' if not XEmacs.
16131         Only autoload the itimer functions if XEmacs.
16132
16133 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16134
16135         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16136         XEmacsen.
16137
16138         * dgnushack.el: Autoload executable-find for XEmacs.
16139
16140 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16141
16142         * gnus-art.el (gnus-read-string): Remove.
16143         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16144         read-string.
16145
16146 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16147
16148         * netrc.el: Autoload password-read.
16149         (netrc): Add configuration group.
16150         (netrc-encoding-method, netrc-openssl-path): Add
16151         variables for encoding and decoding of files with symmetric
16152         ciphers.
16153         (netrc-encode): Add assistant function to encode a file with
16154         netrc-encoding-method.
16155         (netrc-parse): Add interactive parameter, added optional
16156         decoding if netrc-encoding-method is non-nil but otherwise
16157         behavior is standard.
16158         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16159         Do s/encode/encrypt/ everywhere.
16160
16161         * spam.el: Remove executable-find autoload.
16162
16163 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16164
16165         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16166
16167         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16168
16169 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16170
16171         * gnus-art.el (gnus-treat-ansi-sequences)
16172         (article-treat-ansi-sequences): New variable and function.
16173         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16174
16175         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16176         Use it.
16177
16178 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16179
16180         * mm-util.el (mm-quote-arg): Remove.
16181
16182         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16183         shell-quote-argument.
16184
16185         * gnus-uu.el (gnus-uu-command): do.
16186
16187         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16188
16189         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16190         with make-char.
16191
16192         * mm-util.el (mm-make-char): Remove.
16193
16194         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16195         add-minor-mode.
16196
16197         * gnus-undo.el (gnus-undo-mode): do.
16198
16199         * gnus-topic.el (gnus-topic-mode): do.
16200
16201         * gnus-sum.el (gnus-dead-summary-mode): do.
16202
16203         * gnus-start.el (gnus-slave-mode): do.
16204
16205         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16206
16207         * gnus-ml.el (gnus-mailing-list-mode): do.
16208
16209         * gnus-gl.el (gnus-grouplens-mode): do.
16210
16211         * gnus-draft.el (gnus-draft-mode): do.
16212
16213         * gnus-dired.el (gnus-dired-mode): do.
16214
16215         * gnus-ems.el (gnus-add-minor-mode): Remove.
16216
16217         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16218         Replace gnus-char-width with char-width.
16219
16220         * gnus-ems.el (gnus-char-width): Remove.
16221
16222         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16223         Replace gnus-char-width with char-width.
16224
16225         * gnus-ems.el (gnus-char-width): Remove.
16226
16227         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16228         definition.
16229         Remove Emacs 20 hash table compatibility code.
16230
16231         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16232         20 compatibility code.
16233
16234         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16235
16236         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16237
16238         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16239         with point-at-{eol,bol}.
16240
16241         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16242
16243         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16244
16245         * flow-fill.el (fill-flowed-point-at-bol)
16246         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16247
16248         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16249         Replace with point-at-{eol,bol} throughout all files.
16250
16251 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16252
16253         * ntlm.el (ntlm-string-as-unibyte): New macro.
16254         (ntlm-build-auth-response): Use it.
16255
16256         Remove Emacs 20 stuff:
16257         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16258         (butlast, mapc, remove): Remove the compiler macros.
16259         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16260         of delq and copy-sequence.
16261         * gnus-art.el (popup-menu): Remove the compiler macro.
16262         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16263         Emacs 20.
16264
16265 2004-01-05  Simon Josefsson  <jas@extundo.com>
16266
16267         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16268         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16269         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16270         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16271         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16272         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16273         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16274         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16275         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16276         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16277         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16278         string-xor into ntlm-string-xor.  Suggested by
16279         Jesper Harder <harder@myrealbox.com>.
16280
16281         * ntlm.el: Don't include poem.
16282
16283         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16284         Jesper Harder <harder@myrealbox.com>.
16285
16286         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16287
16288         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16289         probably breaks emacs with DL patch, but do we care? Is anyone
16290         still using the DL stuff?)
16291
16292         * sieve-manage.el: Use the password package.
16293         (sieve-manage-read-passwd): Remove.
16294         (sieve-manage-interactive-login): Use password.  Re-add
16295         condition-case around loop.
16296
16297         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16298         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16299         the password package.
16300
16301 2003-02-19  Simon Josefsson  <jas@extundo.com>
16302
16303         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16304         token.
16305
16306 2002-08-07  Simon Josefsson  <jas@extundo.com>
16307
16308         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16309         (sieve-manage-authenticators):
16310         (sieve-manage-authenticator-alist): Add some SASL mechs.
16311         (sieve-sasl-auth): New function.
16312         (sieve-manage-cram-md5-auth):
16313         (sieve-manage-plain-auth): Rewrite using SASL library.
16314         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16315         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16316         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16317         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16318
16319 2004-01-05  Simon Josefsson  <jas@extundo.com>
16320
16321         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16322         New files.
16323
16324 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16325
16326         * gnus-group.el (gnus-no-groups-message): Update.
16327
16328         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16329
16330 2003-11-09  Simon Josefsson  <jas@extundo.com>
16331
16332         * imap.el: Support for ID IMAP extension (RFC 2971).
16333         (imap-local-variables): Add imap-id.
16334         (imap-id): New variable.
16335         (imap-id): New function.
16336         (imap-parse-response): Parse untagged ID response.
16337         * nnimap.el (nnimap-id): New variable.
16338         (nnimap-open-connection): Use it.
16339
16340 2003-12-28  Simon Josefsson  <jas@extundo.com>
16341
16342         * gnus-score.el (gnus-score-edit-all-score): New.
16343         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16344
16345 2004-01-04  Simon Josefsson  <jas@extundo.com>
16346
16347         * password.el: Add.
16348
16349 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16350
16351         * dns.el (dns-query-types): Fix typo.
16352         (dns-query-types): New function.
16353         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16354         PTR and SOA replies, see RFC 1035.
16355
16356 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16357
16358         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16359
16360         * Moved to Changelog.2.
16361
16362 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16363
16364         * gnus.el (gnus-version-number): Bump version.
16365
16366 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16367
16368         * gnus.el: No Gnus v0.1 is released.
16369
16370 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16371
16372         * gnus.el: No Gnus v0.0 is released.
16373
16374 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16375
16376         * gnus.el (gnus-version-number): Bump.
16377         (gnus-version): No.
16378
16379 See ChangeLog.2 for earlier changes.
16380
16381     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16382       Free Software Foundation, Inc.
16383
16384   This file is part of GNU Emacs.
16385
16386   GNU Emacs is free software: you can redistribute it and/or modify
16387   it under the terms of the GNU General Public License as published by
16388   the Free Software Foundation, either version 3 of the License, or
16389   (at your option) any later version.
16390
16391   GNU Emacs is distributed in the hope that it will be useful,
16392   but WITHOUT ANY WARRANTY; without even the implied warranty of
16393   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16394   GNU General Public License for more details.
16395
16396   You should have received a copy of the GNU General Public License
16397   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16398
16399 ;; Local Variables:
16400 ;; coding: utf-8
16401 ;; fill-column: 79
16402 ;; add-log-time-zone-rule: t
16403 ;; End: