481244acb00baead7da2aa7a0a21f13fb3caa67c
[gnus] / lisp / ChangeLog
1 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * nnimap.el (nnimap-authenticator): New variable.
4         (nnimap-open-connection): Allow anonymous login.
5         (nnimap-transform-headers): The chars header is called Chars not
6         Bytes.
7         (nnimap-wait-for-response): Don't infloop if the IMAP connection
8         drops.
9
10         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
11         patch, found by Knut Anders Hatlen.
12
13 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
14
15         * gnus-agent.el (gnus-agent-batch-confirmation)
16         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
17         to gnus-message.
18         * gnus-art.el (gnus-article-describe-briefly): Likewise.
19         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
20         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
21         * gnus-int.el (gnus-open-server): Likewise.
22         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
23         (gnus-score-check-syntax): Likewise.
24         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
25         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
26         Likewise.
27         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
28
29 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
30
31         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
32         calling conventions so that prefetch doesn't bug out.
33
34 2010-09-19  Julien Danjou  <julien@danjou.info>
35
36         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
37         rather than `subst-char-in-region' in order to be able to replace ASCII
38         char by UTF-8 ones.
39
40         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
41         than curl.
42         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
43         the right URL and ALT text on images.
44         (gnus-html-wash-tags): Fix tag case.
45         Add support for `s' and `ins' tags. Use gnus-emphasis-* faces.
46         (gnus-article-html): Add -o display_ins_del=2 option.
47         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
48
49 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
50
51         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
52         the extra mail headers, which sometimes seem to happen for unknown
53         reasons.
54
55         * mail-parse.el (mail-header-encode-parameter): Define as
56         rfc2045-encode-string instead of as rfc2231-encode-string, since some
57         (or most, perhaps?) mail readers don't understand the latter, but do
58         understand the former.
59
60         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
61         to nil, so that no methods are automatically agentized.  I think this
62         is probably what most users want.
63
64         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
65         from url-retrieve, for instance about invalid URLs.
66
67         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
68         groups that have no articles.
69         (nnimap-request-article): Check that we really got an article when we
70         requested one.
71
72         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
73         doesn't exist.
74
75         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
76         nntp buffer so the agent can save it.
77         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
78         that CRLF doesn't get translated to \n.
79         (nnimap-open-connection): Don't make 'shell commands only send \n.
80
81 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
82
83         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
84         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
85         Update var name.
86         (nnml-generate-nov-file): Use dolist.
87         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
88         Use with-current-buffer.
89
90 2010-09-18  Julien Danjou  <julien@danjou.info>
91
92         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
93         parallel.
94
95 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
96
97         * nnimap.el (nnimap-update-info): When doing partial marks update, get
98         the range update right.
99         (nnimap-request-group): Don't make `M-g' bug out on group with no
100         marks.
101         (nnoo): Required, so that other packages can require nnimap.
102         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
103         command we're looking for.  This helps when the server sends more
104         responses after we've gotten everything we expected.
105         (nnimap): Add a `newlinep' field to keep track of end-of-line
106         conventions.
107         Don't send CRLF to things that don't want it.
108         (nnimap-request-accept-article): Ditto.
109
110 2010-09-18  Julien Danjou  <julien@danjou.info>
111
112         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
113         than curl to retrieve images.
114
115 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
116
117         * nnimap.el (nnimap-update-info): Extend the info so that we can set
118         the marks.
119         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
120         (nnimap-wait-for-connection): New function.
121         (nnimap-open-connection): If we have PREAUTH, don't query for login
122         credentials.
123         (nnimap-update-info): Fix off-by-one error when concatenating ranges
124         when doing a partial update.
125
126 2010-09-18  Julien Danjou  <julien@danjou.info>
127
128         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
129         tags.
130
131 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
132
133         * nnimap.el (nnimap-credentials): New function.
134         (nnimap-open-connection): Use the new function to look for credentials
135         also on the numeric equivalents of "imap" and "imaps".
136
137         * gnus-start.el (gnus-activate-group): Send the info to
138         gnus-request-group.
139
140         * nnimap.el (nnimap-request-group): Have the "check" version of the
141         function parse flags and update the info, so that a `M-g' get a total
142         resync of all flags from the group.
143
144         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
145         to allow backends to alter the info on group selection.  Also alter all
146         the backend -request-group functions to take the parameter.
147
148         * nnimap.el (nnimap-store-info): New function.
149         (nnimap-update-info): Store the info for later usage.
150         (nnimap-request-group): Use the stored info for the dont-check case, so
151         that we don't retrieve all marks when we enter a group.
152
153         * nnimap.el: Use deffoo instead of defun for interface functions.
154
155         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
156         update the group info.  This makes the nndraft groups, for instance, go
157         back to their old behaviour.
158
159         * gnus-sum.el (gnus-select-newsgroup): Indent.
160
161         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
162         in.
163         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
164         nothing.
165
166         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
167         from methods that are denied.
168
169         * gnus-int.el (gnus-method-denied-p): New function.
170
171         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
172         store the password instead of netrc.
173         (nnimap-open-connection): Don't error out when we can't make a
174         connections.
175
176         * auth-source.el (auth-source-create): In the password prompt, say what
177         we're querying for.  Also prompt for user name if that hasn't been
178         given.
179
180         * nnimap.el (nnimap-with-process-buffer): Removed.
181
182 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
183
184         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
185         method when we're reading from the agent.
186
187         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
188
189         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
190         that's probably most useful for users.
191
192         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
193         "failed" all the time.
194
195         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
196         ...)) with (with-current-buffer ... ).
197
198         * nntp.el (nntp-open-server): Return whether the open was successful or
199         not.
200
201         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
202         select an unread unseen article first.
203
204         * nnimap.el (nnimap-open-connection): If the user doesn't have a
205         /etc/services, supply some sensible port defaults.
206
207         * dgnushack.el: Define netrc-credentials.
208
209 2010-09-17  Julien Danjou  <julien@danjou.info>  (tiny fix)
210
211         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
212
213 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
214
215         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
216         doesn't have any parameters.
217
218 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
219
220         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
221         only upcased checks.
222
223         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
224
225         * nnimap.el (nnimap-open-shell-stream): New function.
226         (nnimap-open-connection): Use it.
227         (nnimap-transform-headers): Get the number of lines in each message.
228         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
229         number of lines.
230         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
231         problem.
232
233         * utf7.el (utf7-encode): Autoload.
234
235         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
236         to allow the mail splitting to not return a default group.  This is
237         useful for nnimap, which will leave unmatched mail in the inbox.
238
239         * nnimap.el: Rewritten.
240
241         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
242         nnimap usage.
243
244         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
245         if the move is internal, so that nnimap can do fast internal moves.
246
247         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
248         data.
249         (gnus-read-active-for-groups): Support finishing the early retrieval of
250         data.
251
252         * gnus-range.el (gnus-range-nconcat): New function.
253
254         * gnus-int.el (gnus-finish-retrieve-group-infos)
255         (gnus-retrieve-group-data-early): New functions.
256
257 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
258
259         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
260         (nnrss-retrieve-groups):
261         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
262         (pop3-quit): Use with-current-buffer.
263
264 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
265
266         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
267         instead of nnheader-accept-process-output.
268
269         * dgnushack.el (dgnushack-compile): Add comment.
270
271         * lpath.el: No need to fbind propertize for XEmacs 21.4.
272
273         * gnus-html.el (gnus-html-schedule-image-fetching)
274         (gnus-html-prefetch-images): Replace process-kill-without-query by
275         gnus-set-process-query-on-exit-flag.
276
277 2010-09-16  Romain Francoise  <romain@orebokech.com>
278
279         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
280
281 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
282
283         * gnus-registry.el (gnus-registry-install-shortcuts): The second
284         parameter to unintern is mandatory-ish in Emacs 24.
285
286         * gnus-html.el (gnus-html-schedule-image-fetching)
287         (gnus-html-prefetch-images): Check for curl before using it.
288
289         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
290         depend on curl, which isn't essential.
291
292         * imap.el: Revert back to version
293         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
294         seem problematic.
295
296 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
297
298         * gnus-registry.el (gnus-registry-install-shortcuts):
299         Explicitly pass `obarray' to `unintern' to avoid a warning.
300
301 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
302
303         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
304         change.
305
306         * nnrss.el (nnrss-request-list): Removed this function and related
307         functions, including the moreover stuff.
308
309 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
310
311         * nnrss.el (nnrss-retrieve-groups): New function.
312
313 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
314
315         * .dir-locals.el: Add no-byte-compile cookie.
316
317 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
318
319         * time-date.el (format-seconds): Comment fix.
320
321         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
322         for back end that doesn't support request-scan.
323
324 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
325
326         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
327         then do request scans from the backends.
328
329         * netrc.el (netrc-credentials): New conveniency function.
330
331         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
332         avoid running a hook per line, since this takes a lot of time,
333         profiling shows.
334         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
335         directly if gnus-visual-p is true.
336
337 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
338
339         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
340         groups; replace mapcar with dolist which is a bit faster; pass groups
341         info to gnus-read-active-file-1.
342         (gnus-read-active-file-1): Scan only specified groups if the new
343         optional arg `infos' is given.
344
345 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
346
347         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
348
349         * pop3.el (pop3-movemail): Removed.
350         (pop3-streaming-movemail): Renamed to pop3-movemail.
351
352         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
353         don't restrict end-tag searches to the end of the line.
354
355 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
356
357         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
358         articles of every unchecked group to t, which means unknown since the
359         server has never been opened.
360
361 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
362
363         * gnus-html.el (gnus-html-show-alt-text): New command.
364         (gnus-html-browse-image): Ditto.
365         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
366         to browse the image directly.
367         (gnus-html-wash-tags): Search for images first, so that <a><img> works
368         better.
369
370         * gnus-async.el (gnus-async-article-callback): Call
371         `gnus-html-prefetch-images' unconditionally.
372
373         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
374         before feeding URLs to curl.
375
376 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
377
378         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
379         internal images as deletable by `W D D'.
380
381         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
382         (gnus-async-article-callback): Fix typo.
383
384 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
385
386         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
387         current line to work around bugs in the output from w3m.
388
389         * gnus-async.el (gnus-async-article-callback): Always prefetch images
390         for groups that want that.
391
392         * nntp.el (nntp-wait-for-string): Supply a timeout for
393         accept-process-output to ensure progress.
394
395         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
396         level to get unread articles from, then use that for foreign groups,
397         too.
398
399         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
400         confuses the rest of the function.
401
402         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
403         for the methods that support -retrieve-groups, too.
404
405         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
406
407 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
408
409         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
410         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
411
412         * pop3.el: Require cl when compiling.
413         (pop3-number-of-responses): Search for "+OK", not "+OK ".
414
415 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
416
417         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
418         that aren't going to be activated.
419         (gnus-get-unread-articles): Fix up the last commit.
420
421         * gnus-html.el (gnus-article-html): Allow calling without specifying
422         the handle.  In that case, dissect the buffer first.
423
424         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
425
426         * nnimap.el (nnimap-open-connection): Revert the change that would look
427         into authinfo for imaps instead of imap.
428
429         * gnus-start.el (gnus-activate-group): Take an optional parameter to
430         say that you don't want to call gnus-request-group with don-check, but
431         do check the reponse.  This is for virtual groups only.
432         (gnus-get-unread-articles): Count the archive groups as secondary, so
433         that they're activated the same way as before.
434
435         * imap.el (imap-message-map): Removed optional buffer parameter, since
436         no callers use it.
437         (imap-message-get): Ditto.
438         (imap-message-put): Ditto.
439         (imap-mailbox-map): Ditto.
440         (imap-mailbox-put): Ditto.
441         (imap-mailbox-get): Ditto.
442         (imap-mailbox-get): Revert last change for this function.
443
444         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
445         case-insensitively.
446         (nnimap-debug): Removed.
447
448         * imap.el (imap-fetch-safe): Removed function, and altered all callers
449         to use `imap-fetch' instead.  According to the comments, this should be
450         safe, since all other IMAP clients use the 1:* syntax.
451         (imap-enable-exchange-bug-workaround): Removed.
452         (imap-debug): Removed -- doesn't seem very useful.
453
454         * mail-source.el (mail-source-fetch): Don't message if we're fetching
455         mail from a file, and the file doesn't exist.
456
457         * imap.el (imap-log): New convenience function used throughout instead
458         of repeating the same code all over the place.
459
460         * pop3.el (pop3-streaming-movemail): Return t for success.
461
462         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
463         .authinfo if we're using ssl connection.
464
465         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
466         already have if we're in a main Gnus `g' run.
467
468         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
469
470 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
471
472         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
473
474         * nnmh.el (nnmh-request-list-1): Bind `file'.
475
476         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
477         alias to set-process-query-on-exit-flag or process-kill-without-query.
478         (pop3-open-server): Use it.
479
480 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
481
482         * mail-source.el (mail-source-delete-crash-box): Always move the crash
483         box to the Incoming file.  Fixes mistake in previous checkin.
484
485         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
486         request loop (for debugging purposes) removed.
487
488         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
489         culprit is more visible.
490         (nnml-save-incremental-nov, nnml-open-incremental-nov)
491         (nnml-add-incremental-nov): New functions to do "incremental" nov
492         updates, where we just append to the end of the existing nov files
493         without reading/writing them in full.
494
495         * mail-source.el (mail-source-delete-crash-box): Really only check the
496         incoming files once in a while.
497
498         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
499
500         * mail-source.el (mail-source-delete-crash-box): Only check the
501         incoming files for deletion once per day to save a lot of file
502         accesses.
503
504         * pop3.el (pop3-logon): Fix up unbound variable typo.
505
506         * mail-source.el (pop3-streaming-movemail): Autoload.
507
508         * pop3.el (pop3-streaming-movemail): Respect
509         pop3-leave-mail-on-server.
510
511         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
512         retrieval.
513
514         * pop3.el (pop3-process-filter): Removed unused function.
515         (pop3-streaming-movemail, pop3-send-streaming-command)
516         (pop3-wait-for-messages, pop3-write-to-file)
517         (pop3-number-of-responses): New functions for streaming pop3
518         retrieval.
519
520         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
521         come from no known methods.
522         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
523         list.
524
525         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
526         message sizes.
527         (pop3-movemail): Use erase-buffer instead of looping and deleting
528         regions, which seems rather odd.
529
530         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
531         file once per `g' run.
532
533         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
534         directories.  This makes the draft queue directory work.
535
536         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
537         data from the backends, so that we only request the list of groups from
538         each method once.  This should speed things up considerably.
539
540         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
541         detect that it's not implemented.
542
543         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
544         we actually do recurse down into the tree, but don't stat all leaf
545         nodes.
546
547         * gnus-html.el (gnus-html-show-images): If there are no images to show,
548         then say so instead of bugging out.
549
550         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
551         files exist before trying to read them.
552
553         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
554         around <pre_int>.
555
556         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
557
558         * nnmh.el (nnmh-request-list-1): Optimize for speed.
559
560 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
561
562         * mm-util.el (mm-image-load-path): Just return the image directories,
563         not all directories in the path in addition to the image directories.
564         (mm-image-load-path): Maintain a cache of the image directories so that
565         the `g' command in Gnus doesn't have to stat dozens of directories each
566         time.
567
568         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
569         (gnus-html-wash-tags): Add a new `i' command to insert images.
570         (gnus-html-insert-image): New command and keystroke.
571         (gnus-html-redisplay-with-images): New command and keystroke.
572         (gnus-html-show-images): Renamed command.
573         (gnus-html-wash-tags): Remove more white space before <pre_int> image
574         spacers.
575         (gnus-html-wash-tags): Decode entities at the end, so that entities
576         inside the tags don't mess up the rest of the "parsing".
577
578         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
579         so that nnimap methods aren't agentized by default.  There's apparently
580         many problems related to agent/imap behaviour.
581
582         * gnus-art.el (gnus-article-copy-string): New command and key binding.
583
584         * gnus-html.el: Doc fix.
585
586 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
587
588         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
589         specifier-spec-list for Emacs 21.
590
591         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
592         glyph-width and glyph-height instead of display-graphic-p and
593         image-size; make avoidance of displaying small images work for XEmacs.
594
595         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
596         for XEmacs.
597
598         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
599         of symbol that holds plist data.
600         (gnus-process-plist): Remove plist of process after getting it.
601
602 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
603
604         * message.el (message-generate-hashcash): Change default to
605         'opportunistic if hashcash is installed.
606
607         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
608         (gnus-html-put-image): Only call image-size once, since it's somewhat
609         time-consuming on remote X servers.
610
611 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
612
613         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
614         type on data, not a file name.
615
616         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
617         window-pixel-edges for Emacs 21.
618
619         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
620         decoded contents.
621         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
622
623 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
624
625         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
626         group line format, since it isn't very interesting.
627
628         * gnus-agent.el (gnus-agent-short-article),
629         (gnus-agent-long-article): Increase values for these two variables,
630         since most people are likely to have more network connection and
631         storage than before.
632
633         * gnus.el (gnus-refer-article-method): Change default to 'current.
634         When referring an article, the common behaviour is to refer it from the
635         current select method, not the native select method.  The chances of
636         the native select method having the message in question is rather slim
637         these days.
638
639         * gnus-sum.el (gnus-auto-select-subject): Change default to
640         `unseen-or-unread'.  I think it's likely that most people want to
641         select an unseen article over a previously seen, but unread one.
642
643         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
644         means that in the article buffer none of the minor mode elements will
645         be shown, usually, and this is not desirable in most cases.
646
647         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
648         that commands like `d' (and the like) go to the next line in the
649         buffer, instead of the next unread article.  I think this is the
650         behaviour that is most natural for most users.
651         (gnus-single-article-buffer): Change default to nil, so that people can
652         have as many article buffers open as they have summary buffer.  I think
653         this is the most natural way for the groups to behave.
654
655         * message.el (message-generate-new-buffers): Change default to
656         `unsent', so that all new message buffers start their names with the
657         string "*unsent", and it's easier to find the buffers if you move from
658         them.
659
660 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
661
662         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
663         small. They're probably tracking images.
664         (gnus-html-wash-tags): Remove all <pre_int> place holders.
665         (gnus-html-rescale-image): Yet another try at getting the image sizing
666         right.
667
668         * nntp.el (nntp-request-set-mark): Refuse to do marks if
669         nntp-marks-file-name is nil.
670
671 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
672
673         * gnus-html.el (gnus-html-wash-tags)
674         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
675         Better logging.
676
677 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
678
679         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
680
681         * gnus-html.el (gnus-html-wash-tags): Check the value of
682         gnus-blocked-images in the summary buffer.
683
684 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
685
686         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
687
688 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
689
690         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
691         like "a", it seems like.
692         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
693         since it needs to be picked from the correct buffer.
694
695         * nnwfm.el: Removed.
696
697         * nnlistserv.el: Removed.
698
699 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
700
701         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
702         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
703
704 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
705
706         * nnkiboze.el: Removed.
707
708         * nndb.el: Removed.
709
710         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
711         alt text.
712         (gnus-html-rescale-image): Try to get the rescaling logic right for
713         images that are just wide and not tall.
714
715         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
716         overshadow variable bindings.
717
718 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
719
720         * gnus-html.el (gnus-html-wash-tags)
721         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
722         extra logging.
723
724 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
725
726         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
727         (gnus-max-image-proportion): New variable.
728         (gnus-html-rescale-image): New function.
729         (gnus-html-put-image): Rescale images.
730
731 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
732
733         Fix up some byte-compiler warnings.
734         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
735         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
736         (gnus-article-fill-cited-article, gnus-article-hide-citation)
737         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
738         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
739         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
740         (gnus-group-update-group): Use save-excursion and with-current-buffer.
741
742 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
743
744         * gnus-html.el (gnus-article-html): Decode contents by charset.
745
746 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
747
748         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
749         (gnus-html-frame-width, gnus-blocked-images)
750         * message.el (message-prune-recipient-rules): Add custom version.
751         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
752
753         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
754         functions.
755
756         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
757         gnus-process-get.
758
759 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
760
761         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
762         instead of lsub directly.
763
764 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
765
766         * nnwarchive.el: Removed.
767
768         * gnus-soup.el: Removed.
769
770         * nnsoup.el: Removed.
771
772         * nnultimate.el: Removed.
773
774         * gnus-html.el (gnus-blocked-images): New variable.
775
776         * message.el (message-prune-recipients): New function.
777         (message-prune-recipient-rules): New variable.
778
779         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
780         guess whether a long line is natural text or not.
781
782         * gnus-html.el (gnus-html-schedule-image-fetching): Use
783         gnus-process-plist and friends for compatibility.
784
785 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
786
787         * gnus-html.el: Require packages that define macros used in this file.
788         (gnus-article-mouse-face): Declare to silence byte-compiler.
789         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
790         process-get.
791         (gnus-html-put-image): Use plist-get to avoid getf.
792         (gnus-html-prefetch-images): Use with-current-buffer.
793
794 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
795
796         * gnus-ems.el: Provide compatibility functions for
797         gnus-set-process-plist.
798
799         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
800         header-line-format for XEmacs 21.4.
801
802         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
803         * gnus.el (gnus-valid-select-methods)
804         * message.el (message-send-mail-partially-limit)
805         * mm-decode.el (mm-text-html-renderer)
806         * mml.el (mml-insert-mime-headers-always)
807         * smiley.el (smiley-regexp-alist): Bump custom version.
808
809 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
810
811         * gnus-html.el: require mm-url.
812         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
813         with the url to `url'.
814         (gnus-html-wash-tags): Support cid: URLs/images.
815
816 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
817
818         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
819         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
820         bindings, as they aren't useful at all. `w' is moved to `W w'.
821
822         * gnus-move.el: Removed file, since it doesn't really work.
823
824         * gnus-html.el (gnus-article-html): Tell w3m that the input is
825         UTF-8. This seems to fix problems with some German web feeds.
826
827         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
828         at the top so that the proper colours are applied.
829
830         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
831         don't have dots in their names.
832
833         * gnus-art.el (gnus-article-view-part): Doc fix.
834
835         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
836         XEmacs-compatible.
837         (gnus-html-put-image): Don't do images on non-graphic displays.
838
839         * nnslashdot.el: Removed this unused backend.
840
841         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
842         actions.
843         (gnus-undo-register-1): Revert last change.
844
845         * gnus-group.el (gnus-group-completing-read): Protect against not
846         having completion-styles bound.
847
848         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
849         make broken recipients happier.
850
851         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
852
853         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
854         point parameter.
855
856         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
857
858         * gnus-group.el (gnus-group-completing-read): Add 'substring to
859         completion-styles for group selection.
860
861 2009-02-04  Andreas Schwab  <schwab@suse.de>
862
863         * gnus-score.el (gnus-score-string): Fix regex for matching extra
864         headers and regexp-quote the match if necessary.
865
866 2009-03-24  Miles Bader  <miles@gnu.org>
867
868         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
869         the blinking smiley.
870
871 2009-03-24  Simon Josefsson  <simon@josefsson.org>
872
873         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
874         blink smiley.
875
876 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
877
878         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
879         where the dribbel file lives exists.
880
881         * message.el (message-send-mail-partially-limit): Change the default to
882         nil, since most people don't want this.
883
884         * mm-url.el (mm-url-decode-entities): Also decode entities like
885         &#x3212.
886
887 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
888
889         * gnus-sum.el (gnus-summary-idna-message):
890         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
891         Hyperlink urls in docstrings with URL `...'.
892
893 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
894
895         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
896         functions.
897
898 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
899
900         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
901         say what the mouseover text should be.
902
903         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
904         version of the mm-w3m-safe-url-regexp variable to only download images
905         in the groups where we want that to happen.
906
907         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
908
909         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
910         easier debugging.
911         (gnus-article-beginning-of-window): Add kludge to allow spacing past
912         big pictures in the article buffer.
913
914         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
915         gnus-article-html.
916         (mm-text-html-renderer): gnus-article-html needs curl in addition to
917         w3m.
918
919         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
920
921 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
922
923         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
924         which doesn't exist.
925
926         * message.el (message-inhibit-ecomplete): New variable to allow some
927         function to inhibit ecomplete address storage.
928         (message-resend): Disable ecomplete message storage when resending
929         messages.
930
931         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
932
933 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
934
935         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
936         Save excursion while copying, moving, and deleting articles in order to
937         prevent the cursor from jumping to unforeseen place.
938
939 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
940
941         * lpath.el: No need to bind bookmark-current-buffer,
942         bookmark-yank-point and bookmark-make-record-function.
943
944 2010-08-17  Glenn Morris  <rgm@gnu.org>
945
946         * gnus-sync.el: Require gnus components whose functions are used.
947
948         * gnus-art.el (bookmark-make-record-function):
949         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
950         Declare for compiler.
951
952         * mm-url.el (mml-compute-boundary): Autoload.
953
954 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
955
956         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
957
958 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
959
960         Typo fix "hoo4a" -> "hook".
961
962         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
963
964 2010-08-14  Glenn Morris  <rgm@gnu.org>
965
966         * gnus-sync.el (gnus-sync): Fix defgroup version.
967
968 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
969
970         Doc fixes and keep unknown groups (ammended for nunion bug fix).
971
972         * gnus-sync.el: Fix docs.
973         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
974         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
975
976 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
977
978         Optimizations for gnus-sync.el.
979
980         * gnus-sync.el: Add docs about gnus-sync-backend
981         possibilities.
982         (gnus-sync-save): Remove unnecessary message.
983         (gnus-sync-read): Optimize and show what groups were skipped.
984
985 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
986
987         Minor bug fixes for gnus-sync.el.
988
989         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
990         read the sync on get-new-news.
991
992         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
993         quiet.
994
995         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
996
997 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
998
999         Make saving and restoring of hidden threads work with overlays.
1000         Patch applied by Ted Zlatanov.
1001
1002         * gnus-sum.el (gnus-hidden-threads-configuration)
1003         (gnus-restore-hidden-threads-configuration): Update to deal with text
1004         properties, rather than searching for a magic character.
1005
1006 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1007
1008         New gnus-sync.el library for synchronization of marks.
1009
1010         * gnus-sync.el: New library for synchronization of marks.
1011
1012         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1013         renamed from `gnus-registry-grep-in-list'.
1014
1015         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1016
1017         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1018
1019 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1020
1021         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1022         determining charset of text fails.
1023
1024 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1025
1026         * nnmail.el (nnmail-get-new-mail-1): Revert.
1027
1028         * nnml.el (nnml-active-number): Make sure names of newly created groups
1029         in nnml-group-alist are encoded.
1030
1031 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1032
1033         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1034         containing non-ASCII characters in active file for nnml back end.
1035
1036 2010-07-24  David Engster  <dengste@eml.cc>
1037
1038         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1039         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1040
1041 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1042
1043         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1044         tag (Bug#6654).
1045
1046 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1047
1048         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1049         the article buffer, not the summary buffer.
1050
1051 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1052
1053         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1054         Emacs 23 as well.
1055
1056 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1057
1058         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1059         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1060
1061 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1062
1063         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1064         Patch applied by Karl Fogel.
1065
1066         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1067         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1068
1069 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1070
1071         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1072         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1073         C-w still not working correctly from Article buffers; Thierry's
1074         patch to fix that will be applied after this.
1075
1076         * gnus-art.el (bookmark-make-record-function): New local variable.
1077
1078         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1079         article buffer.
1080         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1081
1082 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1083
1084         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1085         on changes in bookmark.el.
1086
1087 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1088
1089         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1090         `no-log' instead of message not to log prompt string.
1091
1092 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1093
1094         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1095         the *other* type of HTML form submission.
1096
1097 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1098
1099         * auth-source.el (auth-source-pick): If choice does not contain a
1100         questioned keyword, set the check to t.
1101
1102 2010-06-12  Romain Francoise  <romain@orebokech.com>
1103
1104         * gnus-util.el (gnus-date-get-time): Move up before first use.
1105
1106 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1107
1108         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1109         (gnus-article-edit-part): Bind it to make last part that is substituted
1110         or deleted visible.
1111         (gnus-mime-display-single): Buttonize part of which id equals to
1112         gnus-mime-buttonized-part-id.
1113
1114 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1115
1116         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1117         (gnus-dd-mmm): Use gnus-date-get-time.
1118         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1119         simplify logic.
1120         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1121         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1122
1123 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1124
1125         * auth-source.el (top): Autoload `secrets-list-collections',
1126         `secrets-create-item', `secrets-delete-item'.
1127         (auth-sources): Fix tag string.
1128         (auth-get-source, auth-source-retrieve, auth-source-create)
1129         (auth-source-delete): New defuns.
1130         (auth-source-pick): Rewrite in order to avoid 2 passes.
1131         (auth-source-forget-user-or-password): New parameter USERNAME.
1132         (auth-source-user-or-password): New parameters CREATE-MISSING and
1133         DELETE-EXISTING.  Retrieve password interactively, if needed.
1134
1135 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1136
1137         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1138         deleting unused directories when gnus-expert-user is t.
1139
1140 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1141
1142         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1143         for each temp file when gnus-article-browse-delete-temp is ask.
1144
1145 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1146
1147         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1148         Lisp calls to delete-backward-char by calls to delete-char.
1149
1150 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1151
1152         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1153
1154 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1155
1156         * password-cache.el (password-cache-remove): Fix docstring.
1157
1158 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1159
1160         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1161         article unless decoding article to be saved.
1162
1163 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1164
1165         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1166         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1167         generated within the mm-with-unibyte-current-buffer macro.
1168
1169 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1170
1171         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1172         to nil when we're in a mml-preview buffer and no group is selected.
1173
1174 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1175
1176         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1177         when catching the `C-g'.  Reported by "Leo".
1178
1179 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1180
1181         * message.el (message-forward-make-body-plain)
1182         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1183         multibyte-string-p.
1184
1185         * lpath.el: Revert.
1186
1187 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1188
1189         * message.el (message-forward-make-body-mml): Assume original message
1190         is multibyte string; error on unibyte.
1191         (message-forward-make-body-plain): Ditto; don't add excessive newline
1192         in body end.
1193
1194         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1195
1196 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1197
1198         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1199         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1200
1201 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1202
1203         * mm-extern.el (mm-extern-url): Don't use
1204         mm-with-unibyte-current-buffer.
1205         (mm-extern-cache-contents): Use with-current-buffer instead of
1206         save-excursion + set-buffer.
1207
1208 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1209
1210         * mm-util.el (mm-emacs-mule): Remove.
1211
1212 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1213
1214         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1215         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1216         change.
1217
1218 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1219
1220         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1221         bind the default value of enable-multibyte-characters to nil.
1222
1223 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1224
1225         * message.el (message-forward-make-body-plain)
1226         (message-forward-make-body-mml):
1227         Don't use mm-with-unibyte-current-buffer.
1228
1229 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1230
1231         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1232
1233 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1234
1235         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1236         (Bug#5592).
1237
1238 2010-05-07  Julien Danjou  <julien@danjou.info>
1239
1240         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1241         it to mm-pipe-part.
1242
1243         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1244         it is given.
1245
1246 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1247
1248         * binhex.el (binhex-decode-region-internal)
1249         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1250         (dns-query)
1251         * nnweb.el (nnweb-gmane-search)
1252         * pgg-parse.el (pgg-parse-armor)
1253         * pgg.el (pgg-verify-region)
1254         * sha1.el (sha1-string-external)
1255         * uudecode.el (uudecode-decode-region-internal)
1256         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1257         XEmacs.
1258
1259         * gnus-art.el (gnus-article-browse-html-parts)
1260         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1261         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1262         make-temp-file.
1263
1264         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1265         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1266         compiling.
1267
1268         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1269         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1270         XEmacs when compiling.
1271
1272         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1273         gnus-pick-mode-off-hook for XEmacs when compiling.
1274         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1275         gnus-binary-mode-off-hook for XEmacs when compiling.
1276
1277         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1278         nil if char-charset is not available.
1279
1280         * imap.el (imap-disable-multibyte)
1281         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1282         macros.
1283
1284         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1285         instead of encode-coding-string.
1286
1287         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1288         'xemacs) instead of mm-emacs-mule to switch function definitions.
1289         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1290
1291         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1292         bind temporary-file-directory for XEmacs;
1293         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1294         timer-set-function for XEmacs 21.4 and SXEmacs;
1295         bind timer-list for XEmacs 21.4 and SXEmacs;
1296         fbind char-charset and find-charset-region for non-Mule XEmacs;
1297         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1298         encode-coding-region and encode-coding-string for XEmacs having no
1299         file-coding feature.
1300
1301 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1302
1303         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1304
1305 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1306
1307         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1308         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1309
1310 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1311
1312         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1313         alias `jka-compr-delete-temp-file' no longer exists.
1314
1315 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1316
1317         Use define-minor-mode in Gnus where applicable.
1318         * mml.el (mml-mode): Use define-minor-mode.
1319         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1320         (gnus-undo-mode): Use define-minor-mode.
1321         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1322         (gnus-dead-summary-mode): Use define-minor-mode.
1323         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1324         Initialize in declaration.
1325         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1326         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1327         (gnus-mailing-list-mode): Use define-minor-mode.
1328         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1329         (gnus-draft-mode): Use define-minor-mode.
1330         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1331         (gnus-dired-mode): Use define-minor-mode.
1332
1333 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1334
1335         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1336         handles on recursive mml-to-mime translation and check them for
1337         boundary delimiter collisions.  Reported by Greg Troxel.
1338
1339 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1340
1341         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1342
1343 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1344
1345         * mm-util.el (mm-find-buffer-file-coding-system):
1346         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1347
1348 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1349
1350         * message.el (message-generate-headers): Record insertion of optional
1351         headers as well.  Otherwise the check to prevent repeated insertion of
1352         optional headers is a no-op.
1353
1354 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1355
1356         * smime.el: Don't mention CVS.
1357
1358         * nnrss.el (nnrss-fetch): Don't mention CVS.
1359
1360         * nnir.el: Don't mention CVS.
1361
1362 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1363
1364         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1365
1366 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1367
1368         * lpath.el: Fbind bookmark-default-handler,
1369         bookmark-get-bookmark-record, bookmark-make-record-default,
1370         bookmark-prop-get for Emacs <23 and XEmacs.
1371
1372 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1373
1374         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1375         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1376         Use with-current-buffer to silence the byte-compiler.
1377         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1378         bother to require `gnus'.
1379         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1380
1381 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1382
1383         * gnus-sum.el (gnus-summary-bookmark-make-record)
1384         (gnus-summary-bookmark-jump): New functions.
1385         (gnus-summary-mode): Setup bookmark support.
1386
1387 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1388
1389         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1390         if set.
1391
1392 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1393
1394         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1395         gnus-article-browse-html-save-cid-image; make it work recursively for
1396         forwarded messages as well.
1397         (gnus-article-browse-html-parts): Work when prefix arg is given.
1398         (gnus-article-browse-html-article): Doc fix.
1399
1400 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1401
1402         * message.el (message-default-mail-headers):
1403         (message-default-headers): Carry the value mail-default-headers over
1404         into message-default-mail-headers, rather than message-default-headers.
1405
1406 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1407
1408         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1409         charset.
1410
1411         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1412         charset into the <meta> tag when the article is encoded to utf-8.
1413
1414 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1415
1416         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1417         directories as well.
1418         (gnus-article-browse-html-parts): Work for images that do not specify
1419         file names; delete temp directory when quitting; insert header at the
1420         right place; use file: scheme for image files.
1421
1422 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1423
1424         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1425         (gnus-article-browse-html-parts): Use it to make temporary cid image
1426         files in addition to html file so that browser may display them.
1427
1428 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1429
1430         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1431
1432 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1433
1434         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1435
1436 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1437
1438         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1439         about Secret Service API sources.  Improve Customize options.
1440         (auth-source-pick): Change to accept any number of search parameters.
1441         Implement fallbacks iteratively, not recursively.  Add scoring on the
1442         second pass and sort by score.  Call Secret Service API when needed.
1443         (auth-source-user-or-password): Use it.  Call Secret Service API
1444         directly when needed to get the user name and the password.
1445
1446 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1447
1448         * message.el (message-interactive): Doc fix.
1449         (message-qmail-inject-args): Reflow.
1450         (message-kill-to-signature): Fix typo in docstring.
1451
1452         * smiley.el (smiley-buffer): Fix typo in docstring.
1453
1454 2010-03-24  Glenn Morris  <rgm@gnu.org>
1455
1456         * mail-source.el (gnus-message): Declare.
1457         (mail-source-delete-old-incoming): Require gnus-util.
1458
1459 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1460
1461         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1462
1463         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1464
1465         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1466         password-cache's default if it is not bound.
1467         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1468         password-cache-expiry's default if it is not bound.
1469
1470         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1471         available in Emacs 21.
1472
1473         * lpath.el: Suppress compiler warnings for:
1474         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1475         XEmacs;
1476         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1477         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1478         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1479
1480 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1481
1482         * auth-source.el (auth-sources): Fix up definition so extra parameters
1483         are always inline.
1484
1485 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1486
1487         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1488         wasn't updated after mismatch.  Clear cached mailbox info correctly
1489         when uidvalidity changes.
1490         (nnimap-group-prefixed-name): New function to avoid some code
1491         duplication.
1492         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1493         (nnimap-request-group): Use it.
1494         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1495         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1496         with many imap folders.  This is done by caching the group status from
1497         the imap server persistently in a group parameter `imap-status'.  (This
1498         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1499         but not persistently, so every Gnus startup was still very slow.)
1500
1501 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1502
1503         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1504         delete the extra newline.  Otherwise editing of :string and :number
1505         types don't work.
1506
1507 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1508
1509         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1510         secrets.el dependency.
1511         (auth-sources): Add optional user name.  Add secrets.el configuration
1512         choice (unused right now).
1513
1514 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1515
1516         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1517         `gnus-registry-install-shortcuts' fill in the functions.
1518
1519         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1520         warnings.
1521         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1522         (gnus-registry-install-shortcuts): Populate and use it in a
1523         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1524
1525 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1526
1527         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1528         In-place substitutions for the group name encoding/decoding.
1529         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1530         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1531         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1532         (nnimap-update-unseen, nnimap-request-list)
1533         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1534         (nnimap-request-set-mark, nnimap-split-to-groups)
1535         (nnimap-split-articles, nnimap-request-newgroups)
1536         (nnimap-request-create-group, nnimap-request-accept-article)
1537         (nnimap-request-delete-group, nnimap-request-rename-group)
1538         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1539         `encoded-mbx' for consistency.
1540         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1541         variable `imap-current-mailbox'.
1542
1543         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1544         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1545
1546 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1547
1548         * pop3.el (pop3-display-message-size-flag): Display message size byte
1549         counts during POP3 download.
1550         (pop3-movemail): Use it.
1551         (pop3-list): Implement listing of available messages.
1552
1553 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1554
1555         * nnir.el (nnir-get-article-nov-override-function): New function to
1556         override the normal NOV retrieval.
1557         (nnir-retrieve-headers): Use it.
1558
1559 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1560
1561         * auth-source.el (netrc-machine-user-or-password): Autoload.
1562
1563 2010-03-19  Glenn Morris  <rgm@gnu.org>
1564
1565         Stop message.el from loading about 40 libraries it doesn't always need.
1566         The general approach is to autoload rather than require, and to
1567         require in the specific functions rather than the file.  (Bug#5642)
1568
1569         * gmm-utils.el: Don't require wid-edit.
1570         (widget-create-child-value, widget-convert, widget-default-get):
1571         Autoload.
1572
1573         * gnus-util.el: Don't require time-date, netrc.
1574         (message-fetch-field, gnus-group-name-decode): Declare rather than
1575         autoloading.
1576         (gnus-fetch-field): Require message.
1577         (gnus-decode-newsgroups): Require gnus-group.
1578
1579         * ietf-drums.el: Don't require time-date.
1580
1581         * message.el: Don't require hashcash, canlock, ecomplete.
1582         Do require mail-utils.  Require nnheader only when compiling.
1583         (smtpmail-default-smtp-server): Remove declaration.
1584         (message-send-mail-function): Check smtpmail-default-smtp-server
1585         is bound rather than requiring smtpmail.
1586         (message-auto-save-directory, message-insert-signature): Use
1587         expand-file-name rather than nnheader-concat.
1588         (nnheader-insert-file-contents): Autoload.
1589         (hashcash-wait-async): Declare.
1590         (message-send-mail): Only call gnus-setup-posting-charset if
1591         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1592         (message-send-mail-with-sendmail): Require sendmail.
1593         (canlock-password, canlock-password-for-verify): Declare.
1594         (message-canlock-password): Require canlock.
1595         (nnheader-get-report): Autoload.
1596         (gnus-setup-posting-charset): Declare.
1597         (message-send-news): Require gnus-msg.
1598         (message-make-references, message-make-in-reply-to): Use mail-header-id
1599         rather than the alias mail-header-message-id.
1600         (ecomplete-add-item, ecomplete-save): Declare.
1601         (message-put-addresses-in-ecomplete): Require ecomplete.
1602         (ecomplete-display-matches): Autoload.
1603
1604         * mm-decode.el: Don't require mailcap, gnus-util.
1605         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1606         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1607         Autoload.
1608         (mailcap-mime-extensions): Declare.
1609
1610         * mm-encode.el: Don't require mailcap.
1611         (mailcap-extension-to-mime): Autoload.
1612
1613         * mml-sec.el: Don't require password-cache.
1614
1615         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1616         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1617         (mml-minibuffer-read-type): Require mailcap.
1618         (mml-preview): Require gnus-msg.
1619
1620         * mml1991.el: Require password-cache.
1621         (password-cache-expiry): Remove declaration.
1622
1623         * mml2015.el: Require password-cache.
1624         (password-cache-expiry): Remove declaration.
1625
1626         * nneething.el (mailcap): Require mailcap.
1627
1628         * nnheader.el (declare-function): Add compatibility stub.
1629         (message-remove-header): Declare rather than autoload.
1630         (nnheader-replace-header): Require message.
1631
1632         * nnimap.el (declare-function): Add compatibility stub.
1633         (netrc-parse, netrc-machine-user-or-password): Declare.
1634         (nnimap-open-connection): Require netrc.
1635
1636         * nntp.el (declare-function): Add compatibility stub.
1637         (netrc-parse, netrc-machine, netrc-get): Declare.
1638         (nntp-send-authinfo): Require netrc.
1639
1640         * rfc2047.el: Don't require qp.
1641         (quoted-printable-encode-region, quoted-printable-decode-string):
1642         Autoload.
1643
1644         * sieve-mode.el: Don't require easymenu.
1645         (easy-menu-add-item): Autoload it.
1646
1647         * spam-stat.el (time-to-number-of-days): Autoload it.
1648
1649 2010-03-19  Glenn Morris  <rgm@gnu.org>
1650
1651         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1652
1653 2010-03-18  Glenn Morris  <rgm@gnu.org>
1654
1655         * hashcash.el (declare-function): Remove duplicate definition.
1656
1657 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1658
1659         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1660         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1661         value if any backslash escapes).
1662
1663 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1664
1665         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1666         if it is available.  (bug#5647)
1667
1668         * lpath.el: Suppress compiler warning for coding-system-from-name for
1669         Emacs 21 and XEmacs.
1670
1671 2010-03-14  Juri Linkov  <juri@jurta.org>
1672
1673         * hmac-def.el:
1674         * hmac-md5.el:
1675         * netrc.el: Fix keywords.
1676
1677 2010-02-26  Glenn Morris  <rgm@gnu.org>
1678
1679         * message.el (message-send-mail-function): Change the default, so that
1680         it inherits from a customized send-mail-function.  (Bug#5643)
1681
1682 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1683
1684         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1685         shell-command-to-string signals an error (bug#5299).
1686
1687 2010-02-24  Glenn Morris  <rgm@gnu.org>
1688
1689         * message.el (message-smtpmail-send-it)
1690         (message-send-mail-with-mailclient): Doc fixes.
1691
1692 2010-02-16  Glenn Morris  <rgm@gnu.org>
1693
1694         * message.el (message-default-mail-headers): Change the default value
1695         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1696
1697 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1698
1699         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1700         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1701
1702 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1703
1704         * time-date.el (date-to-time): Doc fix (Bug#5408).
1705
1706 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1707
1708         * message.el (message-mail): Just pass yank-action on to message-setup.
1709         (message-setup): Handle (FUN . ARGS) form of yank-action.
1710         (message-with-reply-buffer, message-widen-reply)
1711         (message-yank-original): Handle non-buffer values of
1712         message-reply-buffer (Bug#4080).
1713         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1714
1715 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1716
1717         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1718         Fix typo in docstring.
1719
1720 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1721
1722         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1723         response.
1724
1725 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1726
1727         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1728
1729         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1730
1731         * message.el (message-check-news-header-syntax): Protect against a
1732         string that `rfc822-addresses' returns when parsing fails.
1733
1734 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1735
1736         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1737         (gnus-previous-char-property-change): New functions.
1738
1739         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1740
1741 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1742
1743         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1744         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1745
1746 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1747
1748         * message.el (message-exchange-point-and-mark): Rework last change to
1749         avoid using optional arg of exchange-point-and-mark, for backward
1750         compatibility.
1751
1752 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1753
1754         * message.el (message-exchange-point-and-mark): Call
1755         exchange-point-and-mark with an argument rather than setting
1756         mark-active by hand (Bug#5175).
1757
1758 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1759
1760         * nntp.el (nntp-service-to-port): Work for service expressed with
1761         numeric string; replace [:digit:] with [0-9] for XEmacs.
1762
1763 2009-12-17  Glenn Morris  <rgm@gnu.org>
1764
1765         * gnus-group.el (gnus-bug-group-download-format-alist):
1766         Change emacs entry to debbugs.gnu.org.  Bump :version.
1767
1768 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1769
1770         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1771
1772 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1773
1774         * message.el (message-info): Explain why we use `Info-goto-node'.
1775
1776 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1777
1778         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1779
1780 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1781
1782         * message.el (message-completion-in-region): New compatibility function.
1783         (message-expand-group): Use it.
1784
1785 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1786
1787         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1788         with no unread article should be listed if the 2nd arg `predicate' is
1789         given.
1790
1791 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1792
1793         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1794
1795 2009-11-29  Juri Linkov  <juri@jurta.org>
1796
1797         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1798         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1799         on `gnus-recenter'. (Bug#4698, Bug#4981)
1800
1801 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1802
1803         * sha1.el (sha1-string-external): default-directory "/" in case
1804         otherwise non-existent.  process-connection-type pipe for touch of
1805         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1806
1807 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1808
1809         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1810         it's comms related and sgml-mode.el has "comm" on that basis too.
1811
1812 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1813
1814         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1815         containing tspecial characters if they have been already quoted.
1816
1817 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1818
1819         * dns-mode.el (auto-mode-alist): Purecopy string.
1820
1821 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1822
1823         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1824
1825 2009-10-24  Glenn Morris  <rgm@gnu.org>
1826
1827         * gnus-art.el (help-xref-stack-item): Define for compiler.
1828
1829 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1830
1831         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1832
1833 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1834
1835         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1836
1837 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1838
1839         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1840         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1841
1842 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1843
1844         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1845         (gnus-overlays-in): New alias to overlays-in.
1846
1847         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1848         gnus-overlay-get, and gnus-delete-overlay.
1849         (gnus-summary-show-thread): Make it work as well for systems in which
1850         next-single-char-property-change is not available.
1851         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1852
1853         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1854         (gnus-overlay-get): New alias to extent-property.
1855         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1856
1857         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1858         SXEmacs.
1859
1860         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1861         SXEmacs.
1862
1863 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1864
1865         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1866
1867 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1868
1869         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1870         and XEmacs that don't have `remove-overlays'.
1871
1872 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1873
1874         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1875         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1876         selective display.  Use overlays instead.
1877
1878 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1879
1880         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1881
1882 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1883
1884         * spam-stat.el (spam-stat-load): Fix typo in message.
1885
1886 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
1887
1888         * dig.el (dig-invoke): Fix typo in docstring.
1889         (query-dig): Reflow docstring.
1890
1891 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1892
1893         * gnus-art.el (gnus-article-encrypt-body):
1894         * message.el (message-check-recipients):
1895         * mm-util.el (mm-codepage-setup):
1896         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1897         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1898
1899 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1900
1901         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1902         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1903         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1904         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1905         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1906
1907 2009-09-21  Kevin Ryde  <user42@zip.com.au>
1908
1909         * dig.el: Add "Keywords: comm", as per net-utils.el.
1910
1911 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1912
1913         * dig.el (dig-mode): Use define-derived-mode.
1914
1915 2009-09-19  Glenn Morris  <rgm@gnu.org>
1916
1917         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
1918
1919 2009-09-18  Glenn Morris  <rgm@gnu.org>
1920
1921         * gnus-diary.el (gnus-diary-check-message):
1922         * message.el (message-insert-formatted-citation-line):
1923         * nnbabyl.el (top-level):
1924         * nndiary.el (nndiary-schedule):
1925         Fix typos in condition-case handlers.
1926
1927 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1928
1929         * gnus-art.el (gnus-article-edit-part): Work for the buffer
1930         configuration that provides the sole article window in a frame;
1931         position point correctly after deleting a part.
1932
1933 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
1934
1935         * spam.el (spam-unregister-on-reregister): Add boolean variable.
1936         (spam-resolve-registrations-routine): Use it to unregister articles
1937         that change status.
1938
1939 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1940
1941         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
1942         with XEmacs.
1943         (parse-time-string-chars): Use it.
1944
1945 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
1946
1947         * imap.el (imap-interactive-login): Better messages.
1948         (imap-open): Fix bug with renamed buffer on reconnect.
1949         (imap-authenticate): Add buffer-local imap-last-authenticator variable
1950         for easier debugging and cleaner code.  On successful (guessed based on
1951         server capabilities) secondary authentication, set imap-state
1952         correctly.
1953         (imap-last-authenticator): Define imap-last-authenticator as a variable
1954         to avoid warnings.
1955
1956 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1957
1958         * nnrss.el (nnrss-request-article): Remove binding of
1959         default-enable-multibyte-characters that has gotten needless by
1960         the 2007-07-13 change in rfc2047-encode-message-header.
1961
1962         * mml.el (mml-insert-multipart): Error on the message header.
1963         (mml-insert-part): Error on the message header; position point at
1964         the end of a MIME tag.
1965
1966 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1967
1968         * time-date.el (autoload): Expand define-obsolete-function-alias into
1969         defalias and make-obsolete for old Emacsen that Gnus supports.
1970         (with-no-warnings): Define it for old Emacsen.
1971         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
1972         is available.
1973         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
1974         float-time is available; suppress compile warning for time-to-seconds.
1975
1976         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
1977         (gnus-float-time): Alias to float-time if it exists.
1978
1979         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
1980         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
1981         float-time is available; suppress compile warning for time-to-seconds.
1982
1983         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
1984         XEmacs.
1985
1986 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
1987
1988         * imap.el (imap-message-map): Docstring fix.
1989
1990 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1991
1992         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
1993         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
1994         Add the optional argument `encoding' that overrides the default.
1995
1996         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
1997         mm-encode-buffer.
1998
1999 2009-09-04  Glenn Morris  <rgm@gnu.org>
2000
2001         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2002         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2003         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2004         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2005         * mm-util.el (mm-with-unibyte-current-buffer)
2006         (mm-find-buffer-file-coding-system):
2007         * yenc.el (yenc-decode-region): Use default-value rather than
2008         default-enable-multibyte-characters.
2009
2010 2009-09-03  Glenn Morris  <rgm@gnu.org>
2011
2012         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2013         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2014         than default-enable-multibyte-characters.
2015
2016 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2017
2018         * gnus-art.el (gnus-article-read-summary-keys):
2019         Fix gnus-buffer-configuration's value temporarily used.
2020
2021 2009-09-02  Glenn Morris  <rgm@gnu.org>
2022
2023         * gnus-util.el (gnus-float-time): New function.
2024         * gnus-delay.el (gnus-delay-article):
2025         * gnus-sum.el (gnus-thread-latest-date):
2026         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2027         * nnspool.el (nnspool-request-newgroups):
2028         Use gnus-float-time rather than time-to-seconds.
2029         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2030
2031         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2032         (gnus-header-subject-face, gnus-header-newsgroups-face)
2033         (gnus-header-name-face, gnus-header-content-face):
2034         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2035         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2036         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2037         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2038         (gnus-cite-face-11):
2039         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2040         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2041         (gnus-server-closed-face, gnus-server-denied-face)
2042         (gnus-server-offline-face):
2043         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2044         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2045         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2046         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2047         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2048         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2049         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2050         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2051         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2052         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2053         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2054         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2055         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2056         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2057         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2058         (gnus-summary-high-undownloaded-face)
2059         (gnus-summary-low-undownloaded-face)
2060         (gnus-summary-normal-undownloaded-face)
2061         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2062         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2063         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2064         (gnus-splash-face):
2065         * message.el (message-header-to-face, message-header-cc-face)
2066         (message-header-subject-face, message-header-newsgroups-face)
2067         (message-header-other-face, message-header-name-face)
2068         (message-header-xheader-face, message-separator-face)
2069         (message-cited-text-face, message-mml-face):
2070         * sieve-mode.el (sieve-control-commands-face)
2071         (sieve-action-commands-face, sieve-test-commands-face)
2072         (sieve-tagged-arguments-face):
2073         * spam.el (spam-face):
2074         Mark face aliases with "-face" in the name as obsolete.
2075
2076 2009-09-01  Glenn Morris  <rgm@gnu.org>
2077
2078         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2079         than goto-line.
2080
2081 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2082
2083         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2084         Don't move point if the command is invoked inside the message header.
2085
2086 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2087
2088         * imap.el (imap-send-command): Simplify.
2089         (imap-wait-for-tag): point-max -> buffer-size.
2090
2091 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2092
2093         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2094         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2095         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2096         * nnir.el (nnir-swish-e-index-file):
2097         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2098         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2099         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2100         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2101         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2102         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2103
2104 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2105
2106         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2107         Don't save excursion.
2108
2109 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2110
2111         * nnheader.el (nnheader-find-file-noselect):
2112         * mm-util.el (mm-insert-file-contents):
2113         Use (default-value 'major-mode) instead of default-major-mode.
2114
2115 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2116
2117         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2118
2119 2009-08-26  Glenn Morris  <rgm@gnu.org>
2120
2121         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2122         than placing in files.el.
2123
2124 2009-08-25  Glenn Morris  <rgm@gnu.org>
2125
2126         * nnir.el (top-level): Don't require cl at run-time.
2127         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2128         Replace cl-function substitute with gnus-replace-in-string.
2129         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2130         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2131         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2132         simplified expansions.
2133
2134 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2135
2136         * dig.el (dig): Add autoload cookie.
2137
2138 2009-08-22  Glenn Morris  <rgm@gnu.org>
2139
2140         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2141         goto-line.
2142
2143 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2144
2145         * parse-time.el (parse-time-string-chars): Save match data.
2146
2147 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2148
2149         * parse-time.el (parse-time-string-chars): Compute using character
2150         classes, to handle non-ascii characters (Bug#3190).
2151
2152 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2153
2154         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2155
2156         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2157         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2158         (gnus-mm-display-part, gnus-mime-display-single)
2159         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2160         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2161
2162         * gnus-sum.el
2163         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2164         (gnus-summary-move-article): Add expirable mark to articles copied or
2165         moved to group that has auto-expire turned on if the option is non-nil.
2166
2167 2009-07-24  Glenn Morris  <rgm@gnu.org>
2168
2169         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2170         Fix typo.  (Bug#3903)
2171
2172 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2173
2174         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2175         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2176         that should not be used for draft articles.
2177         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2178         that has no concern in minor mode keys.
2179         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2180         Abolish.
2181
2182 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2183
2184         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2185         article without making inquiry to a user for unknown encoding.
2186
2187         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2188         (nnmaildir--scan): Assume i-node and device number that file-attributes
2189         returns might be cons-cell.
2190
2191         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2192
2193         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2194
2195 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2196
2197         * auth-source.el: Remove docs now in auth.texi.  Don't use
2198         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2199         `auth-source-hide-passwords' and use them.
2200
2201 2009-07-15  Glenn Morris  <rgm@gnu.org>
2202
2203         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2204
2205 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2206
2207         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2208         excessive whitespace from the default values of title and description.
2209
2210 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2211
2212         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2213         mail-fetch-field to fetch Content-Description header in order to
2214         exclude newlines.
2215
2216 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2217
2218         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2219         format used by GnuPG 2.0.11.
2220
2221 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2222
2223         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2224         to deleted part.
2225
2226 2009-05-30  David Engster  <dengste@eml.cc>
2227
2228         * nnmairix.el: Remove old documentation in the commentary block.
2229         (nnmairix-request-group): Do not update active file for nnml back ends.
2230         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2231         end so that overview files are ignored.
2232         (nnmairix-update-groups): Make updating the groups more robust by using
2233         marks.
2234         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2235         with dollar characters in message-id.
2236
2237 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2238
2239         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2240         2008-12-25 in dns.el.
2241
2242 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2243
2244         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2245         could happen if the text is only composed of spaces and/or tabs.
2246
2247 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2248
2249         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2250         when sending a queued message to avoid extra mml tags.
2251
2252 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2253
2254         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2255
2256 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2257
2258         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2259         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2260         rmail-toggle-header for XEmacs;
2261         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2262
2263 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2264
2265         * gnus-dired.el: Remove autoload for gnus-setup-message.
2266         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2267         displaying Gnus logo; always use compose-mail.
2268
2269 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2270
2271         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2272
2273 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2274
2275         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2276         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2277         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2278         available.
2279         (gnus-nocem-epg-verify): New function.
2280
2281 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2282
2283         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2284
2285 2009-02-15  Glenn Morris  <rgm@gnu.org>
2286
2287         * gnus-util.el (rmail-insert-rmail-file-header)
2288         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2289         autoloads.
2290         (rmail-default-rmail-file): Remove unnecessary declaration.
2291         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2292
2293 2009-02-14  Glenn Morris  <rgm@gnu.org>
2294
2295         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2296         variable (only used in gnus-util, which declares it anyway).
2297         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2298         which was only needed by gnus-art (changed to not use it any more).
2299         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2300         only used in gnus-util, which autoloads it itself.
2301         (rmail-update-summary): Fix autoload.
2302
2303         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2304         rather than rmail-output-to-rmail-file.
2305
2306 2009-02-07  Glenn Morris  <rgm@gnu.org>
2307
2308         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2309         autoload of function that no longer exists.
2310         (rmail-toggle-header): Declare.
2311         (message-forward-rmail-make-body): Handle mbox Rmail.
2312
2313 2009-01-31  Glenn Morris  <rgm@gnu.org>
2314
2315         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2316         2009-01-09 change.
2317
2318 2009-01-31  Dave Love  <fx@gnu.org>
2319
2320         * imap.el (imap-fetch-safe): Bind debug-on-error.
2321         (imap-debug): Add imap-fetch-safe.
2322
2323 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2324
2325         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2326         (auth-source-forget-all-cached): New convenience function.
2327         (auth-source-user-or-password): Accept list of modes or a single mode.
2328
2329         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2330         auth-source modes.
2331
2332         * netrc.el (netrc-machine-user-or-password): Use list of
2333         auth-source modes.
2334
2335         * nnimap.el (nnimap-open-connection): Use list of
2336         auth-source modes.
2337
2338         * nntp.el (nntp-send-authinfo): Use list of
2339         auth-source modes.
2340
2341 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2342
2343         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2344         now.
2345
2346 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2347
2348         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2349         coding system in XEmacs; add a workaround for XEmacs.
2350
2351         * lpath.el: Fbind coding-system-aliasee.
2352
2353 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2354
2355         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2356         of current-language-environment.
2357
2358 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2359
2360         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2361         available at runtime.
2362
2363 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2364
2365         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2366
2367 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2368
2369         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2370         the greatest positive fixnum value doesn't work under an XEmacs with
2371         bignum support; use the most-positive-fixnum constant instead,
2372         available since Emacs 21.1 with cl and XEmacs 21.1.
2373
2374 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2375
2376         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2377         XEmacs gets not to work.
2378
2379 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2380
2381         * mm-util.el (mm-coding-system-priorities): Allow the value like
2382         "Japanese (UTF-8)" of current-language-environment.
2383
2384 2009-01-09  Glenn Morris  <rgm@gnu.org>
2385
2386         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2387         with last-command-event.
2388
2389 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2390
2391         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2392         in the doc string.
2393
2394         * message.el (message-fix-before-sending): Amend comment.
2395
2396 2009-01-08  Dave Love  <fx@gnu.org>
2397
2398         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2399
2400 2009-01-07  David Engster  <dengste@eml.cc>
2401
2402         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2403         simplified server definitions by converting it via
2404         gnus-server-to-method.
2405
2406 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2407
2408         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2409         parameter's operands.
2410
2411 2009-01-06  David Engster  <dengste@eml.cc>
2412
2413         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2414         primary select method (for gnus-group-mark-article-as-read).
2415
2416 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2417
2418         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2419         `(gnus)Face', not `(gnus)X-Face'.
2420
2421 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2422
2423         * mm-util.el (mm-ucs-to-char): New function.
2424
2425         * mm-url.el (mm-url-decode-entities): Use it.
2426
2427         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2428         unicode-to-char.
2429
2430 2009-01-05  Dave Love  <fx@gnu.org>
2431
2432         * time-date.el: Require cl for `declare'.
2433
2434 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2435
2436         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2437         Dave Love.
2438
2439 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2440
2441         * message.el (message-fix-before-sending): Add `eight-bit' to
2442         illegible-text check.
2443
2444 2009-01-03  Michael Olson  <mwolson@gnu.org>
2445
2446         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2447         `headers' is nil.  This can occur if the IMAP server does not have
2448         permissions to read messages from a folder, but can write new messages
2449         to the folder.
2450         (nnimap-request-article-part): Do not insert `data' if it is nil.
2451
2452         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2453         characters which will confuse `read', so skip past them.
2454
2455 2009-01-01  Dave Love  <fx@gnu.org>
2456
2457         * imap.el (imap-string-to-integer): Fix typo.
2458         (imap-fetch-safe): New function.
2459         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2460
2461         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2462
2463         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2464         (imap-parse-greeting): Fix doc strings.
2465         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2466         (imap-parse-flag-list): Make messages unique.
2467         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2468
2469         * nnimap.el: Fix author email.
2470         (nnimap-split-rule): Add FIXME comment.
2471         (nnimap-debug): Fix doc string.
2472
2473 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2474
2475         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2476
2477 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2478
2479         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2480         nslookup if resolv.conf isn't available.
2481         (dns-query): Rename from query-dns.
2482         (dns-query-cached): Rename from query-dns-cached.
2483
2484 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2485
2486         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2487         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2488         to check if those variables exist (first appeared in Emacs 18.50).
2489
2490 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2491
2492         * mm-util.el (mm-line-number-at-pos): New function.
2493
2494         * spam-report.el (spam-report-process-queue): Use it.
2495
2496 2008-12-24  David Engster  <dengste@eml.cc>
2497
2498         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2499         parameters that haven't existed as variables as buffer-local variables.
2500
2501 2008-12-23  Dave Love  <fx@gnu.org>
2502
2503         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2504         cadar.
2505
2506         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2507         imap-starttls-p.
2508         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2509
2510 2008-12-22  Dave Love  <fx@gnu.org>
2511
2512         * imap.el: Fix author email.  Doc fixes.
2513         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2514         reply.
2515
2516 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2517
2518         * spam-report.el (spam-report-gmane-max-requests): New constant.
2519         (spam-report-gmane-wait): New variable.
2520         (spam-report-gmane-ham, spam-report-gmane-spam)
2521         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2522         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2523         the server.
2524
2525         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2526         Add explanations.
2527
2528         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2529         nnheader-accept-process-output and nnheader-read-timeout if available.
2530         (pop3-movemail): Use it.
2531
2532         * message.el (message-check-news-body-syntax): Fix signature check if
2533         there's an attachment.
2534
2535 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2536
2537         * mm-util.el: Add comments to the mm- emulating functions.
2538
2539 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2540
2541         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2542         by Stephen Berman <stephen.berman@gmx.net>.
2543
2544 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2545
2546         * mm-util.el (mm-substring-no-properties): New function.
2547         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2548         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2549         (mm-string-to-multibyte): Doc fix.
2550
2551         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2552
2553 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2554
2555         * mml.el (mml-attach-file): Strip text properties from file name.
2556         (Bug#1574)
2557
2558 2008-12-16  Glenn Morris  <rgm@gnu.org>
2559
2560         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2561
2562 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2563
2564         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2565         knows since the charset specified might be a bogus alias that
2566         mm-charset-synonym-alist provides.
2567
2568 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2569
2570         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2571         "ISO_8859-1".
2572
2573         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2574
2575 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2576
2577         * mm-util.el (mm-charset-eval-alist):
2578         Define it before mm-charset-to-coding-system.
2579         (mm-charset-to-coding-system): Add optional argument `silent';
2580         define it before mm-charset-override-alist.
2581         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2582         default value if it can be used in Emacs currently running;
2583         silence mm-charset-to-coding-system.
2584
2585 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2586
2587         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2588         `allow-override' which says whether to use `mm-charset-override-alist'.
2589         (rfc2047-decode-encoded-words): Use it.
2590
2591         * mm-util.el (mm-charset-override-alist): Fix custom type;
2592         add `(gb2312 . gbk)' to choices.
2593
2594 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2595
2596         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2597         fast.
2598
2599         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2600
2601         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2602
2603 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2604
2605         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2606         on links.
2607
2608         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2609
2610 2008-12-03  Lute Kamstra  <lute@gnu.org>
2611
2612         * sha1.el: Remove leading * from docstrings of defcustoms,
2613         deffaces, defconsts and defuns.
2614
2615 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2616
2617         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2618         users' addresses that don't have domain parts.
2619         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2620         rather than message-narrow-to-head since there will be the message
2621         header separator.
2622
2623 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2624
2625         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2626         since the result is inserted in a unibyte buffer anyway.
2627         (nnimap-demule-use-string-to-multibyte): Remove.
2628         (nnimap-demule): Alias it to mm-string-to-multibyte.
2629
2630 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2631
2632         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2633         variable for debugging bug#464 and bug#1174.
2634         (nnimap-demule): Use it.
2635
2636 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2637
2638         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2639         score calculation correctly.
2640
2641 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2642
2643         * message.el (message-send-mail): Just set the buffer to unibyte
2644         rather than use mm-with-unibyte-current-buffer which does a lot more.
2645         (message-send-mail-partially): Don't bother with
2646         mm-with-unibyte-current-buffer since it's already been made unibyte by
2647         message-send-mail.
2648
2649 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2650
2651         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2652
2653 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2654
2655         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2656
2657 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2658
2659         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2660         require itself and to remove `with-no-warnings'.
2661
2662 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2663
2664         * starttls.el (starttls-any-program-available): Get the name of the
2665         available TLS layer program.
2666         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2667         well as the host name in the "opening" message.
2668
2669         * auth-source.el (auth-source-cache, auth-source-do-cache)
2670         (auth-source-user-or-password): Cache passwords and logins by default,
2671         allow override with `auth-source-do-cache'.
2672         (auth-source-forget-user-or-password): Allow users to remove cache
2673         entries if needed.
2674
2675 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2676
2677         * md4.el (md4-buffer): Fix typo in docstring.
2678         (md4, md4-64): Doc fixes.
2679         (md4-pack-int32): Reflow docstring.
2680
2681 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2682
2683         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2684         condition-case to only the forward-sexp call.
2685
2686 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2687
2688         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2689         quotes contained.  Make it more robust regardless by an extra
2690         condition-case wrapper.
2691
2692 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2693
2694         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2695
2696 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2697
2698         * nnml.el (nnml-request-expire-articles): Check if the function set to
2699         `nnmail-expiry-target' returns the symbol `delete'.
2700
2701         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2702
2703         * nnmail.el (nnmail-expiry-target): Fix custom type.
2704
2705 2008-10-02  Glenn Morris  <rgm@gnu.org>
2706
2707         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2708         Silence compiler warning.
2709
2710 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2711
2712         * tls.el (open-tls-stream): Show the actual command being
2713         executed, instead of the format string.
2714
2715 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2716
2717         * lpath.el: Fbind codepage-setup for Emacs 23.
2718
2719 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2720
2721         * mml.el (mml-menu): Don't assume mml2015 is bound.
2722
2723 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2724
2725         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2726         exists.
2727
2728 2008-09-27  Glenn Morris  <rgm@gnu.org>
2729
2730         * gnus-util.el (mail-header-remove-comments): Autoload it.
2731
2732 2008-09-27  Andreas Schwab  <schwab@suse.de>
2733
2734         * gnus-util.el (gnus-split-references): Strip comments.
2735         (gnus-parent-id): Likewise.
2736
2737 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2738
2739         * message.el (message-confirm-send): Fix version.
2740
2741 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2742
2743         * message.el (message-idna-to-ascii-rhs-1): Use
2744         mail-extract-address-components rather than mail-header-parse-addresses
2745         that is an alias by default to ietf-drums-parse-addresses that does not
2746         support non-ASCII names in headers' contents.
2747
2748 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2749
2750         * message.el (message-confirm-send): Fixed variable documentation to
2751         avoid the "y/n" wording.
2752
2753 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2754
2755         * message.el (message-set-auto-save-file-name): Save to a different
2756         filename so multiple messages (especially drafts) can be recovered.
2757
2758 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2759
2760         * message.el (message-confirm-send): Add appropriate version.
2761
2762 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2763
2764         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2765         defvar.
2766
2767 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2768
2769         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2770         (mm-pkcs7-enveloped-magic): Ditto.
2771
2772 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2773
2774         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2775         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2776
2777 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2778
2779         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2780         default, it's better.
2781
2782 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2783
2784         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2785         summary line gnus-number property and ignore them (with a warning
2786         message).
2787
2788 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2789
2790         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2791         macro caddr in the interactive form since it won't be expanded.
2792
2793 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2794
2795         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2796         `charset'; fix name of function called recursively.
2797         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2798
2799 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2800
2801         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2802         (gnus-mime-set-charset-parameters): New function.
2803         (gnus-mime-view-part-as-charset): Use it to correctly display part
2804         specifying wrong charset.
2805
2806 2008-09-08  David Engster  <dengste@eml.cc>
2807
2808         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2809         in completing-read for back end server.
2810
2811 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2812
2813         * message.el (message-confirm-send): New variable to confirm sending a
2814         message.
2815         (message-send): Use it.
2816
2817 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2818
2819         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2820
2821 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2822
2823         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2824
2825 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2826
2827         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2828         prevent tracking too many groups.
2829         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2830         Use it.
2831
2832 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2833
2834         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2835         moving point to the bottom of the window in order to avoid recentering.
2836
2837 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2838
2839         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2840
2841         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2842         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2843         (gnus-article-beginning-of-window): Fix calculation.
2844
2845 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2846
2847         * gnus-msg.el (gnus-summary-supersede-article)
2848         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2849         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2850         message header.
2851
2852 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2853
2854         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2855         pending output coming after the status change.
2856
2857 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2858
2859         * message.el:
2860         * gnus-start.el:
2861         * gnus-registry.el: Remove VMS support.
2862
2863 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2864
2865         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2866         macro.
2867         (rfc2104-hash): Use it.
2868
2869 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2870
2871         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2872         (gnus-summary-sort-by-most-recent-date): New commands.
2873         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2874         and menu entries.
2875
2876 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2877
2878         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2879         don't redisplay article for raw contents; remove plural articles stuff.
2880
2881         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2882         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2883         on gnus-summary-save-article; display results properly.
2884
2885 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2886
2887         * lpath.el: No need to fbind ns-focus-frame.
2888
2889 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2890
2891         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2892
2893 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2894
2895         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2896         gnus-save-all-headers.
2897
2898 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2899
2900         * gnus-util.el (ns-focus-frame): Remove declaration.
2901         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2902         like x.
2903
2904 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2905
2906         * rfc2104.el (rfc2104-zero): Delete defconst.
2907         (rfc2104-hex-alist): Likewise.
2908         (rfc2104-hex-to-int): Delete func.
2909         (rfc2104-hexstring-to-bitstring): Likewise.
2910         (rfc2104-nybbles): New defconst.
2911         (rfc2104-hash): Rewrite for speed.
2912
2913 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2914
2915         * tls.el (open-tls-stream): Make it work with the 2nd argument
2916         BUFFER that is a string but does not exist as a buffer object, as
2917         mentioned in the doc-string.
2918
2919 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2920
2921         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
2922         SXEmacs.
2923
2924 2008-07-16  Glenn Morris  <rgm@gnu.org>
2925
2926         * gnus-util.el (ns-focus-frame): Declare for compiler.
2927
2928 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2929
2930         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
2931         set as a group parameter.
2932         (gnus-summary-save-in-pipe): Work when it is called independently.
2933         (gnus-summary-pipe-to-muttprint): Don't modify
2934         gnus-summary-pipe-output-default-command.
2935
2936 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2937
2938         * message.el (message-send-mail-with-sendmail):
2939         Display the error message.
2940
2941 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2942
2943         * gnus-art.el (gnus-default-article-saver):
2944         Add gnus-summary-save-in-pipe to choices.
2945         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
2946         gnus-summary-pipe-output-default-command as the default command.
2947         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
2948         instead of gnus-last-shell-command.
2949
2950         * gnus-sum.el (gnus-summary-pipe-output-default-command):
2951         New user option.
2952         (gnus-summary-muttprint-program): Mention the value will be changed.
2953         (gnus-summary-save-article): Force showing of all headers.
2954         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
2955
2956 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
2957
2958         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
2959
2960 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
2961
2962         * nnimap.el (nnimap-id):
2963         * sieve-manage.el (sieve-manage-open): Doc fixes.
2964
2965 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
2966
2967         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
2968         if available.
2969
2970 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2971
2972         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
2973
2974         * nnkiboze.el (nnkiboze-generate-group):
2975         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
2976
2977         * nnmairix.el: Require CL.
2978
2979 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2980
2981         * dgnushack.el: Autoload get-display-table and put-display-table for
2982         XEmacs 21.5.
2983
2984         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
2985         21.4 and SXEmacs.
2986
2987 2008-06-15  David Engster  <dengste@eml.cc>
2988
2989         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
2990
2991 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
2992
2993         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
2994         New macros that expand to an `aset'/`aref' call under Emacs, and to a
2995         runtime choice under XEmacs.
2996
2997         * gnus-sum.el (gnus-summary-set-display-table):
2998         Use `gnus-put-display-table', `gnus-get-display-table',
2999         `gnus-set-display-table' for the display table, instead of `aset'.
3000
3001         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3002         Use `gnus-put-display-table', `gnus-get-display-table',
3003         `gnus-set-display-table' for the display table.
3004
3005 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3006
3007         * nnmairix.el: Add autoloads.
3008
3009 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3010
3011         * nnmairix.el (nnmairix-delete-recreate-group)
3012         (nnmairix-update-and-clear-marks): Fix error messages.
3013
3014 2008-06-14  David Engster  <dengste@eml.cc>
3015
3016         * nnmairix.el: Upgrade to version 0.6.
3017         (nnmairix-group-toggle-propmarks-this-group)
3018         (nnmairix-group-toggle-readmarks-this-group)
3019         (nnmairix-group-delete-recreate-this-group)
3020         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3021         (nnmairix-remove-tick-mark-original-article): New commands.
3022         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3023         (nnmairix-propagate-marks-to-nnmairix-groups)
3024         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3025         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3026         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3027         functions needed for marks propagation and manipulation of read marks.
3028         (nnmairix-update-groups): New function.
3029         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3030         (nnmairix-determine-original-group-from-registry)
3031         (nnmairix-determine-original-group-from-path)
3032         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3033         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3034         New helper functions.
3035         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3036         keystrokes for new commands.
3037         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3038         (nnmairix-request-group): Check allow-fast group parameter.
3039         (nnmairix-request-create-group): Set allow-fast group parameter if
3040         nnmairix-allowfast-default is set.
3041         (nnmairix-close-group): Propagate marks upon closing if needed.
3042         (nnmairix-group-toggle-threads-this-group): Use new.
3043         nnmairix-group-toggle-parameter helper function.
3044         (nnmairix-search): Better check for empty search result.
3045         (nnmairix-goto-original-article): Use new helper functions for
3046         determining original article.
3047         (nnmairix-show-original-article): Make sure message-id is in brackets.
3048         (nnmairix-call-mairix-binary): Change variable name.
3049         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3050         helper function.
3051         (nnmairix-widget-toggle-activate): Fix doc string.
3052
3053 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3054
3055         * nnir.el: Require edmacro when compiling with XEmacs.
3056         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3057         available in Emacs 21.
3058
3059 2008-06-11  Glenn Morris  <rgm@gnu.org>
3060
3061         * gnus-util.el (x-focus-frame):
3062         * gnus.el (image-size):
3063         * mm-decode.el (image-size): Declare.
3064
3065         * gnus-picon.el (declare-function): Add compat definition.
3066         (image-size): Declare.
3067
3068         * gnus-group.el (tool-bar-map):
3069         * gnus-sum.el (tool-bar-map): Define for compiler.
3070
3071         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3072
3073         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3074
3075         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3076         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3077         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3078         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3079         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3080         * sieve-manage.el, spam-report.el, spam.el:
3081         Remove unnecessary eval-and-compile of autoloads.
3082
3083 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3084
3085         * auth-source.el: Precise Tramp doc.
3086
3087 2008-06-07  Glenn Morris  <rgm@gnu.org>
3088
3089         * nnmairix.el: Remove unnecessary eval-when-compile.
3090
3091 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3092
3093         * lpath.el: Fbind propertize for XEmacs 21.4.
3094
3095 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3096
3097         * nnir.el: Move here from ../contrib.
3098
3099 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3100
3101         * gnus-util.el (gnus-read-shell-command): New function.
3102         * mm-decode.el (mm-pipe-part):
3103         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3104
3105 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3106
3107         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3108
3109 2008-06-03  Glenn Morris  <rgm@gnu.org>
3110
3111         * pop3.el (nnheader-accept-process-output): Autoload it.
3112
3113 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3114
3115         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3116         are not 2-digit hexadecimal characters that follow `%'s.
3117
3118 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3119
3120         * message.el (message-bogus-recipient-p): Fix type in doc string.
3121         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3122         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3123         Improve custom options.
3124         (message-bogus-recipient-p): Adjust accordingly.
3125
3126 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3127
3128         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3129         long-form month and day names.
3130
3131 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3132
3133         * dgnushack.el: Autoload debug, eudc-expand-inline and
3134         pgg-snarf-keys-region for XEmacs.
3135
3136         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3137
3138         * nnmairix.el: Require edmacro when compiling with XEmacs.
3139
3140 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3141
3142         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3143         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3144
3145 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3146
3147         * auth-source.el: Add more docs.
3148
3149         * netrc.el (netrc-machine): Always match if the port is not given.
3150
3151 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3152
3153         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3154         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3155         retrieval faster in some cases, but might make CPU usage larger.  If
3156         this has any bad side effects, we might revert this change.
3157
3158         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3159         seems to make mail retrieval much, much faster.
3160         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3161         unconditionally.
3162
3163         * gnus-draft.el (gnus-group-send-queue): Bind
3164         message-send-mail-partially-limit to nil to avoid being prompted.
3165
3166 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3167
3168         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3169
3170         * message.el (message-bogus-address-regexp): Fix and improve custom
3171         type.
3172         (message-setup-hook): Add message-check-recipients as custom option.
3173
3174 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3175
3176         * message.el (message-cite-function): Remove bogus autoload which crept
3177         in during merge from v5-10.
3178
3179 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3180
3181         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3182
3183         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3184
3185         * auth-source.el: Preliminary Tramp docs.
3186         (auth-sources): Change the default auth-sources to use
3187         EPA .gpg files.
3188
3189 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3190
3191         * nntp.el: Autoload `auth-source-user-or-password'.
3192         (nntp-send-authinfo): Use it.
3193
3194         * nnimap.el: Autoload `auth-source-user-or-password'.
3195         (nnimap-open-connection): Use it.
3196
3197         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3198         for the gnus-message function.
3199         (auth-source-user-or-password): Use it.
3200
3201 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3202
3203         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3204         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3205         (rfc2104-hash): Use it.
3206
3207 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3208
3209         * gnus-art.el (gnus-article-toggle-truncate-lines):
3210         Don't use `iff' in docstring.
3211
3212 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3213
3214         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3215
3216         * gnus-util.el (gnus-extract-address-component-name)
3217         (gnus-extract-address-component-email): Convenience functions around
3218         `gnus-extract-address-components'.
3219
3220         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3221         Use `gnus-extract-address-component-email' to fix bug of comparing full
3222         sender name to `user-mail-address'.
3223
3224 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3225
3226         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3227         catch/throw to optimize.
3228         (gnus-registry-find-keywords): Just use member to find a keyword.
3229
3230 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3231
3232         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3233         is current before calling gnus-server-prepare.
3234         (gnus-server-setup-buffer, gnus-server-update-server)
3235         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3236
3237 2008-05-04  Juri Linkov  <juri@jurta.org>
3238
3239         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3240         (mailcap-file-default-commands): Use mailcap-replace-in-string
3241         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3242         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3243
3244 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3245
3246         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3247
3248 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3249
3250         * gnus.el: Bump version to 0.11.
3251
3252 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3253
3254         * gnus.el: No Gnus v0.10 is released.
3255
3256 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3257
3258         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3259         hooks.
3260         (gnus-update-read-articles): Speed up non-marks-using users.
3261         (gnus-use-marks): Define gnus-use-marks.
3262         (gnus-propagate-marks): Rename variable to something more sensible.
3263
3264 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3265
3266         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3267         (gmm-image-load-path-for-library): Fix typos in docstrings.
3268         (gmm-message): Reflow docstring.
3269
3270 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3271
3272         * mail-source.el (mail-source-set-1, mail-source-bind):
3273         Move auth-source code out of the macro to clean it up and fix bugs.
3274
3275 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3276
3277         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3278         by sender if it's equal to user-mail-address, it's likely to be
3279         useless.
3280
3281         * mail-source.el (mail-source-bind): Don't use user or password if they
3282         are not bound.  Unintern them if they are nil.  Don't use server unless
3283         it's bound, and default it to empty string otherwise.
3284
3285 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3286
3287         * mail-source.el: Load auth-source.el.
3288         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3289         get user name or password, if auth-sources is set up.
3290
3291         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3292         strategy of splitting with parent.
3293         (gnus-registry-split-fancy-with-parent)
3294         (gnus-registry-post-process-groups): Use it and fix prior
3295         bug (returning a list as the split result).
3296
3297         * auth-source.el (auth-sources): Remove server parameter.
3298         (auth-source-pick, auth-source-user-or-password)
3299         (auth-source-user-or-password-imap)
3300         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3301         (auth-source-user-or-password-sftp)
3302         (auth-source-user-or-password-smtp): Remove server parameter.
3303
3304 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3305
3306         * smime.el (smime-sign-region, smime-encrypt-region)
3307         (smime-decrypt-region):
3308         Remove redundant calls to `generate-new-buffer-name'.
3309
3310 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3311
3312         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3313         Don't use QP for message/rfc822.
3314         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3315
3316 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3317
3318         * sieve-manage.el (sieve-string-bytes): Remove.
3319         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3320         correct byte-length only if the process's coding-system is the same as
3321         the one used internally by Emacs to represent strings.
3322
3323 2008-04-22  Juri Linkov  <juri@jurta.org>
3324
3325         * mailcap.el (mailcap-file-default-commands): New function.
3326
3327 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3328
3329         * message.el (message-signature-separator, message-cite-function):
3330         Change custom version.
3331
3332 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3333
3334         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3335         commands.
3336         (tls-checktrust): Ditto.
3337
3338 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3339
3340         * mm-decode.el (mm-display-external): Make temp file read-only.
3341
3342 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3343
3344         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3345         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3346         `C-c C-f d'.
3347
3348 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3349
3350         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3351
3352 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3353
3354         * gnus.el: Bump version to 0.9.
3355
3356 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3357
3358         * gnus.el: No Gnus v0.8 is released.
3359
3360 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3361
3362         * mail-source.el (mail-source-value):
3363         Prefer fboundp to functionp so it works with macros as well.
3364
3365 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3366
3367         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3368         Fix last change in case the element is not even a symbol.
3369
3370 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3371
3372         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3373         Prefer fboundp to functionp so it works with macros as well.
3374
3375 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3376
3377         * auth-source.el: Added docs.
3378         (auth-sources): Modify format to support server.
3379         (auth-source-pick, auth-source-user-or-password)
3380         (auth-source-user-or-password-imap)
3381         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3382         (auth-source-user-or-password-sftp)
3383         (auth-source-user-or-password-smtp): Add server parameter.
3384
3385 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3386
3387         * gnus-registry.el: Initialize the registry when gnus-registry-install
3388         is t.
3389
3390 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3391
3392         * compface.el (uncompface): Make buffer unibyte.
3393
3394 2008-04-05  Glenn Morris  <rgm@gnu.org>
3395
3396         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3397
3398 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3399
3400         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3401         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3402
3403         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3404         multibyteness after rather than before erasing it.
3405
3406         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3407         mm-with-multibyte.
3408         (gnus-request-article-this-buffer): Make sure the proper decoding is
3409         used if gnus-original-article-buffer happens to be unibyte.
3410
3411         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3412         default-enable-multibyte-characters.
3413
3414         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3415         default-enable-multibyte-characters.
3416
3417         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3418
3419         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3420
3421 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3422
3423         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3424         (imap-message-copyuid-1): Use it.
3425         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3426         J. Williams in
3427         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3428
3429         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3430         imap-enable-exchange-bug-workaround.
3431         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3432
3433 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3434
3435         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3436         a 100 byte status-checks into a 2-3MB transfer for each group.
3437         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3438         to enable bug workaround or not.
3439         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3440
3441 2008-03-31  Glenn Morris  <rgm@gnu.org>
3442
3443         * message.el (mml2015-use): Declare for compiler.
3444         (message-info): Require mml2015 when appropriate.
3445
3446 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3447
3448         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3449         whitespace.
3450
3451 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3452
3453         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3454         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3455         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3456         (nntp-service-to-port): New function.
3457         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3458         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3459         (nntp-open-netcat-stream): New function.
3460         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3461
3462 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3463
3464         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3465
3466 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3467
3468         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3469
3470 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3471
3472         * dns.el (dns-write): Use set-buffer-multibyte.
3473
3474 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3475
3476         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3477
3478 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3479
3480         * message.el (message-signature-separator): Change default.
3481         Improve custom type.
3482         (message-cite-function): Change default to
3483         message-cite-original-without-signature.
3484
3485         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3486         toggle.
3487
3488         * message.el (message-check-news-body-syntax): Fix signature check.
3489         (message-setup-1): Mark buffer as unmodified _after_ running
3490         message-setup-hook and handling message-alternative-emails.
3491         (message-shorten-references): Be more strict when building list of
3492         valid references to comply with GNKSA.
3493
3494         * gnus-group.el (gnus-read-ephemeral-bug-group)
3495         (gnus-read-ephemeral-debian-bug-group)
3496         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3497
3498         * message.el (message-info): Don't use booleanp which isn't supported
3499         in Emacs 21 and XEmacs.
3500
3501 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3502
3503         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3504         gnus-group-gmane-group-download-format.
3505         (gnus-group-read-ephemeral-gmane-group): Rename from
3506         gnus-group-read-ephemeral-gmane-group.
3507         (gnus-read-ephemeral-gmane-group-url): Rename from
3508         gnus-group-read-ephemeral-gmane-group-url.
3509         (gnus-bug-group-download-format-alist): New variable.
3510         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3511         (gnus-read-ephemeral-emacs-bug-group): New commands.
3512
3513 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3514
3515         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3516         (gnus-visible-headers): Improve custom type.
3517
3518 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3519
3520         * mml.el (mml-menu): Add workarounds for XEmacs.
3521
3522         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3523         X-Boundary header.
3524
3525         * message.el (message-simplify-recipients): Fix previous commit.
3526
3527 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3528
3529         * mm-util.el (mm-set-buffer-multibyte): New function.
3530         * mm-decode.el (mm-copy-to-buffer): Use it.
3531
3532 2008-03-19  Glenn Morris  <rgm@gnu.org>
3533
3534         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3535         Accidentally removed in the sync process with Emacs.
3536
3537 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3538
3539         * message.el (message-alter-recipients-discard-bogus-full-name):
3540         New function.
3541         (message-alter-recipients-function): New variable.
3542         (message-get-reply-headers): Use it.
3543         (message-replace-header): New helper function.
3544         (message-recipients-without-full-name): New variable.
3545         (message-simplify-recipients): New command.
3546
3547         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3548
3549         * message.el (message-info): Handle EasyPG manual.
3550
3551         * mml.el (mml-menu): Add entry for EasyPG.
3552
3553 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3554
3555         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3556         parameter.
3557
3558         * message.el (message-disassociate-draft): Specify drafts group name
3559         fully.
3560
3561 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3562
3563         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3564         unnecessary duplicates from the match list.
3565
3566 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3567
3568         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3569
3570         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3571
3572         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3573         args of `how-many' of which the XEmacs version doesn't take; declare
3574         Info-index-next as function.
3575
3576 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3577
3578         * gnus-score.el (gnus-score-headers): Fix handling of
3579         gnus-inhibit-slow-scoring.
3580
3581         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3582         string.
3583         (gnus-button-url-regexp): Improve handling of parenthesis.
3584         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3585         (gnus-button-handle-info-keystrokes): Handle index entries.
3586
3587 2008-03-15  Glenn Morris  <rgm@gnu.org>
3588
3589         * parse-time.el (parse-time-string): Simplify.
3590
3591 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3592
3593         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3594         Incoming* files.
3595
3596 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3597
3598         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3599         (auth-source-pick): Use it.
3600
3601 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3602
3603         * binhex.el (binhex-decode-region-internal):
3604         * uudecode.el (uudecode-decode-region-internal):
3605         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3606         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3607         setting default-enable-multibyte-characters.
3608
3609 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3610
3611         * auth-source.el (auth-source-protocols)
3612         (auth-source-protocols-customize, auth-source-choices): Added and
3613         modified variable customizations and defaults.
3614         (auth-source-pick, auth-source-user-or-password)
3615         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3616         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3617         (auth-source-user-or-password-sftp)
3618         (auth-source-user-or-password-smtp): Use new variables and provide an
3619         interface to netrc.el.
3620
3621 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3622
3623         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3624         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3625         Make sure the nntp port to specify is a string.
3626
3627 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3628
3629         * nntp.el: Use with-current-buffer.
3630         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3631         dubious mm-with-unibyte-current-buffer.
3632         (nntp-with-open-group-function): New function extracted from
3633         nntp-with-open-group macro.
3634         (nntp-with-open-group): Use the function, so it's easier to debug.
3635         Add indentation and debugging info.
3636         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3637         the use of the netcat alternatives.
3638
3639         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3640         Avoid mm-string-as-multibyte as well.
3641
3642         * nnweb.el (nnweb-insert-html):
3643         Remove use of nnheader-string-as-multibyte.
3644
3645         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3646         (nnheader-string-as-multibyte): Remove.
3647
3648         * mm-view.el: Use inhibit-read-only.
3649         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3650         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3651         or unibyte-string.
3652
3653         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3654         (mm-uu-yenc-extract): Use with-current-buffer.
3655
3656         * gnus-soup.el (gnus-soup-send-packet): Don't use
3657         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3658
3659         * nnmh.el: Use with-current-buffer.
3660         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3661         mm-string-as-multibyte on the output of mm-encode-coding-string.
3662
3663         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3664         (nnimap-request-move-article): Use with-current-buffer.
3665
3666         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3667         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3668         conversion uses string-make-unibyte rather than string-as-unibyte.
3669
3670         * gnus-msg.el: Use with-current-buffer.
3671
3672         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3673
3674 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3675
3676         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3677         string for caching if it is 'PIN.
3678
3679 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3680
3681         * lpath.el: Consider the case without Emacs/W3.
3682
3683 2008-03-08  Glenn Morris  <rgm@gnu.org>
3684
3685         * time-date.el (date-to-time, time-subtract, time-add)
3686         (safe-date-to-time): Doc fixes.
3687
3688 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3689
3690         * mail-source.el (mail-source-delete-old-incoming-confirm):
3691         Change default to nil.
3692         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3693
3694 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3695
3696         * lpath.el: Rearrange.
3697
3698         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3699         (gnus-article-goto-prev-page): Work for articles having ^L's.
3700
3701         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3702
3703         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3704
3705 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3706
3707         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3708         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3709         (gnus-bookmark-jump): Adjust some variable names.
3710
3711 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3712
3713         * auth-source.el: New package.
3714         (auth-source-choices): Add customization entry point variable.
3715
3716         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3717         bug.
3718
3719 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3720
3721         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3722         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3723         (gnus-registry-install-shortcuts): Rename from
3724         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3725         the `gnus-registry-mark-map' keymap dynamically from
3726         `gnus-registry-marks'.  The generated functions update the summary line
3727         when a registry mark is added or deleted, and will call
3728         `gnus-registry-install-p' (see the comments in the code).
3729         (gnus-registry-user-format-function-M): Use concat intelligently.
3730
3731         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3732         the registry mark functions.
3733
3734 2008-03-05  Glenn Morris  <rgm@gnu.org>
3735
3736         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3737         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3738         gnus-art.
3739         (top-level): No need to load own source when compiling.
3740
3741 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3742
3743         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3744         Suggested by <chris.anderton@zetnet.co.uk>.
3745
3746 2008-03-04  Glenn Morris  <rgm@gnu.org>
3747
3748         * gnus-sum.el (top-level): No need to require gnus when compiling,
3749         since unconditionally required near start of file.
3750         (gnus-summary-display-while-building): Move definition before use.
3751
3752 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3753
3754         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3755         formatting function.
3756
3757 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3758
3759         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3760         with plists.
3761         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3762         Use new format.
3763
3764 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3765
3766         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3767         `where-is-internal' that returns a range of key sequences.
3768
3769 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3770
3771         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3772
3773         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3774         (gnus-summary-jump-to-group): Consider windows on other displayed
3775         frames as well.  Similar changes might be needed elsewhere, but that's
3776         the one I've bumped into during my use.
3777
3778         * nndoc.el (nndoc-oe-dbx-type-p):
3779         * gnus-msg.el (gnus-debug):
3780         * gnus-group.el (gnus-update-group-mark-positions):
3781         Use mm-string-to-multibyte.
3782
3783 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3784
3785         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3786         doesn't handle NotDashEscaped.
3787
3788         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3789         (mml-dnd-attach-options): Fix typo in custom choice.
3790
3791         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3792         nndoc-article-type to mbox.
3793         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3794
3795         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3796         to nil, instead of html2text.
3797
3798         * imap.el (imap-debug): Add `imap-ping-server'.
3799
3800         * gnus-bookmark.el: Add FIXMEs.
3801
3802         * message.el (message-form-letter-separator)
3803         (message-send-form-letter-delay): New variables.
3804         (message-send-form-letter): Use them.  New command to send form
3805         letters.  Requested by Uwe Siart.
3806         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3807
3808 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3809
3810         * Update copyright years.
3811
3812 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3813
3814         Sync from EMACS_22_BASE.
3815
3816         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3817
3818 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3819
3820         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3821         empty author.
3822
3823 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3824
3825         * gnus-registry.el (gnus-registry-marks): Add variable for
3826         customization of marks and their appearance.
3827         (gnus-registry-read-mark): Use it.
3828         (gnus-registry-do-marks): Add utility function to loop through
3829         `gnus-registry-marks'.
3830         (gnus-registry-install-shortcuts-and-menus): Add function to install
3831         shortcuts and menus.
3832         (gnus-registry-initialize): Use it.
3833         (gnus-registry-default-mark): Clarify documentation.
3834
3835 2008-02-29  Glenn Morris  <rgm@gnu.org>
3836
3837         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3838         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3839         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3840         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3841         Change defcustom :version from 23.0 to 23.1.
3842
3843 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3844
3845         * gnus-registry.el (gnus-registry-follow-group-p)
3846         (gnus-registry-post-process-groups): Add functions to aid registry
3847         splitting and improve logging.  Clarify behavior in function
3848         documentation.
3849         (gnus-registry-split-fancy-with-parent): Use them.
3850
3851 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3852
3853         * gnus-art.el: Use with-current-buffer.
3854
3855 2008-02-27  David Engster  <dengste@eml.cc>
3856
3857         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3858         Express real group name in the response.
3859
3860 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3861
3862         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3863         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3864         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3865         autoload gnus-registry-fetch-group when compiling.
3866         (nnmairix-request-group-with-article-number-correction): Remove
3867         unreferenced argument passed to nnmairix-call-backend.
3868
3869 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3870
3871         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3872         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3873         Wilde.
3874
3875 2008-02-27  Glenn Morris  <rgm@gnu.org>
3876
3877         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3878         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3879         variables to defconsts.  Convert comments to doc-strings.
3880         (nnmairix-last-server, nnmairix-current-server): Convert from free
3881         variables to defvars.  Convert comments to doc-strings.
3882         (gnus-registry-fetch-group): Autoload.
3883         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3884         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3885         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3886         caddr.
3887         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3888         nnmairix-request-group-with-article-number-correction call.
3889         (nnmairix-fast, nnmairix-group): New, less general names, for free
3890         variables passed from nnmairix-request-group to
3891         nnmairix-request-group-with-article-number-correction.  Declare.
3892         (nnmairix-request-group-with-article-number-correction):
3893         Use nnmairix-fast, nnmairix-group rather than fast, group.
3894
3895 2008-02-26  David Engster  <dengste@eml.cc>
3896
3897         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3898         version 0.5.
3899
3900 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3901
3902         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3903         instead of making an extra function call.  Don't add the current group
3904         to articles only when they have the group.  Use
3905         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3906         Reported by David <de_bb@arcor.de>.
3907
3908 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3909
3910         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
3911         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
3912
3913 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
3914
3915         * mail-source.el (mail-source-delete-incoming): Change default.
3916         Supplement doc string.
3917
3918         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
3919
3920 2008-02-14  Glenn Morris  <rgm@gnu.org>
3921
3922         * time-date.el (format-seconds): New function.
3923
3924 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
3925
3926         * nnmail.el (nnmail-message-id-cache-file): Derive from
3927         `gnus-home-directory'.
3928
3929 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
3930
3931         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
3932         Document negative prefix.
3933
3934         * gnus-group.el (gnus-group-read-group): Document negative prefix.
3935
3936 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3937
3938         * message.el (message-unsent-separator): Add the Exim bounce
3939         separator.
3940
3941 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
3942
3943         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
3944         list.
3945         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
3946         recipient/signer list.
3947
3948 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3949
3950         * Makefile.in (datarootdir): Define.
3951         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
3952         name that might contain whitespace.
3953
3954 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
3955
3956         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
3957         fbound (Emacs 23 unicode), signal an error.
3958
3959 2008-02-08  Glenn Morris  <rgm@gnu.org>
3960
3961         * gnus-art.el (pgg-display-output-buffer): Declare as function.
3962
3963 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
3964
3965         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
3966         ports to the calls to `netrc-machine-user-or-password' in addition to
3967         "imap" and "imaps".
3968
3969 2008-02-01  Zhang Wei  <id.brep@gmail.com>
3970
3971         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
3972
3973         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
3974
3975 2008-02-01  Kenichi Handa  <handa@m17n.org>
3976
3977         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
3978         rfc2104-hexstring-to-bitstring and changed to return a byte list.
3979         (rfc2104-hash): Convert the result of concat to unibyte string.
3980
3981 2008-02-01  Dave Love  <fx@gnu.org>
3982
3983         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
3984         coding-system-for-read.
3985         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
3986
3987 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
3988
3989         * gnus.el (gnus-group-startup-message): Add `find-image' call before
3990         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
3991         <hanche@math.ntnu.no>.
3992
3993 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3994
3995         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
3996
3997         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
3998
3999 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4000
4001         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4002         * message.el (message-beginning-of-line): Use featurep instead of bound
4003         tests in order to resolve conditionals at compile time.
4004
4005 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4006
4007         * mail-source.el (mail-sources): Add `group' choice.
4008
4009         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4010         parameter `in-group' to control into which group the articles go.
4011         Add treatment of `group' mail-source.
4012
4013 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4014
4015         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4016
4017         * mm-decode.el (mm-dissect-buffer): Decode description.
4018
4019         * mml.el (mml-to-mime): Encode message header first.
4020
4021 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4022
4023         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4024         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4025
4026         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4027         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4028
4029 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4030
4031         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4032
4033 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4034
4035         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4036         prefix keys.
4037         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4038         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4039         gnus-xmas.el.
4040
4041         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4042         (gnus-xmas-article-describe-bindings): New function.
4043         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4044         gnus-xmas-article-describe-bindings.
4045
4046         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4047
4048 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4049
4050         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4051         Add new variables for article mark management.
4052         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4053         list of extra data entries which, when present, will indicate that the
4054         article ID should not be trimmed from the registry.
4055         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4056         functions.
4057         (gnus-registry-read-mark): New function to read a mark name from the
4058         user.
4059         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4060         (gnus-registry-set-article-mark-internal): New functions to add and
4061         remove marks.
4062         (gnus-registry-get-article-marks): New function to show the marks for
4063         an article, or retrieve them for further use.
4064
4065 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4066
4067         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4068         keys when no argument is given.
4069
4070 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4071
4072         * imap.el (imap-ping-server): New variable.
4073         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4074         (imap-ping-server): Minor doc string fixes.
4075
4076 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4077
4078         * imap.el (imap-ping-server): New function.
4079         (imap-opened): Call imap-ping-server.
4080
4081 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4082
4083         * gnus-sum.el (gnus-article-sort-by-random)
4084         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4085         jidanni@jidanni.org.
4086
4087 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4088
4089         * gnus-art.el (gnus-article-describe-bindings): New function.
4090         (gnus-article-read-summary-keys): Use it.
4091         (gnus-article-mode-map): Bind `C-h b' to it.
4092
4093 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4094
4095         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4096         XEmacs.
4097         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4098         against non-character events.
4099
4100         * lpath.el: Fbind map-keymap for Emacs 21.
4101
4102 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4103
4104         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4105         command.
4106         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4107         instead of END.  Change name of the temp file.
4108         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4109         customizable.
4110
4111 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4112
4113         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4114         bind `S W' to gnus-article-wide-reply-with-original; set default
4115         binding to gnus-article-read-summary-send-keys.
4116         (gnus-article-read-summary-keys): Fix the order of keys; display
4117         continuation keys correctly in the echo area; describe bindings
4118         correctly when keys end with `C-h'.
4119         (gnus-article-read-summary-send-keys): New function.
4120         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4121         for gnus-article-read-summary-send-keys; display continuation keys
4122         correctly in the echo area.
4123         (gnus-article-reply-with-original): Ignore prefix argument.
4124         (gnus-article-wide-reply-with-original): New function.
4125
4126         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4127         Emacs 21.
4128
4129 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4130
4131         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4132         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4133
4134 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4135
4136         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4137         (gnus-group-read-ephemeral-gmane-group): New command.
4138
4139 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4140
4141         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4142
4143 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4144
4145         * message.el (message-send-mail-function): Increase custom version.
4146
4147         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4148         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4149
4150 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4151
4152         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4153         for the cases where imap-authenticate is called with a nil buffer
4154         parameter.
4155
4156 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4157
4158         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4159         html parts correctly; support forwarded messages.
4160         (gnus-article-browse-html-article): Remove work buffers.
4161
4162         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4163         compiling.
4164         (netrc-bound-and-true-p): New macro.
4165         (netrc-parse): Use it instead of bound-and-true-p that is not available
4166         in XEmacs 21.4.
4167
4168 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4169
4170         * gnus-registry.el (gnus-registry-mark-article)
4171         (gnus-registry-article-marks): Add functionality to mark articles
4172         through the Gnus registry.
4173
4174         * encrypt.el: Clarify documentation for the new pgg method.
4175         (encrypt-file-alist): Add PGG option.
4176         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4177         functionality.  Abstract password key and messaging to external
4178         functions.
4179         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4180         (encrypt-message-method-and-cipher): Add new convenience external
4181         functions.
4182         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4183         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4184
4185         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4186         (netrc-parse): Use encrypt-file-alist to determine if
4187         encrypt-find-model or encrypt-insert-file-contents should be used.
4188
4189         * encrypt.el: Clarify documentation.  Load password-cache or
4190         password, whichever one is found first, instead of autoloading.
4191
4192 2007-12-19  Glenn Morris  <rgm@gnu.org>
4193
4194         * mml.el (message-options-set, message-narrow-to-head)
4195         (message-in-body-p, message-mail-p, message-encode-message-body):
4196         Autoload.
4197         (message-remove-header, message-narrow-to-headers-or-head)
4198         (message-subscribed-p, message-make-mail-followup-to)
4199         (message-position-on-field, message-news-p)
4200         (message-options-set-recipient, message-generate-headers)
4201         (message-sort-headers): Declare as functions.
4202
4203 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4204
4205         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4206         convention in doc string.
4207
4208 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4209
4210         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4211         title to html parts.
4212         (gnus-article-browse-html-article): Pass message header to it.
4213
4214         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4215
4216 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4217
4218         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4219         or password compatible with XEmacs.
4220
4221 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4222
4223         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4224         format document.
4225         (gnus-mime-delete-part): Don't write description line if empty.
4226         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4227
4228 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4229
4230         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4231         (gnus-summary-mark-read-and-unread-as-read)
4232         (gnus-summary-mark-current-read-and-unread-as-read)
4233         (gnus-summary-mark-unread-as-ticked): Doc fix.
4234         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4235
4236 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4237
4238         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4239         Christoph Conrad <christoph.conrad@gmx.de>.
4240
4241 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4242
4243         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4244         yes-or-no-p.
4245
4246 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4247
4248         * mm-decode.el (mm-add-meta-html-tag): New function.
4249         (mm-save-part-to-file, mm-pipe-part): Use it.
4250
4251         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4252         gnus-y-or-n-p instead of y-or-n-p.
4253         (gnus-article-browse-html-parts): Work with message/external-body; use
4254         mm-add-meta-html-tag.
4255
4256 2007-12-11  Glenn Morris  <rgm@gnu.org>
4257
4258         * gnus-cache.el: Require gnus-sum not just when compiling.
4259
4260         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4261
4262         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4263         definitions before use.
4264
4265         * mm-decode.el: Require gnus-util.
4266         (mm-remove-part): Only call delete-annotation on XEmacs.
4267
4268         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4269
4270         * nnmail.el: Require gnus-int.
4271
4272         * spam.el: Move `require's before `eval-when-compile's.
4273
4274         * gnus-ems.el (gnus-alive-p):
4275         * gnus-fun.el (message-goto-eoh):
4276         * gnus-util.el (gnus-group-name-decode):
4277         * mail-source.el (gnus-compress-sequence):
4278         * message.el (Info-goto-node, format-spec):
4279         * mm-bodies.el (message-options-get):
4280         * mm-decode.el (mm-view-pkcs7):
4281         * mm-util.el (gmm-write-region):
4282         * mml-smime.el (mml-compute-boundary)
4283         (gnus-completing-read-with-default):
4284         * mml.el (widget-button-press, gnus-make-hashtable):
4285         * mml1991.el (mm-decode-content-transfer-encoding)
4286         (mm-encode-content-transfer-encoding)
4287         (message-options-get, message-options-set):
4288         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4289         * nnfolder.el (gnus-request-group):
4290         * nnheader.el (ietf-drums-unfold-fws):
4291         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4292         * smime.el (gnus-run-mode-hooks):
4293         * spam-stat.el (gnus-message): Autoload.
4294
4295         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4296         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4297         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4298         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4299         Add declare-function compatibility definition.
4300
4301         * gnus-cache.el (nnvirtual-find-group-art):
4302         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4303         (gnus-add-image, gnus-add-wash-type):
4304         * gnus-group.el (nnkiboze-score-file):
4305         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4306         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4307         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4308         (message-tokenize-header, gnus-get-buffer-create)
4309         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4310         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4311         * gnus.el (gnus-group-decoded-name):
4312         * mail-source.el (imap-capability):
4313         * mm-bodies.el (message-options-set):
4314         * mm-decode.el (gnus-configure-windows):
4315         * mm-extern.el (message-goto-body):
4316         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4317         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4318         (epg-sub-key-validity, message-options-set):
4319         * mml.el (widget-event-point, gnus-configure-windows):
4320         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4321         * mml2015.el (epg-check-configuration, epg-configuration)
4322         (message-options-set):
4323         * nndb.el (nndb-request-article):
4324         * nnfolder.el (gnus-request-create-group):
4325         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4326         * nnmaildir.el (gnus-group-mark-article-read):
4327         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4328         * rfc1843.el (message-fetch-field):
4329         * spam.el (gnus-extract-address-components):
4330         Declare as functions.
4331
4332 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4333
4334         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4335
4336         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4337
4338         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4339         bind show-trailing-whitespace for XEmacs.
4340
4341 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4342
4343         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4344         new no-op macro for backward compatibility.
4345
4346         * imap.el (imap-string-to-integer): New function.
4347
4348 2007-12-09  Glenn Morris  <rgm@gnu.org>
4349
4350         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4351
4352         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4353         * message.el, mm-view.el, sieve-manage.el, smime.el:
4354         Add declare-function compatibility definition.
4355
4356         * gnus-art.el (w3-region, w3m-region, Info-menu):
4357         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4358         * gnus-sum.el (gnus-get-predicate):
4359         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4360         * message.el (mail-abbrev-in-expansion-header-p):
4361         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4362         (w3m-detect-meta-charset, w3m-region):
4363         * sieve-manage.el (password-read, password-cache-add)
4364         (password-cache-remove):
4365         * smime.el (password-read-and-add): Declare as functions.
4366
4367 2007-12-08  David Kastrup  <dak@gnu.org>
4368
4369         * gnus-sum.el (gnus-summary-simplify-subject-query):
4370         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4371         `message'.
4372
4373 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4374
4375         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4376         it to bind idna-program, installation-directory, defined-colors, and
4377         face-attribute for XEmacs of the version that compiles defcustom forms.
4378
4379 2007-12-07  Glenn Morris  <rgm@gnu.org>
4380
4381         * gnus-art.el (article-make-date-line): Revert previous change.
4382
4383 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4384
4385         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4386
4387 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4388
4389         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4390         Call gnus-add-to-range ranges only once with a prepared article-list.
4391
4392 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4393
4394         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4395         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4396         group names with backslashes.  Reported by Tassilo Horn
4397         <tassilo@member.fsf.org>.
4398
4399 2007-12-06  Deepak Goel  <deego3@gmail.com>
4400
4401         * gnus-art.el (article-make-date-line):
4402         * gnus-start.el (gnus-load):
4403         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4404
4405 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4406
4407         * gnus-art.el (gnus-use-idna)
4408         * gnus-start.el (gnus-site-init-file)
4409         * message.el (message-use-idna)
4410         * mm-uu.el (mm-uu-hide-markers)
4411         * smiley.el (smiley-style): Revert changes that suppress warnings.
4412
4413 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4414
4415         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4416         specify charset to html source.  Reported by Christoph Conrad
4417         <christoph.conrad@gmx.de>.
4418
4419 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4420
4421         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4422         idna-program in order to suppress byte compile warning issued by XEmacs
4423         that came to byte compile the default value section of defcustom forms
4424         recently.
4425
4426         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4427         value of installation-directory.
4428
4429         * message.el (message-use-idna): Don't directly refer to the value of
4430         idna-program.
4431
4432         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4433
4434         * smiley.el (smiley-style): Don't directly call face-attribute.
4435
4436 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4437
4438         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4439
4440         * gnus-dired.el: Reduce Gnus dependencies.
4441         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4442         require.  Use autoloads instead.
4443         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4444         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4445         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4446         (gnus-dired-mode): Adjust doc string.
4447         (gnus-dired-mail-mode): New variable.
4448         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4449         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4450         (gnus-dired-mail-buffers): New function.  Return mail or message
4451         composition buffers.
4452         (gnus-dired-attach): Use it.
4453         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4454         NO-DECODE.
4455         (gnus-dired-print): Use `gnus-print-buffer' depending on
4456         `gnus-dired-mail-mode'.
4457
4458 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4459
4460         * rfc2047.el (rfc2047-encoded-word-regexp)
4461         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4462         explaining what regexp patterns are for.
4463
4464 2007-12-04  Glenn Morris  <rgm@gnu.org>
4465
4466         * password.el: Move to password-cache.el.
4467
4468         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4469         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4470         * mml-smime.el (password-read, password-cache-add)
4471         (password-cache-remove):
4472         No need to autoload, since mml-sec requires password.
4473
4474         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4475         * message.el (gnus-extract-address-components):
4476         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4477
4478         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4479         password.
4480
4481 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4482
4483         * mailcap.el: Reduce dependencies.
4484         (mail-header-parse-content-type): Autoload.
4485         (mailcap-delete-duplicates): New alias.
4486         (mailcap-mime-info): Add optional argument NO-DECODE.
4487         (mailcap-mime-types): Use mailcap-delete-duplicates.
4488
4489         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4490
4491 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4492
4493         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4494         (imap-parse-status): Upcase status-att for servers that sends them
4495         lower-case (e.g., MS Exchange 2007).
4496
4497 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4498
4499         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4500         function.
4501
4502         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4503         (gnus-uu-yenc-article): New function.
4504
4505         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4506
4507         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4508         buffer.
4509
4510 2007-12-02  Glenn Morris  <rgm@gnu.org>
4511
4512         * binhex.el (binhex): New custom group.
4513         (binhex-decoder-program, binhex-decoder-switches)
4514         (binhex-use-external): Move to the binhex custom group.
4515
4516         * uudecode.el (uudecode): New custom group.
4517         (uudecode-decoder-program, uudecode-decoder-switches)
4518         (uudecode-use-external): Move to the uudecode custom group.
4519
4520         * netrc.el (top-level): Don't load `encrypt' features.
4521         (netrc-parse): Don't use encrypt.
4522         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4523
4524         * encrypt.el: Remove file.
4525
4526 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4527
4528         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4529         matches on patches.
4530
4531         * gnus-art.el (gnus-article-browse-html-article): Mention
4532         `mm-text-html-renderer' in the doc string.
4533
4534         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4535         string.  Add comments.
4536
4537         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4538         if rhs is ASCII.
4539
4540 2007-12-01  Glenn Morris  <rgm@gnu.org>
4541
4542         * mail-source.el (top-level): Require format-spec before
4543         eval-when-compile.
4544
4545 2007-11-30  Glenn Morris  <rgm@gnu.org>
4546
4547         * encrypt.el: Require password, rather than autoloading password-read.
4548
4549 2007-11-29  Glenn Morris  <rgm@gnu.org>
4550
4551         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4552         (sasl-make-client, sasl-next-step, sasl-step-data)
4553         (sasl-step-set-data): Declare as functions.
4554
4555 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4556
4557         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4558
4559 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4560
4561         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4562         certs should be verified and what is to be done in the event of a
4563         verification failure.
4564
4565         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4566         caller can indicate whether the cache should be disregarded for this
4567         call.  This way the result of the call is reproducible at all times and
4568         can be considered a canonical server name for the supplied method.
4569         (gnus-agent-method-p): Canonicalize server names by pushing their
4570         method through `gnus-method-to-server' using the no-cache argument.
4571
4572         * gnus-srvr.el (gnus-server-insert-server-line): Call
4573         `gnus-method-to-server' with `no-cache' argument.
4574
4575         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4576         gnus-agent-possibly-synchronize-flags as this should be called when the
4577         server is actually being opened.
4578         (gnus-agent-possibly-synchronize-flags)
4579         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4580         flags file of an agentized server to the latter function.
4581
4582         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4583         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4584         after a connection has been established successfully.
4585
4586 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4587
4588         * gnus-art.el (article-display-face): Force to display face if called
4589         interactively; check if gnus-article-x-face-too-ugly matches author.
4590         (article-display-x-face): Display face even if From header is missing
4591         as article-display-face does.
4592
4593 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4594
4595         * hashcash.el (message-narrow-to-headers-or-head)
4596         (message-fetch-field, message-goto-eoh)
4597         (message-narrow-to-headers): Declare as functions.
4598
4599 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4600
4601         * mail-source.el (mail-sources): Default to fetch from file for
4602         compatibility with default of nnmail-spool-file.
4603
4604 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4605
4606         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4607         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4608         to look for encoded word that should be encoded again.
4609         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4610         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4611         encoding pattern.
4612         (rfc2047-decode-region): Switch strict regexp and loose one according
4613         to rfc2047-allow-irregular-q-encoded-words.
4614
4615 2007-11-25  Romain Francoise  <romain@orebokech.com>
4616
4617         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4618
4619 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4620
4621         * tls.el (tls-program): Provide more custom choices from
4622         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4623         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4624
4625 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4626
4627         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4628         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4629
4630         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4631         `nnmail-spool-file'.
4632
4633         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4634         `nnmail-spool-file'.
4635
4636         * gnus-move.el (gnus-change-server): Ditto.
4637
4638         * gnus-kill.el (gnus-batch-score): Ditto.
4639
4640         * gnus-cache.el (gnus-jog-cache): Ditto.
4641
4642         * gnus-msg.el (gnus-summary-reply):
4643         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4644
4645 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4646
4647         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4648         version.  Minor improvement to doc strings.
4649         (tls-program): Add comment.
4650
4651 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4652
4653         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4654         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4655         mismatch between the hostname provided in the certificate and the name
4656         of the host connnecting to.
4657         (open-tls-stream): Use them.  Check certificates against trusted root
4658         certificates.
4659
4660 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4661
4662         * gnus-cache.el (gnus-cache-generate-nov-databases):
4663         Use nnml-generate-nov-databases-directory instead of
4664         nnml-generate-nov-databases-1.
4665
4666 2007-11-24  Glenn Morris  <rgm@gnu.org>
4667
4668         * message.el (message-tool-bar-retro): Update for rename
4669         mail_send.xpm->mail-send.xpm.
4670
4671 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4672
4673         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4674         `smime-ldap-search' for Emacs 22 and up.
4675
4676 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4677
4678         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4679
4680         * message.el (message-send-mail-function): Fix error convention.
4681         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4682         (message-widen-reply, message-send-mail, message-talkative-question)
4683         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4684         (message-clone-locals, message-send-news): Use with-current-buffer.
4685         (message-insert-or-toggle-importance): Remove unused var `valid'.
4686         (message-make-references): Remove unused var `new-references'.
4687         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4688
4689 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4690
4691         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4692         (spam-split-symbolic-return-positive): Reflow docstring.
4693         (spam-backends, spam-summary-exit-behavior)
4694         (spam-mark-ham-unread-before-move-from-spam-group)
4695         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4696         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4697         (spam-clear-cache, spam-backend-check, spam-install-backend)
4698         (spam-install-statistical-backend, spam-list-of-processors)
4699         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4700         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4701         (spam-check-crm114, spam-initialize, spam-unload-hook):
4702         Fix typos in docstrings.
4703
4704 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4705
4706         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4707         been checked if they have never been read and those group levels are
4708         higher than the one that a user specified.
4709
4710 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4711
4712         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4713         foreign groups unless a group level is specified by a user.
4714         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4715
4716 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4717
4718         * message.el (message-send-mail-function): Require sendmail.
4719
4720 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4721
4722         * message.el (message-send-mail-function): Check for smtpmail too.
4723
4724         * utf7.el (utf7-encode, utf7-decode): Use coding system
4725         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4726
4727         * message.el (message-send-mail-function): New function.
4728         (message-send-mail-function): Set default using
4729         message-send-mail-function.  Adjust doc string.
4730         (message-send-mail-with-mailclient): New function.
4731
4732 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4733
4734         * smime.el (from):
4735         * rfc2047.el (message-posting-charset):
4736         * qp.el (mm-use-ultra-safe-encoding):
4737         * pop3.el (parse-time-months):
4738         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4739         * nnml.el (files):
4740         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4741         (jka-compr-compression-info-list, ange-ftp-path-format)
4742         (efs-path-regexp):
4743         * nndiary.el (files):
4744         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4745         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4746         (epg-digest-algorithm-alist, inhibit-redisplay)
4747         (password-cache-expiry):
4748         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4749         (pgg-output-buffer, password-cache-expiry):
4750         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4751         (efs-path-regexp):
4752         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4753         (inhibit-redisplay):
4754         * mm-uu.el (file-name, start-point, end-point, entry)
4755         (gnus-newsgroup-name, gnus-newsgroup-charset):
4756         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4757         (latin-unity-ucs-list):
4758         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4759         (mm-uu-binhex-decode-function):
4760         * message.el (gnus-message-group-art, gnus-list-identifiers)
4761         (rmail-enable-mime-composing, gnus-local-organization)
4762         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4763         (gnus-read-active-file, facemenu-add-face-function)
4764         (facemenu-remove-face-function, gnus-article-decoded-p)
4765         (tool-bar-mode):
4766         * mail-source.el (display-time-mail-function):
4767         * gnus-util.el (nnmail-pathname-coding-system)
4768         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4769         (gnus-original-article-buffer, gnus-user-agent)
4770         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4771         (xemacs-codename, sxemacs-codename, emacs-program-version):
4772         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4773         * gnus-start.el (gnus-agent-covered-methods)
4774         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4775         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4776         (gnus-newsgroup-headers, gnus-group-list-mode)
4777         (gnus-group-mark-positions, gnus-newsgroup-data)
4778         (gnus-newsgroup-unreads, nnoo-state-alist)
4779         (gnus-current-select-method, mail-sources)
4780         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4781         (nnmail-spool-file, gnus-cache-active-hashtb):
4782         * gnus-mh.el (mh-lib-progs):
4783         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4784         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4785         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4786         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4787         (gnus-group-buffer):
4788         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4789         (font-lock-set-defaults):
4790         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4791         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4792         (gnus-summary-post-menu, total-parts, type, condition, length):
4793         * gnus-agent.el (gnus-agent-read-agentview):
4794         * flow-fill.el (show-trailing-whitespace):
4795         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4796         eval-and-compile wrappers for byte compiler pacifiers.
4797
4798         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4799         (mm-display-inline-fontify): Check for featurep 'xemacs not
4800         extent-list.
4801
4802         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4803         itimer-list.
4804         (mm-create-image-xemacs): Only do something for XEmacs.
4805         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4806
4807         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4808
4809         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4810         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4811
4812 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4813
4814         * nnimap.el (nnimap-split-download-body):
4815         * gnus-demon.el (gnus-demon):
4816         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4817
4818 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4819
4820         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4821         macros.
4822         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4823         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4824         copy data from unibyte buffer to multibyte current buffer.
4825         (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
4826         to copy data from unibyte current buffer to multibyte buffer.
4827         (nntp-make-process-buffer): Make process buffer unibyte.
4828
4829         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4830
4831 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4832
4833         * pop3.el (pop3-open-server): Accept and process data more robustly at
4834         connexion start to avoid spurious "POP SSL connexion failed" errors.
4835
4836 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4837
4838         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4839         read group names.
4840
4841 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4842
4843         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4844
4845 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4846
4847         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4848         (nnmail-save-active): Use a unibyte buffer when saving active file,
4849         which may contain non-ASCII group names.
4850
4851         * nnml.el (nnml-request-group): Decode group names in messages.
4852
4853 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4854
4855         * message.el (message-citation-line-function)
4856         (message-insert-formatted-citation-line): Fix spelling of
4857         `message-insert-formated-citation-line'.
4858
4859 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4860
4861         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4862
4863 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4864
4865         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4866         nnmail-pathname-coding-system.
4867
4868         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4869         that a user enters; decode group names in messages.
4870
4871         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
4872
4873 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
4874
4875         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
4876
4877         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
4878
4879         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
4880         risky local variable.
4881
4882         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
4883
4884 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4885
4886         * encrypt.el: Improve documentation to fix function name typo.
4887         Reported by Daiki Ueno <ueno@unixuser.org>.
4888
4889 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4890
4891         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
4892         even if the point is not in the last page of an article.
4893         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
4894         back to the previous page.
4895
4896 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
4897
4898         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
4899
4900 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4901
4902         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
4903
4904 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4905
4906         * message.el (message-check-news-body-syntax): Avoid
4907         mm-string-as-multibyte.
4908         (message-hide-headers): Don't assume (point-min)==1.
4909
4910 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
4911
4912         * message.el (message-remove-blank-cited-lines): Fix if remove is
4913         given.
4914         (message-bogus-address-regexp): New variable.
4915         (message-bogus-recipient-p): New function.
4916         (message-check-recipients): New command.
4917         (message-syntax-checks): Add `bogus-recipient'.
4918         (message-fix-before-sending): Add `bogus-recipient'.
4919
4920         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
4921         (gnus-treat-body-boundary): Don't test window-system.
4922
4923 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
4924
4925         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
4926
4927 2007-10-28  Miles Bader  <miles@gnu.org>
4928
4929         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
4930         at compile-time too.
4931
4932 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
4933
4934         * gnus-msg.el (gnus-message-setup-hook): Add
4935         `message-remove-blank-cited-lines' to options.
4936
4937 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
4938
4939         * message.el (message-remove-blank-cited-lines): New function.
4940         Suggested by Karl Plästerer.
4941
4942 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4943
4944         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
4945         mapc.
4946
4947         * imap.el (imap-open): Replace mapcar called for effect with mapc.
4948         (top-level): Use mapc to set functions to be traced for debugging.
4949
4950         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
4951         called for effect with while loop.
4952
4953         * message.el (message-talkative-question): Replace mapcar called for
4954         effect with mapc.
4955
4956         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
4957         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
4958         called for effect with dolist.
4959
4960         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
4961
4962         * nndiary.el: Use dolist instead of mapcar to add diary headers to
4963         gnus-extra-headers and nnmail-extra-headers.
4964
4965         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
4966         called for effect with dolist.
4967         (top-level): Use mapc to set functions to be traced for debugging.
4968
4969         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
4970         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
4971         dolist.
4972
4973         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
4974         Replace mapcar called for effect with mapc.
4975         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
4976         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
4977         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
4978         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
4979
4980         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
4981         remove-if that's a cl function.
4982
4983         * webmail.el (webmail-debug): Replace mapcar called for effect with
4984         dolist.
4985
4986         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
4987         with mapc.
4988
4989 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4990
4991         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
4992         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
4993         with while loop.
4994
4995         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
4996         functions from article-* functions.
4997         (gnus-multi-decode-header): Replace mapcar called for effect with
4998         dolist.
4999
5000         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5001         (gnus-bookmark-show-details): Replace mapcar called for effect with
5002         while loop.
5003
5004         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5005         called for effect with while loop.
5006
5007         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5008         with dolist.
5009
5010         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5011         mapcar called for effect with dolist.
5012
5013         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5014
5015         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5016         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5017         Replace mapcar called for effect with dolist.
5018         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5019         mapc.
5020
5021         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5022         Replace mapcar called for effect with dolist.
5023         (gnus-topic-list): Replace mapcar called for effect with mapc.
5024
5025         * gnus.el: Use mapc instead of mapcar to add autoloads.
5026
5027 2007-10-23  Richard Stallman  <rms@gnu.org>
5028
5029         * gnus-group.el (gnus-group-highlight): Mark as risky.
5030
5031 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5032
5033         * gnus.el (gnus-server-to-method): Return method found first in
5034         gnus-newsrc-alist.
5035
5036         * gnus-art.el (gnus-article-highlight-signature)
5037         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5038         button overlay without the front stickiness.
5039
5040 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5041
5042         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5043         overview buffer needed a catch to receive its throw.
5044         (gnus-agent-flush-cache): Declared as interactive to make this function
5045         easier to use.
5046
5047 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5048
5049         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5050         `next-line'.
5051
5052 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5053
5054         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5055         exclude address matching message-dont-reply-to-names.
5056
5057 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5058
5059         * gnus-util.el (gnus-string<): New function.
5060
5061         * gnus-sum.el (gnus-article-sort-by-author)
5062         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5063
5064 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5065
5066         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5067         the frame-focus tag is set in gnus-buffer-configuration.
5068
5069 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5070
5071         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5072         the front stickiness.
5073
5074 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5075
5076         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5077         url pattern; remove duplicate one.
5078         (gnus-article-extend-url-button): New function.
5079         (gnus-article-add-buttons): Use it.
5080         (gnus-button-push): Use concatenated url that it makes.
5081
5082 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5083
5084         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5085
5086 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5087
5088         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5089         Don't hardcode point-min==1.
5090
5091 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5092
5093         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5094         Fix comment about "iso8859-1".
5095
5096 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5097
5098         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5099         ones returned from the verify-function.
5100
5101         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5102         mml2015-extract-cleartext-signature if extraction failed.
5103
5104 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5105
5106         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5107         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5108         failed.
5109
5110 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5111
5112         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5113
5114 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5115
5116         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5117         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5118         recommends to use EasyPG instead of PGG.
5119
5120         * pgg.el: Revert to revision 6.23.2.16.
5121
5122         * pgg-def.el: Revert to revision 6.6.2.14.
5123
5124         * pgg-gpg.el: Revert to revision 6.23.2.34.
5125
5126 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5127
5128         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5129         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5130         thread for both the null and zero (kill/expire thread) universal prefix
5131         cases.
5132         (gnus-summary-expire-thread): Add new function to expire a thread,
5133         using gnus-summary-kill-thread.
5134         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5135         shortcuts for gnus-summary-expire-thread.
5136         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5137         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5138
5139 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5140
5141         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5142         extras value, so an extras entry can be deleted.
5143         (gnus-registry-delete-extra-entry): Use it.
5144         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5145         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5146         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5147         storage through the gnus-registry, and provide an appropriate API for
5148         it.
5149
5150 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5151
5152         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5153         Suggested by Leo <sdl.web@gmail.com>.
5154
5155         * gnus.el: Do.
5156
5157 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5158
5159         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5160         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5161
5162         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5163
5164         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5165         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5166
5167 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5168
5169         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5170         newline.
5171         (nnmbox-request-accept-article): Don't change article in source buffer;
5172         narrow to header to use message-fetch-field rather than
5173         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5174         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5175         as delimiters; make sure article ends with newline.
5176         (nnmbox-delete-mail): Correct last position of article to be deleted;
5177         ignore X-Gnus-Newsgroup header in article body.
5178         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5179         positions; make sure article ends with newline.
5180
5181         * message.el (message-display-abbrev): Don't infloop when a user
5182         inserts SPC in the beginning of header.
5183
5184         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5185         coding-system-for-read and coding-system-for-write for XEmacs having no
5186         file-coding feature.
5187
5188         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5189
5190 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5191
5192         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5193         list of groups not followed by default.  Fix type to be regexp.
5194         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5195
5196 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5197
5198         * hmac-def.el (define-hmac-function): Switch from old-style to
5199         new-style backquotes.
5200
5201         * md4.el (md4-make-step): Likewise.
5202
5203 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5204
5205         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5206         raw-text coding system when saving .newsrc file, which may contain
5207         non-ASCII group names.
5208
5209 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5210
5211         * gnus-cus.el (gnus-score-extra): New widget.
5212         (gnus-score-extra-convert): New function.
5213         (gnus-score-customize): Use it for Extra.
5214
5215 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5216
5217         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5218         (mml2015-mailcrypt-clear-verify): Use it.
5219         (mml2015-gpg-clear-verify): Use it.
5220         (mml2015-pgg-clear-verify): Use it.
5221         (mml2015-epg-clear-verify): Replace the current part with the output
5222         from GnuPG; don't extract the plaintext by itself.
5223
5224         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5225         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5226         mml2015-clear-verify-function; don't touch the armor headers or
5227         dash-escaped text here.
5228
5229 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5230
5231         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5232         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5233         parts, or application/octet-stream as a last resort.
5234         (gnus-mime-view-part-as-type): Don't toggle display.
5235         (gnus-mime-view-part-as-charset): Don't turn off display before
5236         querying charset.
5237
5238         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5239         stuff to undisplayer function in Emacs.
5240         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5241
5242         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5243         text/calendar parts.
5244
5245 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5246
5247         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5248         decoding text/calendar parts.
5249
5250         * message.el (message-forward-make-body-mime): Always mark body as
5251         having no illegible text; remove signed-or-encrypted argument.
5252         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5253
5254         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5255         (mml-generate-mime-1): Don't encode body if it is specified to be in
5256         raw form; don't make buffer be unibyte when inserting multibyte string.
5257
5258 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5259
5260         * sha1.el: Fix up comment style.
5261         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5262         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5263
5264         * hex-util.el: Fix up comment style.
5265         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5266
5267         * gnus-salt.el: Use with-current-buffer.
5268         (gnus-pick-setup-message): Fix long-standing typo.
5269
5270 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5271
5272         * imap.el (imap-logout-timeout): New variable.
5273         (imap-logout, imap-logout-wait): New functions.
5274         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5275
5276         * nnimap.el (nnimap-logout-timeout): New server variable.
5277         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5278         nnimap-logout-timeout.
5279
5280         * gnus-art.el (gnus-article-summary-command-nosave)
5281         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5282
5283 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5284
5285         * gnus.el (gnus-maximum-newsgroup): New variable.
5286
5287         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5288         according to gnus-maximum-newsgroup.
5289
5290         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5291         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5292         Limit the range of articles according to gnus-maximum-newsgroup.
5293
5294 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5295
5296         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5297         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5298         Don't perform gnus-configure-windows here; reuse existing sticky
5299         article buffer.
5300
5301         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5302         it doesn't exist in gnus-article-mode.
5303
5304 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5305
5306         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5307         (gnus-agent-decoded-group-name): New function.
5308         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5309         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5310
5311 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5312
5313         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5314         Add binding for gnus-sticky-article.
5315         (gnus-summary-exit): Don't kill sticky article buffers.
5316
5317         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5318         article buffer.
5319         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5320         (gnus-kill-sticky-article-buffers): New commands.
5321
5322 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5323
5324         * nntp.el (nntp-xref-number-is-evil): New server variable.
5325         (nntp-find-group-and-number): If it is non-nil, don't trust article
5326         numbers in the Xref header.
5327
5328 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5329
5330         * gnus-agent.el (gnus-agent-read-group): New function.
5331         (gnus-agent-flush-group, gnus-agent-expire-group)
5332         (gnus-agent-regenerate-group): Use it.
5333         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5334         nnmail-pathname-coding-system.
5335
5336 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5337
5338         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5339
5340         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5341         that are unread as unread, and also as selected so that information of
5342         marks having been changed by a user may be updated when exiting group.
5343
5344 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5345
5346         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5347         calculated ignoring signature parts to gnus-treat-article.
5348
5349 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5350
5351         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5352         a point here in order to keep the window start.
5353         (gnus-insert-mime-security-button): Make a button overlay without the
5354         front stickiness.
5355         (gnus-mime-display-security): Goto the end of a button.
5356
5357         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5358
5359 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5360
5361         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5362         group-name-at-point.
5363         (gnus-group-completing-read): New function that offers decoded
5364         non-ASCII group names for completion.
5365         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5366         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5367         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5368         (gnus-group-fetch-control): Use it.
5369         (gnus-fetch-group): Use group-name-at-point for the initial value
5370         rather than the default value; use gnus-alive-p.
5371
5372         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5373         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5374         (gnus-summary-post-news): Use gnus-group-completing-read.
5375
5376         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5377         (gnus-read-move-group-name): Decode group name for completion.
5378
5379 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5380
5381         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5382         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5383         Yamaoka slightly modified the code).
5384
5385 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5386
5387         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5388         (nnmail-split-incoming): Bind it.
5389
5390         * nnml.el (nnml-group-name-charset): New function.
5391         (nnml-decoded-group-name): Use it; don't decode group name if
5392         nnmail-group-names-not-encoded-p is non-nil.
5393         (nnml-encoded-group-name): New function.
5394         (nnml-group-pathname): Inline nnml-decoded-group-name.
5395         (nnml-request-expire-articles): Decode group name in message.
5396         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5397         nnmail-pathname-coding-system.
5398         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5399         not decoded ones according to nnmail-group-names-not-encoded-p.
5400         (nnml-generate-active-info): Use nnml-encoded-group-name.
5401
5402 2007-08-08  Glenn Morris  <rgm@gnu.org>
5403
5404         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5405         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5406         doc-strings and comments.
5407
5408 2007-07-25  Glenn Morris  <rgm@gnu.org>
5409
5410         * Relicense all FSF files to GPLv3 or later.
5411
5412 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5413
5414         * gnus-sum.el (gnus-summary-move-article): Make
5415         gnus-summary-respool-article work.
5416
5417 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5418
5419         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5420         string.
5421
5422 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5423
5424         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5425         that should be ignored when comparing distant RSS articles with local
5426         ones.
5427         (nnrss-make-hash-index): New function.  Create a hash index according
5428         to the ignored fields.
5429         (nnrss-check-group): Use it.
5430
5431 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5432
5433         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5434
5435         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5436
5437         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5438         the new optional argument ENCODED is non-nil.
5439         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5440         coding system for encoding group name.
5441         (gnus-group-make-rss-group): Pass un-encoded group name to
5442         gnus-group-make-group.
5443         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5444         encoded.
5445
5446         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5447         Encode group name to which articles are moved or copied.
5448         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5449         coding system for encoding Newsgroup, Followup-To and Xref headers.
5450
5451         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5452         marks; use nnheader-file-coding-system to write a file.
5453         (nnagent-retrieve-headers): Bind file-name-coding-system to
5454         nnmail-pathname-coding-system.
5455
5456         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5457
5458         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5459         (nnml-request-article, nnml-request-create-group)
5460         (nnml-request-rename-group, nnml-find-id)
5461         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5462         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5463         (nnml-save-marks): Use nnml-group-pathname instead of
5464         nnmail-group-pathname.
5465
5466         (nnml-request-create-group, nnml-request-expire-articles)
5467         (nnml-request-move-article, nnml-request-delete-group)
5468         (nnml-deletable-article-p, nnml-possibly-create-directory)
5469         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5470         (nnml-open-marks): Bind file-name-coding-system to
5471         nnmail-pathname-coding-system.
5472
5473         (nnml-request-article): Pass server argument to nnml-find-group-number.
5474         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5475         server argument to nnml-possibly-create-directory.
5476         (nnml-request-accept-article): Pass server argument to
5477         nnml-active-number and nnml-save-mail.
5478         (nnml-find-group-number): Pass server argument to nnml-find-id.
5479         (nnml-request-update-info): Pass server argument to
5480         nnml-marks-changed-p.
5481
5482         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5483         (nnml-save-mail, nnml-active-number): Add server argument.
5484
5485         (nnml-request-delete-group): Warn if group is missing.
5486         (nnml-get-nov-buffer): Decode group name.
5487         (nnml-generate-active-info): Encode group name.
5488         (nnml-open-marks): Decode group name in messages.
5489
5490 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5491
5492         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5493         if it is not specified.
5494         (gnus-article-pipe-part, gnus-article-save-part)
5495         (gnus-article-interactively-view-part, gnus-article-copy-part)
5496         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5497         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5498         (gnus-article-replace-part, gnus-article-delete-part)
5499         (gnus-article-view-part-as-type): Pass raw prefix argument to
5500         gnus-article-part-wrapper.
5501
5502 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5503
5504         * gnus-agent.el (gnus-agent-save-active): Bind
5505         nnheader-file-coding-system to gnus-agent-file-coding-system.
5506
5507         * gnus-cache.el (gnus-cache-save-buffers)
5508         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5509         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5510         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5511         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5512         (gnus-cache-generate-active, gnus-cache-rename-group)
5513         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5514         (gnus-cache-update-overview-total-fetched-for): Bind
5515         file-name-coding-system to nnmail-pathname-coding-system.
5516         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5517         variables.
5518         (gnus-cache-decoded-group-name): New function.
5519         (gnus-cache-file-name): Use it.
5520         (gnus-cache-generate-active): Use non-decoded group name for active.
5521
5522         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5523         right place.
5524         (gnus-write-active-file): Don't break non-ASCII group names.
5525
5526         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5527         nnmail-pathname-coding-system.
5528
5529         * lpath.el: Bind default-file-name-coding-system,
5530         file-name-coding-system and language-info-alist for XEmacs.
5531
5532         * gnus-uu.el (gnus-uu-decode-save): Typo.
5533
5534 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5535
5536         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5537
5538 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5539
5540         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5541         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5542         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5543         (gnus-agent-flush-group, gnus-agent-flush-cache)
5544         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5545         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5546         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5547         (gnus-agent-regenerate-group)
5548         (gnus-agent-update-files-total-fetched-for)
5549         (gnus-agent-update-view-total-fetched-for): Bind
5550         file-name-coding-system to nnmail-pathname-coding-system.
5551         (gnus-agent-group-pathname): Don't encode file names by
5552         nnmail-pathname-coding-system.
5553         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5554         coding-system-for-write instead of buffer-file-coding-system to
5555         gnus-agent-file-coding-system.
5556
5557         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5558         Decode group name.
5559
5560         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5561
5562         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5563         (gnus-read-newsrc-el-file): Make group names unibyte.
5564
5565         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5566         nnmail-pathname-coding-system.
5567
5568         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5569         (nnrss-request-delete-group): Bind file-name-coding-system to
5570         nnmail-pathname-coding-system.
5571         (nnrss-read-server-data, nnrss-read-group-data): Bind
5572         file-name-coding-system correctly.
5573         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5574
5575         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5576         (nntp-server-to-method-cache): New variable.
5577         (nntp-group-pathname): New function that decodes non-ASCII group names.
5578         (nntp-possibly-create-directory, nntp-marks-changed-p)
5579         (nntp-save-marks, nntp-open-marks): Use it.
5580         (nntp-possibly-create-directory, nntp-open-marks):
5581         Bind file-name-coding-system to nnmail-pathname-coding-system.
5582         (nntp-open-marks): Decode group names when bootstrapping marks.
5583
5584         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5585         Newsgroups and Folowup-To headers.
5586
5587 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5588
5589         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5590         (gnus-server-closed-face, gnus-server-denied-face)
5591         (gnus-server-offline-face): Remove variable.
5592         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5593
5594         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5595         of modifying message-stack directly for XEmacs.
5596
5597         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5598         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5599         if the coding-system argument is nil for XEmacs.
5600
5601         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5602         mm-charset-override-alist.
5603
5604         * rfc2047.el: Don't require base64; require rfc2045 for the function
5605         rfc2045-encode-string.
5606         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5607         to quote the parameter value.
5608
5609 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5610
5611         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5612         form in gnus-group-name-charset-method-alist.
5613
5614         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5615         overrides the default layout edit-form.
5616
5617         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5618
5619         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5620
5621 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5622
5623         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5624         as unfetched articles.
5625
5626 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5627
5628         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5629
5630 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5631
5632         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5633         original back end that keeps marks in the local system.
5634
5635 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5636
5637         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5638         arg of pop-to-buffer for XEmacs.
5639         (gnus-article-read-summary-keys): Ditto; don't restore window
5640         configuration if summary command ends up with neither article buffer
5641         nor summary buffer; describe bindings if summary keys end with C-h.
5642
5643 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5644
5645         * message.el (message-fix-before-sending): Skip raw message part to be
5646         forwarded while checking illegible text.
5647         (message-forward-make-body-mime, message-forward-make-body): Mark
5648         signed or encrypted raw message as having no illegible text.
5649
5650 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5651
5652         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5653         (gnus-message-with-timestamp-1): New macro.
5654         (gnus-message-with-timestamp): New function.
5655         (gnus-message): Use them.
5656
5657         * nnheader.el (nnheader-message): Use them.
5658
5659 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5660
5661         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5662         .newsrc.eld file.
5663
5664 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5665
5666         * gnus-agent.el (gnus-agent-fetch-headers)
5667         (gnus-agent-retrieve-headers): Bind
5668         gnus-decode-encoded-address-function to identity.
5669
5670         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5671         available also when the server returns simply a dot.
5672
5673         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5674
5675 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5676
5677         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5678
5679 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5680
5681         * gnus-ems.el (gnus-x-splash): Make it work.
5682
5683         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5684         from being used.
5685
5686         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5687
5688 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5689
5690         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5691         4th and the 5th arguments.
5692
5693         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5694         the front stickiness.
5695         (gnus-article-summary-command-nosave): Correct the order of the
5696         arguments passed to pop-to-buffer.
5697         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5698         summary command ends up with the article buffer.
5699
5700         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5701         the same faces.
5702
5703 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5704
5705         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5706
5707 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5708
5709         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5710         * gnus-sum.el (gnus-summary-highlight):
5711         * pgg.el (pgg-sign-region, pgg-sign):
5712         * mail-source.el (mail-source-delete-old-incoming-confirm):
5713         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5714
5715 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5716
5717         * gnus-art.el (gnus-mime-view-part-externally)
5718         (gnus-mime-view-part-internally): Fix predicate function passed to
5719         completing-read.
5720
5721         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5722
5723         * gnus.el (gnus-update-message-archive-method): Add :version.
5724
5725 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5726
5727         * gnus.el (gnus-update-message-archive-method): New variable.
5728
5729         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5730         according to gnus-message-archive-method if
5731         gnus-update-message-archive-method is non-nil.
5732
5733 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5734
5735         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5736         by Loic Dachary <loic@dachary.org>.
5737         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5738
5739 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5740
5741         * message.el (message-pop-to-buffer): Add switch-function argument.
5742         (message-mail): Pass switch-function argument to it.
5743
5744 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5745
5746         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5747         Improve doc string.
5748
5749 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5750
5751         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5752         (gnus-header-content)
5753         * gnus-cite.el (gnus-cite-10)
5754         * gnus-srvr.el (gnus-server-closed)
5755         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5756         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5757         (gnus-group-mail-3-empty, gnus-group-mail-low)
5758         (gnus-group-mail-low-empty, gnus-splash)
5759         * message.el (message-header-to, message-header-cc)
5760         (message-header-subject, message-header-other, message-header-name)
5761         (message-header-xheader, message-separator, message-cited-text)
5762         (message-mml): Lighten colors of faces used for dark background.
5763
5764 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5765
5766         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5767         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5768
5769 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5770
5771         * message.el (message-narrow-to-headers-or-head):
5772         Ignore mail-header-separator in the body.
5773
5774 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5775
5776         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5777         same as window size.
5778
5779 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5780
5781         * message.el (message-font-lock-keywords): Use message-header-xheader
5782         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5783         ahead of the anything pattern, to get it recognised.
5784
5785 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5786
5787         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5788         spam.el loads uses it in the compiled defadvice form.
5789
5790 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5791
5792         * gnus-sum.el (gnus-articles-to-read)
5793         (gnus-summary-insert-old-articles): Don't truncate group name for
5794         `read-string'.
5795
5796         * gnus-util.el (gnus-limit-string): Delete this function.
5797
5798         * gnus-sum.el (gnus-simplify-subject-fully): Use
5799         `truncate-string-to-width' instead.
5800
5801 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5802
5803         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5804         if, on summary exit, the next group has to be selected.
5805         (gnus-summary-exit): Use it.
5806
5807 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5808
5809         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5810         non-break space.
5811
5812 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5813
5814         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5815         Check if group is not a directory.
5816         (nnfolder-request-expire-articles): Don't delete articles if the target
5817         group is not available.
5818
5819         * nnml.el (nnml-request-create-group): Properly check if group is not a
5820         file.
5821         (nnml-request-expire-articles): Don't delete articles if the target
5822         group is not available.
5823
5824         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5825         Don't quote characters that are within parentheses.
5826
5827 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5828
5829         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5830         (gnus-handle-ephemeral-exit): Select article according to it.
5831
5832 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5833
5834         * message.el (message-insert-formated-citation-line): Remove newline.
5835         (message-citation-line-format): Add final \n here so that the user can
5836         avoid a blank line.
5837
5838 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5839
5840         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5841         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5842         Update lanl/arXiv support.
5843
5844 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5845
5846         * gnus.el: Bump version number.
5847
5848 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5849
5850         * gnus.el (gnus-version-number): Bump version.
5851
5852 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5853
5854         * gnus.el: No Gnus v0.6 is released.
5855
5856 2007-04-27  Didier Verna  <didier@xemacs.org>
5857
5858         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5859         * gmm-utils.el (gmm-regexp-concat): here.
5860         * message.el: Don't require 'gnus-util.
5861         (message-dont-reply-to-names): Handle name change above.
5862         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5863
5864 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5865
5866         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5867         since the initial value varies according to the system.
5868
5869 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5870
5871         * mm-util.el (mm-charset-synonym-alist): Defcustom.
5872
5873 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5874
5875         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
5876
5877 2007-04-24  Didier Verna  <didier@xemacs.org>
5878
5879         Improve the type of gnus-ignored-from-addresses.
5880         * gnus-util.el (gnus-orify-regexp): New function.
5881         * message.el (gnus-util): Require it.
5882         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
5883         * gnus-sum.el (gnus-ignored-from-addresses): New function.
5884         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
5885
5886 2007-04-24  Didier Verna  <didier@xemacs.org>
5887
5888         * gnus-sum.el:
5889         * gnus-utils.el: Fix some trailing whitespaces.
5890
5891 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5892
5893         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
5894         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
5895         article's Message-ID; refer parent article in summary buffer.
5896
5897         * message.el (message-bounce): Call mime-to-mml.
5898
5899         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
5900         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
5901         optimize and/or forms properly.
5902
5903 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
5904
5905         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
5906         URL.
5907
5908 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5909
5910         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
5911
5912 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5913
5914         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
5915         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
5916         displayed of multipart/alternative part if it is invoked from summary
5917         buffer.
5918
5919         * mm-view.el (mm-inline-text-html-render-with-w3m)
5920         (mm-inline-text-html-render-with-w3m-standalone)
5921         (mm-inline-render-with-function): Use mail-parse-charset by default.
5922
5923 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
5924
5925         * parse-time.el (parse-time-string-chars): Check if CHAR
5926         is less than the length of parse-time-syntax.
5927
5928 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5929
5930         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
5931         from gnus-newsgroup-processable.
5932
5933 2007-04-16  Didier Verna  <didier@xemacs.org>
5934
5935         * gnus-msg.el (gnus-configure-posting-styles): Handle
5936         message-signature-directory properly with :file syntax.  Reported by
5937         "Leo".
5938
5939 2007-04-11  Didier Verna  <didier@xemacs.org>
5940
5941         New user option: message-signature-directory.
5942         * gnus-msg.el (gnus-configure-posting-styles): Support it.
5943         * message.el (message-insert-signature): Ditto.
5944         * message.el (message-signature-file): Doc update.
5945         * message.el (message-signature-directory): New.
5946
5947 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5948
5949         * gnus-msg.el (gnus-inews-yank-articles): Use
5950         message-exchange-point-and-mark instead of exchange-point-and-mark.
5951
5952 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5953
5954         * message.el (message-yank-original): Make sure cited text ends with
5955         newline; don't exchange point and mark.
5956
5957 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
5958
5959         * tls.el (open-tls-stream): Properly handle case where there
5960         is no associated buffer.
5961
5962 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
5963
5964         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
5965         message-yank-original, make sure (< mark TEXT point).
5966
5967 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
5968
5969         * message.el (message-fill-column): New variable.
5970         (message-mode): Use it.  Add comment on a possible new hook.
5971
5972         * nnmail.el (nnmail-spool-file): Mark as obsolete.
5973         (nnmail-get-new-mail): Reformat.
5974
5975         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
5976
5977         * gmm-utils.el: Fix Commentary.
5978         (gmm-tool-bar-from-list): Fix typo in doc string.
5979
5980 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
5981
5982         * message.el (message-yank-original): Don't switch point and mark
5983         unnecessarily to put point and mark as documented.
5984
5985 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5986
5987         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
5988         from the message heads.
5989
5990 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
5991
5992         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
5993         article buffer does not have a window.  This may not be the best
5994         solution but is certainly better than setting the start of the null,
5995         that is the current, window.
5996
5997 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
5998
5999         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6000         (gnus-draft-setup): Run it.
6001
6002         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6003         gnus-score-fast-scoring.  Allow regexp.
6004         (gnus-score-headers): Use it.
6005
6006         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6007         XEmacs.
6008
6009         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6010         string.
6011         (gnus-button-alist): Also catch `<f1> k ...'.
6012         (gnus-treat-display-x-face): Fix doc string.
6013
6014 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6015
6016         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6017         evaluation of gnus-extended-version to ensure correct generation of the
6018         User-Agent header when message-generate-headers-first is used.
6019
6020 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6021
6022         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6023         hashcash-path is nil.  Don't call callback with incorrect number of
6024         parameters if val is 0.
6025
6026 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6027
6028         * message.el (message-required-news-headers):
6029         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6030
6031 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6032
6033         * tls.el (open-tls-stream): In handshake-waiting loop,
6034         don't wait more if there is output available to process.
6035
6036 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6037
6038         * tls.el (tls-program): Doc fix.
6039
6040 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6041
6042         * message.el (message-generate-new-buffers): Change the meaning of the
6043         nil value; add `standard' to the choices; treat t as `unique'; improve
6044         doc string.
6045         (gnus-select-frame-set-input-focus): Autoload.
6046         (message-buffer-name): Search for the existing message buffer if
6047         message-generate-new-buffers is nil or `standard'; treat the value t of
6048         message-generate-new-buffers as `unique'.
6049         (message-pop-to-buffer): Raise the frame already displaying the message
6050         buffer; clear the echo area after querying.
6051         (message-setup): Pass the `continue' argument to compose-mail.
6052         (message-mail): Prefer `switch-function' if it is given; search for the
6053         existing message buffer if the `continue' argument is non-nil; pass
6054         continue and switch-function arguments to compose-mail by way of
6055         message-setup.
6056         (message-mail-other-window): Adjust argument of message-setup.
6057         (message-mail-other-frame): Ditto.
6058
6059 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6060
6061         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6062         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6063         to turn font-lock on when turning gnus-message-citation-mode on.
6064
6065 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6066
6067         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6068         (mml-smime-function-alist): New variable; add epg as the backend.
6069         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6070         mml-smime- functions instead.
6071         * mm-view.el: Require smime.
6072
6073 2007-03-05  Didier Verna  <didier@xemacs.org>
6074
6075         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6076         instead of just inheritance for posting styles.
6077         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6078
6079 2007-02-24  Chris Moore  <dooglus@gmail.com>
6080
6081         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6082         * pgg-pgp.el (pgg-pgp-encrypt-region):
6083         * pgg-gpg.el (pgg-gpg-encrypt-region):
6084         Check pgg-encrypt-for-me if no other recipients.
6085
6086 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6087
6088         * tls.el (tls-certtool-program): Fix custom type.
6089
6090 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6091
6092         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6093         and point-at-eol instead of line-(beginning|end)-position.
6094
6095         * assistant.el (assistant-parse-buffer): Ditto.
6096
6097         * netrc.el (netrc-parse-services): Ditto.
6098
6099 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6100
6101         * mml2015.el (mml2015-epg-find-usable-key): New function.
6102         (mml2015-epg-sign): Use it.
6103         (mml2015-epg-encrypt): Use it.
6104
6105 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6106
6107         * message.el (message-make-in-reply-to): Quote name containing
6108         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6109         if there are special characters.  Reported by NAKAJI Hiroyuki
6110         <nakaji@jp.freebsd.org>.
6111
6112 2007-02-27  Didier Verna  <didier@xemacs.org>
6113
6114         Include the group parameters as well as the topic ones in the
6115         inheritance filter process.
6116         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6117         argument GROUP-PARAMS-LIST.
6118         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6119
6120 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6121
6122         * nntp.el (nntp-never-echoes-commands)
6123         (nntp-open-connection-functions-never-echo-commands): New variables.
6124         (nntp-send-command): Use them.
6125
6126 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6127
6128         * mml2015.el (mml2015-epg-verify): Simplified.
6129
6130 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6131
6132         * mml.el (mml-content-disposition-alist): New user option.
6133         (mml-content-disposition): New function.
6134         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6135         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6136
6137 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6138
6139         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6140         verification.
6141
6142 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6143
6144         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6145         articles posted in the last 24 hours.
6146
6147 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6148
6149         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6150
6151 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6152
6153         * nntp.el (nntp-send-command): Don't wait for echoes when
6154         nntp-open-ssl-stream is used.
6155
6156 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6157
6158         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6159         (gnus-message-add-citation-keywords)
6160         (gnus-message-remove-citation-keywords): Remove.
6161         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6162         directly, make the variables in font-lock-defaults buffer-local, add
6163         gnus-message-citation-keywords to them and then update the value of
6164         font-lock-keywords.
6165
6166 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6167
6168         * message.el (message-cite-original-1): Don't call
6169         gnus-article-highlight-citation.
6170
6171         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6172         citations; fix line count.
6173
6174 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6175
6176         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6177         (gnus-message-add-citation-keywords)
6178         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6179         versions of font-lock-add-keywords and font-lock-remove-keywords to
6180         work with XEmacs correctly.
6181
6182 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6183
6184         * gnus-cite.el (gnus-cite-face-list): Set the values of
6185         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6186         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6187         (gnus-message-cite-prefix-regexp): New variable.
6188         (gnus-message-search-citation-line): Use it; protect against long
6189         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6190         the 0th match data for Emacs.
6191         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6192         (gnus-message-add-citation-keywords): Append keywords rather than
6193         prepending; emulate font-lock-add-keywords if it is not available.
6194         (gnus-message-remove-citation-keywords): Emulate
6195         font-lock-remove-keywords if it is not available.
6196
6197         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6198
6199         * message.el (message-cite-prefix-regexp): Set the value of
6200         gnus-message-cite-prefix-regexp.
6201
6202 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6203
6204         * nnweb.el (nnweb-google-parse-1): Update parser.
6205
6206 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6207
6208         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6209
6210 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6211
6212         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6213         regexp.
6214
6215 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6216
6217         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6218         string-to-multibyte.
6219         (uudecode-decode-region-internal): Use it.
6220
6221         * lpath.el: Fbind string-as-multibyte for XEmacs.
6222
6223 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6224
6225         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6226         custom choice.
6227
6228         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6229
6230 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6231
6232         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6233
6234         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6235         `write-region' to respect `mm-inhibit-file-name-handlers'.
6236
6237 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6238
6239         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6240         Use gnus-home-directory instead of "~/" or "$HOME".
6241
6242 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6243
6244         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6245         to mention filename.
6246         Add comments at beginning regarding usage.
6247         (encrypt-write-file-contents): Change interactive so a string is
6248         acceptable.  If the file has no associated model, show an error instead
6249         of a nonsense prompt.
6250
6251 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6252
6253         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6254         Thanks to Yoshihiko Yamada for kind notification of this typo.
6255
6256 2007-01-12  Kenichi Handa  <handa@m17n.org>
6257
6258         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6259         multibyte buffer.
6260
6261 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6262
6263         * gnus-score.el (gnus-score-fast-scoring): New variable.
6264         (gnus-score-headers): Use it.
6265
6266         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6267
6268         * message.el (message-cite-original-1): Call
6269         gnus-article-highlight-citation if requested.
6270         (message-make-from): Allow name and address as optional arguments.
6271
6272         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6273
6274         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6275         bugs to doc string.
6276         (gnus-button-alist): Add mid\\|message-id.
6277         (gnus-button-fetch-group): Extend for use in
6278         `browse-url-browser-function'.
6279         (gnus-button-url-regexp): Try to catch paired parentheses like in
6280         Wikipedia URLs.
6281
6282         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6283         Suggested by Simon Krahnke <overlord@gmx.li>.
6284
6285 2007-01-13  Romain Francoise  <romain@orebokech.com>
6286
6287         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6288         Update copyright.
6289
6290 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6291
6292         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6293
6294 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6295
6296         * gnus-registry.el (gnus-registry-unfollowed-groups)
6297         (gnus-registry-split-fancy-with-parent): Fix documentation.
6298
6299 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6300
6301         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6302         from nnweb groups.
6303
6304 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6305
6306         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6307         Xref urls.  Erase buffer before requesting head.
6308
6309 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6310
6311         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6312         customizable.
6313
6314 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6315
6316         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6317         no signing key is found.
6318         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6319         no encrypting and/or signing key is found.
6320
6321 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6322
6323         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6324
6325 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6326
6327         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6328         headers read from disk with the ones newly found in the current search.
6329         This should no longer cause problems, because the article numbers in
6330         Gmane's `nov.php' output are ignored since the previous change.
6331
6332 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6333
6334         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6335
6336 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6337
6338         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6339         replace-regexp-in-string; bind url-version; fbind display-images-p and
6340         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6341         find-face and set-itimer-function for Emacs; bind itimer-list for
6342         Emacs.
6343
6344         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6345
6346 2007-01-01  Romain Francoise  <romain@orebokech.com>
6347
6348         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6349
6350 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6351
6352         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6353         `define-minor-mode' macro definition expanded properly.
6354         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6355         exclude it there.
6356
6357         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6358         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6359         `fboundp' test.
6360         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6361         This is OK to autoload in (S)XEmacs now.
6362
6363 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6364
6365         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6366         keystroke.
6367         (gnus-summary-limit-to-singletons): Fix typo.
6368
6369         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6370         else fails.
6371
6372 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6373
6374         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6375         docstring.
6376
6377         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6378         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6379         (gnus-summary-insert-dormant-articles): Fix typo in message.
6380
6381 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6382
6383         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6384         nil for XEmacs.
6385         (gnus-message-citation-mode): Don't autoload in XEmacs.
6386
6387         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6388
6389 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6390
6391         * nnimap.el (nnimap-expunge-search-string): Mention
6392         nnimap-search-uids-not-since-is-evil in docstring.
6393
6394 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6395
6396         * spam.el: Revert to make-obsolete-variable because
6397         define-obsolete-variable-alias is not supported in Emacs 21.
6398
6399         * spam.el (spam-ifile-path, spam-ifile-database-path)
6400         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6401         make-obsolete-variable.
6402         (spam-bsfilter-path, spam-bsfilter-program)
6403         (spam-spamassassin-path, spam-spamassassin-program)
6404         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6405         use "path" inappropriately.
6406         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6407         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6408         variable names.
6409
6410 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6411
6412         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6413         summary buffer.
6414
6415         * password.el (password-cache-remove): Use clear-string to burn
6416         password, if available.
6417
6418 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6419
6420         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6421
6422         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6423
6424         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6425         (gnus-message-highlight-citation): Move defcustom here from
6426         gnus-cite.el.
6427         (gnus-message-citation-mode): Autoload.
6428
6429         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6430         checks to make it compile with XEmacs.
6431         (gnus-message-citation-mode): New minor mode.
6432         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6433         (gnus-message-highlight-citation): New variables.
6434         (gnus-message-search-citation-line)
6435         (gnus-message-add-citation-keywords)
6436         (gnus-message-remove-citation-keywords)
6437         (turn-on-gnus-message-citation-mode)
6438         (turn-off-gnus-message-citation-mode): New functions.
6439
6440 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6441
6442         * gnus-cite.el: Enable highlighting of different citation levels in
6443         message-mode.
6444
6445 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6446
6447         * message.el (message-make-fqdn): Fix comment.
6448         (message-bogus-system-names): Add ".local".
6449
6450         * spam.el (spam-ifile-path, spam-ifile-program)
6451         (spam-ifile-database-path, spam-ifile-database)
6452         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6453         Don't use "path" inappropriately.
6454         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6455         strings.
6456         (spam-check-ifile, spam-ifile-register-with-ifile)
6457         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6458         new variable names.
6459
6460         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6461         (gnus-treat-display-smileys): Simplify using
6462         gnus-image-type-available-p.
6463
6464         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6465         available.
6466
6467         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6468         `display-images-p' if available.
6469
6470 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6471
6472         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6473         one after turning on the buffer's multibyteness instead of decoding
6474         them directly in the unibyte buffer that causes unexpected conversion
6475         in Emacs 23 (unicode).
6476
6477 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6478
6479         * message.el (message-generate-hashcash): Fix custom type.
6480
6481 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6482
6483         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6484
6485 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6486
6487         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6488         disconnect icons.  Add help text.
6489
6490 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6491
6492         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6493         negated to be consistent with the others we handle.
6494
6495 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6496
6497         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6498         version of gnus-summary-buffer to something, so that we can use two
6499         article buffers at the same time.
6500
6501 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6502
6503         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6504         trigger all the extra headers.
6505         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6506         sorting.
6507
6508 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6509
6510         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6511         solid groups.
6512
6513 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6514
6515         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6516
6517 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6518
6519         * legacy-gnus-agent.el: Add Copyright notice.
6520
6521 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6522
6523         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6524
6525 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6526
6527         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6528
6529         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6530         to make it work reliably in CVS Emacs.
6531         (gnus-summary-limit-strange-charsets-predicate)
6532         (gnus-summary-limit-to-predicate): New functions.
6533
6534 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6535
6536         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6537         specifying array size.
6538         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6539         array if it is too small.
6540         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6541         (gnus-sort-threads-loop): New function.
6542
6543 2006-12-06  Chris Moore  <dooglus@gmail.com>
6544
6545         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6546         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6547
6548 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6549
6550         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6551         options.
6552
6553 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6554
6555         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6556         DOS-ing the recipient.
6557
6558         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6559         the headers when creating the mapping to avoid mismappings.
6560         (nnweb-gmane-create-mapping): Always nix out old mapping.
6561
6562 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6563
6564         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6565         and mm-verify-option to never.
6566
6567 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6568
6569         * message.el (message-signed-or-encrypted-p): New function.
6570         (message-forward-make-body): Use it.
6571
6572         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6573         Replace encode-coding-string with mm-encode-coding-string.
6574
6575 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6576
6577         * nneething.el (nneething-decode-file-name): Replace
6578         decode-coding-string with mm-decode-coding-string.
6579
6580         * gnus-int.el (gnus-open-server): Say failed server's name.
6581
6582 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6583
6584         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6585         strings to a single string.  Quote `errors-file-name'.
6586         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6587         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6588         Adjust calls.  Use `shell-quote-argument'.
6589
6590 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6591
6592         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6593         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6594
6595         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6596         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6597         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6598         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6599         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6600         (gnus-subscribe-newsgroup, gnus-1):
6601         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6602         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6603         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6604         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6605
6606 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6607
6608         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6609         keystroke.
6610         (gnus-summary-limit-to-bodies): Implement headersp.
6611
6612 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6613
6614         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6615
6616 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6617
6618         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6619
6620 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6621
6622         * message.el (message-generate-hashcash): Expand range of values to
6623         include `opportunistic'.
6624         (message-send-mail): Use it.
6625
6626 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6627
6628         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6629         and comment it.
6630
6631         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6632
6633 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6634
6635         * gnus-util.el (gnus-extract-address-components): Improve comment.
6636
6637 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6638
6639         * gnus-util.el (gnus-extract-address-components): Work with address in
6640         which the name portion contains @.
6641
6642         * lpath.el: Fbind custom-autoload.
6643
6644 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6645
6646         * gnus.el (gnus-start): Move custom group up.
6647         (gnus-select-method): Don't autoload, but make it available for
6648         `customize-variable'.
6649         (gnus-getenv-nntpserver): Don't autoload.
6650
6651 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6652
6653         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6654
6655 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6656
6657         * message.el (message-sendmail-extra-arguments): New variable.
6658         (message-send-mail-with-sendmail): Use it.
6659
6660 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6661
6662         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6663         mm-with-unibyte-current-buffer to make string unibyte.
6664
6665         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6666         mm-string-as-multibyte.
6667
6668 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6669
6670         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6671         Reported by Werner Koch <wk@gnupg.org>.
6672
6673 2006-11-14  Daiki Ueno  <ueno@p360>
6674
6675         * mml2015.el: Autoload epa-select-keys when compiling.
6676
6677 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6678
6679         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6680         message-options.
6681         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6682
6683 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6684
6685         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6686         EasyPG (< 0.0.6).
6687         (mml2015-always-trust): New user option.
6688         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6689         prompt.
6690
6691 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6692
6693         * nntp.el (nntp-authinfo-force): New variable.
6694         (nntp-send-authinfo): Use it.
6695
6696 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6697
6698         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6699         decode encoded words.  Improve prompt.  Add comment about forwarding.
6700         (message-replacement-char): Move up.
6701
6702 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6703
6704         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6705         instead of gnus-intersection because arguments of gnus-sorted-nunion
6706         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6707
6708 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6709
6710         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6711         (message-simplify-subject-functions): Enable
6712         message-strip-subject-encoded-words by default.
6713
6714 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6715
6716         * message.el (message-strip-subject-encoded-words): New function.
6717         (message-simplify-subject-functions): New variable.
6718         (message-simplify-subject): Use it.  Fix typo in doc string.
6719         Support message-strip-subject-encoded-words.
6720
6721 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6722
6723         * gnus-diary.el (gnus-diary-delay-format-function):
6724         * nndiary.el (nndiary-reminders):
6725         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6726
6727 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6728
6729         * gnus-art.el (article-hide-boring-headers): Fetch date from
6730         gnus-original-article-buffer to avoid problems with localized date
6731         strings.
6732
6733 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6734
6735         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6736
6737 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6738
6739         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6740         New variables.
6741         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6742         (mm-charset-synonym-alist): Move some entries to
6743         mm-codepage-iso-8859-list.
6744         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6745         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6746
6747 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6748
6749         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6750
6751 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6752
6753         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6754         with Emacs 21 and XEmacs.
6755
6756 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6757
6758         * spam.el (spam-parse-address): New function for better parsing,
6759         catching errors, etc.
6760         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6761
6762 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6763
6764         * mm-view.el: Add interactive arg to html2text autoload.
6765
6766 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6767
6768         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6769
6770 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6771
6772         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6773         variables.
6774         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6775         (mm-charset-synonym-alist): Move some entries to
6776         mm-codepage-iso-8859-list.
6777
6778         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6779
6780 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6781
6782         * message.el (message-citation-line-format)
6783         (message-insert-formated-citation-line): Fix implementation of %E, %N
6784         and %n according to the doc string.
6785
6786 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6787
6788         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6789         car-safe to avoid bad parses.
6790
6791 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6792
6793         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6794         names.
6795
6796         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6797
6798 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6799
6800         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6801         header.
6802
6803         * message.el (message-draft-headers): Add Date.
6804         (message-headers-to-generate): Fix typo in docstring.
6805
6806         * nndraft.el (nndraft-required-headers): New variable.
6807         (nndraft-generate-headers): Use it.
6808
6809         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6810
6811 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6812
6813         * gnus-registry.el (gnus-registry-wash-for-keywords)
6814         (gnus-registry-find-keywords): New functions to allow easy searching of
6815         articles that are in the registry.
6816
6817 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6818
6819         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6820         ietf-drums-parse-address instead of gnus-extract-address-components.
6821         Reported by Damien Elmes <damien@repose.cx>.
6822
6823 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6824
6825         * gnus.el (gnus-mime): Remove unused custom group.
6826
6827 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6828
6829         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6830         "blank line" when searching for end of armor headers.
6831
6832 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6833
6834         * gmm-utils.el (gmm-write-region): Fix variable name.
6835
6836 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6837
6838         * gmm-utils.el (gmm-write-region): New function based on compatibility
6839         code from `mm-make-temp-file'.
6840
6841         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6842
6843         * nnmaildir.el (nnmaildir--update-nov)
6844         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6845         Use `gmm-write-region'.
6846
6847 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6848
6849         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6850         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6851
6852         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6853
6854         * message.el (message-replacement-char): New variable.
6855         (message-fix-before-sending): Use it.
6856         (message-simplify-subject): New function to remove duplicate code.
6857         (message-reply, message-followup): Use it.
6858
6859         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6860         gnus-summary-limit-to-articles.
6861
6862 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6863
6864         * gnus-util.el (gnus-with-local-quit): New macro.
6865
6866         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6867
6868 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6869
6870         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
6871         ignore non-string data.
6872
6873 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
6874
6875         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
6876         non-string data (needs to be done in the registry too).
6877
6878 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6879
6880         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
6881         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
6882         (gnus-registry-split-fancy-with-parent)
6883         (gnus-registry-fetch-simplified-message-subject-fast)
6884         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
6885         Remove text properties on ingress into the registry and when it's saved.
6886         (gnus-registry-clean-empty-function): Fix bug with cleaning the
6887         registry from entries with no groups.
6888
6889 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6890
6891         * gnus-util.el (gnus-string-remove-all-properties): Add utility
6892         function to remove string properties.
6893
6894 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
6895
6896         * gmm-utils.el (gmm): Adjust custom version.
6897
6898         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
6899         custom version.
6900
6901         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
6902
6903 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
6904
6905         * gnus-art.el (gnus-insert-prev-page-button)
6906         (gnus-insert-next-page-button): Simplify.  Reformat.
6907
6908 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6909
6910         * gnus-art.el (gnus-insert-prev-page-button)
6911         (gnus-insert-next-page-button): Apply gnus-article-button-face.
6912
6913 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
6914
6915         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
6916
6917 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6918
6919         * gnus-art.el (gnus-insert-mime-button)
6920         (gnus-insert-mime-security-button):
6921         Apply gnus-article-button-face to MIME and security buttons.
6922
6923 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
6924
6925         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
6926         readable.
6927
6928 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6929
6930         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
6931
6932 2006-09-20  Steve Youngs  <steve@sxemacs.org>
6933
6934         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
6935         `browse-url-of-file' instead of `browse-url'.
6936
6937 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6938
6939         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6940         regexp.  Articles containing quotation were cut prematurely.
6941
6942 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6943
6944         * message.el (message-cite-original-1): Use nobody by default for the
6945         value of From header.
6946         (message-reply): Ditto.
6947
6948 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
6949
6950         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
6951         to the gnus-info.  This fixes a bug of inline-PGP message verification.
6952         Reported by Michael Piotrowski <mxp@dynalabs.de>.
6953
6954 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
6955
6956         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
6957         mails in the doc string.  Add some URLs in comment.
6958         (pop3-movemail): Warn about pop3-leave-mail-on-server.
6959
6960 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6961
6962         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
6963         backslashes handling and the way to find boundaries of quoted strings.
6964
6965 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
6966
6967         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
6968         mml1991-encrypt-to-self is set and mml1991-signers is not set.
6969         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
6970         mml2015-encrypt-to-self is set and mml2015-signers is not set.
6971
6972 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
6973
6974         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
6975         doc string.
6976         (gnus-button-regexp, gnus-button-last): Remove unused variables.
6977
6978 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6979
6980         * lpath.el: Fbind epg-check-configuration.
6981
6982 2006-09-06  Simon Josefsson  <jas@extundo.com>
6983
6984         * mml2015.el (mml2015-use): Doc fix, mention epg.
6985
6986 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6987
6988         * mml2015.el (mml2015-use): Default to epg, if available.
6989
6990 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6991
6992         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
6993         message-sender.
6994         (mml1991-epg-encrypt): Ditto.
6995         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
6996         message-sender.
6997         (mml2015-epg-encrypt): Ditto.
6998
6999 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7000
7001         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7002         several common directories.
7003
7004 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7005
7006         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7007         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7008
7009 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7010
7011         * gnus-art.el (article-decode-encoded-words): Make it fast.
7012
7013 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7014
7015         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7016
7017         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7018         in quoted string into `\'.
7019
7020 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7021
7022         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7023         Use standard-syntax-table.
7024
7025 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7026
7027         * gnus-art.el (gnus-decode-address-function): New variable.
7028         (article-decode-encoded-words): Use it to decode headers which are
7029         assumed to contain addresses.
7030         (gnus-mime-delete-part): Remove useless `or'.
7031
7032         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7033         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7034         (gnus-nov-parse-line): Use it to decode From header.
7035         (gnus-get-newsgroup-headers): Ditto.
7036         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7037
7038         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7039         (mail-decode-encoded-address-string): New alias.
7040
7041         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7042         New function.
7043         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7044         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7045         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7046         (rfc2047-decode-string): Ditto.
7047         (rfc2047-decode-address-region): New function.
7048         (rfc2047-decode-address-string): New function.
7049
7050 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7051
7052         * message.el (message-caesar-buffer-body): Allow rotating headers.
7053
7054         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7055
7056         * message.el (message-insert-formated-citation-line): Fix %f.
7057         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7058
7059 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7060
7061         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7062         (gnus-bookmark-mouse-available-p): New macro.
7063         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7064         (gnus-bookmark-bmenu-show-infos): Use it.
7065         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7066         (gnus-bookmark-bmenu-hide-infos): Ditto.
7067         (gnus-bookmark-remove-properties): New function.
7068         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7069         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7070         (gnus-bookmark-write-file): Bind coding-system-for-write.
7071         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7072         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7073         group before selecting it.
7074         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7075         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7076         quit-window if it is not available; use gnus-mouse-2 and bind it to
7077         gnus-bookmark-bmenu-select-by-mouse.
7078         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7079         (gnus-bookmark-bmenu-select-by-mouse): New function.
7080
7081 2006-08-13  Romain Francoise  <romain@orebokech.com>
7082
7083         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7084         space.
7085
7086 2006-08-10  Romain Francoise  <romain@orebokech.com>
7087
7088         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7089         (dns-mode-soa-auto-increment-serial): New user option.
7090         (dns-mode-soa-maybe-increment-serial): New function.
7091         (dns-mode): Add the latter to `write-contents-functions'.
7092
7093 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7094
7095         * compface.el (uncompface): Use binary rather than raw-text-unix.
7096
7097 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7098
7099         * compface.el (uncompface): Make sure the eol conversion doesn't take
7100         place when communicating with the external programs.  Reported by
7101         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7102
7103 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7104
7105         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7106
7107 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7108
7109         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7110         Make it more robust by parsing author and date independently.
7111
7112 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7113
7114         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7115
7116 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7117
7118         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7119         first matching secret key.
7120         (mml2015-epg-encrypt): Ditto.
7121
7122         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7123         first matching secret key.
7124         (mml1991-epg-encrypt): Ditto.
7125
7126         * mml2015.el (mml2015-encrypt-to-self): New user option.
7127         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7128         mml2015-epg-encrypt-to-self is set.
7129
7130         * mml1991.el (mml1991-encrypt-to-self): New variable.
7131         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7132         mml1991-epg-encrypt-to-self is set.
7133
7134         * mml2015.el (mml2015-signers): New user option.
7135         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7136         (mml2015-epg-encrypt): Allow to select signing keys.
7137
7138         * mml1991.el (mml1991-signers): New variable.
7139         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7140         (mml1991-epg-encrypt): Allow to select signing keys.
7141
7142 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7143
7144         * nnheader.el (nnheader-insert-head): Make it work even if the file
7145         uses CRLF for the line-break code.
7146
7147 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7148
7149         * mml2015.el: Require mml-sec instead of password.
7150         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7151         (mml2015-cache-passphrase): Inherit the default value from
7152         mml-secure-cache-passphrase.
7153         (mml2015-passphrase-cache-expiry): Inherit the default value from
7154         mml-secure-passphrase-cache-expiry.
7155
7156         * mml1991.el: Require mml-sec instead of password.
7157         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7158         (mml1991-cache-passphrase): Inherit the default value from
7159         mml-secure-cache-passphrase.
7160         (mml1991-passphrase-cache-expiry): Inherit the default value from
7161         mml-secure-passphrase-cache-expiry.
7162
7163         * mml-sec.el: Require password.
7164         (mml-secure-verbose): New user option.
7165         (mml-secure-cache-passphrase): New user option.
7166         (mml-secure-passphrase-cache-expiry): New user option.
7167
7168 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7169
7170         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7171         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7172         andreas@altroot.de (Andreas Vögele).
7173
7174         FIXME: Use `tiny change'?
7175
7176 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7177
7178         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7179         workaround for the url package included with Emacs.
7180
7181         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7182
7183 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7184
7185         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7186         correctly.  This fixes a bug caused by the 2006-05-12 change.
7187
7188 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7189
7190         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7191         some information about the error when saying that the `bogus' mail
7192         group will be used.
7193
7194 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7195
7196         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7197         string.
7198
7199 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7200
7201         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7202
7203 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7204
7205         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7206
7207 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7208
7209         * mml1991.el (mml1991-function-alist): Add epg.
7210         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7211         (mml1991-epg-encrypt): New functions.
7212
7213 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7214
7215         * mml2015.el (mml2015-verbose): New variable.
7216         (mml2015-cache-passphrase): Ditto.
7217         (mml2015-passphrase-cache-expiry): Ditto.
7218         (mml2015-function-alist): Add epg.
7219         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7220         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7221         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7222         functions.
7223
7224 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7225
7226         * message.el (message-cite-original-1): Preserve region when removing
7227         quoted text due to X-No-Archive in order to avoid bogus attribution
7228         when citing multiple messages.
7229
7230 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7231
7232         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7233         Kenneth Jacker <khj@be.cs.appstate.edu>.
7234
7235 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7236
7237         * gnus-diary.el (gnus-user-format-function-d)
7238         (gnus-user-format-function-D): Autoload.
7239
7240         * imap.el (Commentary): Fix typo.
7241
7242         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7243         2006-04-22 contribution.
7244
7245 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7246
7247         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7248         It didn't really fix the bogosity I'm seeing with solid web groups.
7249
7250 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7251
7252         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7253         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7254         created using server names.  If we use the feature without declaring
7255         it, Gnus does not properly manage server and group state.
7256
7257         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7258         bound.
7259
7260 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7261
7262         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7263         looking up the method using GROUP's prefix before inventing a new one.
7264         It is used on killed/unknown groups in various places where returning
7265         an all-new method isn't expected by the caller.
7266
7267         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7268         and match semantics of gnus-group-real-prefix.
7269
7270 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7271
7272         * nnmail.el (nnmail-broken-references-mailers): New variable.
7273         (nnmail-ignore-broken-references): New function generalizing
7274         nnmail-fix-eudora-headers.
7275         (nnmail-fix-eudora-headers): Now obsolete.
7276
7277         * gnus-art.el (gnus-button-handle-custom): Support
7278         `customize-apropos*'.
7279
7280 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7281
7282         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7283
7284         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7285         articles.
7286
7287 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7288
7289         * message.el (message-cite-reply-above): New variable.
7290         (message-yank-original): Use it.
7291
7292 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7293
7294         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7295
7296 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7297
7298         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7299         as read.
7300
7301         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7302
7303 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7304
7305         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7306         (gnus-bookmark-default-file): Use gnus-directory.
7307         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7308         Remove "*" in doc string.
7309         (gnus-bookmark-write-file): Simplify.
7310         (gnus-bookmark-maybe-sort-alist): Use `when'.
7311         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7312         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7313         FIXME about Emacs 21 and XEmacs compatibility.
7314         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7315         compatibility.
7316         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7317         compatibility.
7318         (gnus-bookmark-menu-heading): Fix version.
7319
7320 2006-06-19  Bastien Guerry  <bzg@altern.org>
7321
7322         * gnus-bookmark.el: New file.
7323
7324 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7325
7326         * message.el (message-syntax-checks): Doc fix.
7327
7328 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7329
7330         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7331         unsubscribed groups as if they were killed ones.  It causes duplicate
7332         entries in gnus-newsrc-alist.
7333
7334 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7335
7336         * message.el (message-syntax-checks): Doc fix.
7337         (message-send-mail): Add check for continuation headers.
7338         (message-check-news-header-syntax): Fix regexp used to check for
7339         continuation headers.
7340
7341 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7342
7343         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7344
7345 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7346
7347         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7348
7349 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7350
7351         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7352         default-truncate-lines.
7353
7354 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7355
7356         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7357         to fill the utf-8 entry.
7358
7359         * lpath.el: Fbind unicode-precedence-list.
7360
7361 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7362
7363         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7364
7365 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7366
7367         * gnus-agent.el (directory-files-and-attributes): Move all the way
7368         forward (the third and final move).
7369         (gnus-agent-read-agentview): Trap reconstruction errors due to
7370         nonexistant directory.  Handle by returning nil.
7371
7372 2006-05-30  Didier Verna  <didier@xemacs.org>
7373
7374         * message.el (message-dont-reply-to-names): Update the custom type.
7375         * message.el (message-dont-reply-to-names): New defsubst: potentially
7376         convert a list of regexps into a single one.
7377         * message.el (message-get-reply-headers): Use it.
7378         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7379
7380 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7381
7382         * gnus-agent.el (directory-files-and-attributes): Move forward.
7383
7384 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7385
7386         * gnus-ml.el (gnus-mailing-list-subscribe)
7387         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7388         (gnus-mailing-list-message): Fix doc strings.
7389
7390 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7391
7392         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7393         of doing it manually.
7394
7395 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7396
7397         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7398         comment.
7399
7400 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7401
7402         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7403         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7404         (gnus-agent-read-local): All symbols allocated in my-obarray.
7405         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7406         (gnus-agent-regenerate-group): Check numeric names to see if they are
7407         messages or groups.
7408         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7409         better way of do this...)
7410
7411         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7412         'dummy.group' (there should be a better way of do this...)
7413
7414 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7415
7416         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7417         (gnus-saved-headers): Ditto.
7418         (gnus-default-article-saver): Mention functions may have properties.
7419         (gnus-article-save): Override gnus-save-all-headers and
7420         gnus-saved-headers by :headers property which saver function may have.
7421         (gnus-summary-save-in-file): Add :headers property.
7422         (gnus-summary-write-to-file): Ditto.
7423
7424         * gnus-sum.el (gnus-summary-save-article): Bind
7425         gnus-prompt-before-saving to t when saving many articles in a file;
7426         always show all headers.
7427
7428         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7429
7430 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7431
7432         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7433         marks.
7434
7435         * message.el (message-indent-citation): Add optional arguments to allow
7436         using it outside of message buffers.
7437
7438         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7439         (gnus-article-treat-unfold-headers): Use it.
7440         (gnus-article-truncate-lines): New variable.
7441         (gnus-article-mode): Use it.
7442         (gnus-article-toggle-truncate-lines): New function.
7443
7444         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7445         gnus-article-toggle-truncate-lines.
7446
7447         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7448         coding system in XEmacs, use binary.
7449
7450 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7451
7452         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7453         after-load-alist.
7454
7455         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7456         this function should save decoded articles.
7457         (gnus-summary-write-to-file): Use property to specify this function
7458         should save decoded articles and specify gnus-summary-save-in-file
7459         should be used to save articles other than the first one when saving
7460         many articles.
7461         (gnus-summary-save-body-in-file): Use property to specify this
7462         function should save decoded articles.
7463         (gnus-summary-write-body-to-file): Use property to specify this
7464         function should save decoded articles and specify
7465         gnus-summary-save-body-in-file should be used to save articles other
7466         than the first one when saving many articles.
7467
7468         * gnus-sum.el (gnus-summary-save-article): Simplify.
7469
7470 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7471
7472         * gnus-art.el (gnus-default-article-saver): Add
7473         gnus-summary-write-body-to-file.
7474         (gnus-article-save-coding-system): Don't use coding system object
7475         in XEmacs.
7476         (gnus-read-save-file-name): Add optional `dir-var' argument which
7477         specifies directory in which files are saved; work even if optional
7478         `variable' argument is not specified.
7479         (gnus-summary-write-to-file): Read file name.
7480         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7481         (gnus-summary-write-body-to-file): New function.
7482
7483         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7484         (gnus-summary-local-variables): Add it.
7485         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7486         (gnus-summary-save-article): Remove optional `decode' argument;
7487         determine whether to decode articles by the value of
7488         gnus-default-article-saver; when saving many files using
7489         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7490         it first and use gnus-summary-save-in-file or
7491         gnus-summary-save-body-in-file thereafter unless
7492         gnus-prompt-before-saving is always; move point to article which
7493         will be saved.
7494         (gnus-summary-save-article-file): Revert.
7495         (gnus-summary-write-article-file): Revert.
7496         (gnus-summary-save-article-body-file): Revert.
7497         (gnus-summary-write-article-body-file): New function.
7498
7499 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7500
7501         * gnus-art.el (gnus-default-article-saver): Doc fix.
7502         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7503         from gnus-summary-save-article-coding-system, and default to a
7504         certain coding system.
7505         (gnus-output-to-file): Add coding cookie and encode text according
7506         to gnus-article-save-coding-system; don't use mm-append-to-file.
7507
7508         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7509         gnus-art.el and rename to gnus-article-save-coding-system.
7510         (gnus-summary-save-article): Require gnus-art; don't show all
7511         headers if it decodes articles; don't add coding cookie here;
7512         don't bind mm-text-coding-system-for-write.
7513         (gnus-summary-save-article-file): Save decoded articles.
7514         (gnus-summary-write-article-file): When saving many files, use
7515         gnus-summary-write-to-file first and gnus-summary-save-in-file
7516         thereafter unless gnus-prompt-before-saving is always.
7517         (gnus-summary-save-article-body-file): Save decoded articles.
7518
7519         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7520
7521 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7522
7523         * nnrss.el (nnrss-check-group): Bind hash-index.
7524
7525 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7526
7527         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7528         its hash index.  Store this hash in `nnrss-group-data'.
7529         (nnrss-read-group-data): Update accordingly.
7530
7531 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7532
7533         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7534         entry.
7535
7536         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7537         gnus-article-browse-html-article.
7538
7539 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7540
7541         * gnus-sum.el (gnus-summary-mime-map): Add
7542         gnus-article-browse-html-article.
7543
7544         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7545
7546 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7547
7548         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7549         suitable coding systems in customize.
7550
7551 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7552
7553         * mail-source.el (mail-sources): Fix custom type.
7554
7555 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7556
7557         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7558         (gnus-summary-expire-articles-now): Shorten prompt.
7559
7560         * gmm-utils.el (wid-edit): Require.
7561         (defun-gmm): Renamed from `gmm-defun-compat'.
7562         (gmm-image-search-load-path): Use it.
7563         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7564
7565 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7566
7567         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7568         variable.
7569         (gnus-summary-save-article): Add optional `decode' argument.  If
7570         it is set and gnus-summary-save-article-coding-system is non-nil,
7571         save decoded article.
7572         (gnus-summary-write-article-file): Save decoded article if
7573         gnus-summary-save-article-coding-system is non-nil.
7574
7575         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7576         type.
7577
7578 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7579
7580         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7581
7582 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7583
7584         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7585         first to test gnus-single-article-buffer which may be buffer-local.
7586
7587         * gnus-sum.el (gnus-summary-setup-buffer): Make
7588         gnus-single-article-buffer buffer-local and nil in ephemeral
7589         group; make gnus-article-buffer, gnus-article-current, and
7590         gnus-original-article-buffer always buffer-local.
7591         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7592         group.
7593         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7594
7595 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7596
7597         * nnml.el (nnml-request-compact-group): Compressed files might not
7598         have .gz extension.
7599
7600 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7601
7602         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7603         (mm-copy-to-buffer): Use with-current-buffer.
7604         (mm-display-part): Simplify.
7605         (mm-inlinable-p): Add optional arg `type'.
7606
7607 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7608
7609         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7610         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7611         Try harder to show the attachment internally or externally using
7612         gnus-mime-view-part-as-type.
7613
7614 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7615
7616         * message.el (message-from-style, message-signature-separator)
7617         (message-user-organization-file, message-send-mail-function)
7618         (message-citation-line-function, message-yank-prefix)
7619         (message-indent-citation-function, message-signature)
7620         (message-signature-file, message-signature-insert-empty-line):
7621         Remove autoloads.
7622
7623         * gnus-art.el (gnus-buttonized-mime-types): Remove
7624         "multipart/signed".  Revert 2006-04-26 change.
7625
7626 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7627
7628         * gnus.el (gnus-version-number): Bump version.
7629
7630 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7631
7632         * gnus.el: No Gnus v0.5 is released.
7633
7634 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7635
7636         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7637         fetching articles by message-id.
7638
7639 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7640
7641         * message.el (hashcash): Require hashcash as normal.
7642
7643         * ecomplete.el (ecomplete-highlight-match-line): Use
7644         point-at-eol.
7645         (ecomplete-highlight-match-line): Use `highlight', because that
7646         face exists in both Emacs and XEmacs.
7647
7648         * message.el (message-display-abbrev): Use point-at-bol.
7649
7650         * mail-source.el: Don't require timer/timer-funcs.
7651
7652         * gnus-async.el: Ditto.
7653
7654         * password.el: Ditto.
7655
7656         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7657
7658         * mm-url.el: Ditto.
7659
7660         * gnus-xmas.el: Don't require timer-funcs.
7661
7662         * mm-util.el: Require timer/timer-funcs.
7663
7664 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7665
7666         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7667         Close.
7668
7669 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7670
7671         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7672         unibyte after clear-decrypt function runs.
7673
7674         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7675         returns as a unibyte string.
7676
7677 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7678
7679         * lpath.el: Revert.
7680
7681         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7682         (pgg-gpg-process-sentinel): Revert.
7683
7684         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7685         (pgg-pgp-lookup-key): Revert.
7686
7687         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7688         (pgg-pgp5-lookup-key): Revert.
7689
7690         * pgg.el (pgg-fetch-key): Revert.
7691
7692 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7693
7694         * lpath.el: Fbind string-as-multibyte for XEmacs.
7695
7696         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7697         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7698         (mml1991-pgg-encrypt): Ditto.
7699
7700         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7701         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7702         a multibyte buffer.
7703
7704         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7705         (pgg-pgp-lookup-key): Ditto.
7706
7707         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7708         (pgg-pgp5-lookup-key): Ditto.
7709
7710         * pgg.el (pgg-fetch-key): Ditto.
7711
7712 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7713
7714         * message.el (message-user-organization-file): Check several
7715         locations of the organization file.
7716
7717         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7718         Add gnus-article-view-part-as-type.
7719
7720         * gnus-art.el (gnus-article-view-part-as-type): New function.
7721
7722         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7723         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7724
7725         * mml.el: Simplify autoload.
7726         (mml-mode): defvar dnd-protocol-alist instead of using
7727         symbol-value.
7728         (mml-default-directory): New variable.
7729         (mml-minibuffer-read-file): Use it.
7730         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7731
7732         * message.el (message-citation-line-format): New variable.
7733         (message-insert-formated-citation-line): New function.
7734         (message-citation-line-function): Add
7735         `message-insert-formated-citation-line' to custom type.
7736
7737         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7738         to doc string.
7739
7740         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7741         depending on mm-verify-option.
7742
7743 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7744
7745         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7746         binding pgg-* variables; reimplement the section which prevents
7747         MIME header from being signed.
7748         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7749         pgg-text-mode; remove a blank line at the top of body.
7750
7751         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7752         lines at the top of body; use gnus-newsgroup-charset if there's no
7753         Charset header.
7754
7755 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7756
7757         * message.el (message-self-insert-commands): Doc fix.
7758
7759         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7760         (mm-uu-pgp-encrypted-test): Ditto.
7761         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7762         between header and body; return application/pgp-encrypted handle
7763         if decryption failed; decode decrypted body by charset.
7764
7765         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7766         element match to application/pgp-*.
7767
7768 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7769
7770         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7771         HTML.
7772
7773 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7774
7775         * mail-source.el (mail-source-call-script): Message the error
7776         string.
7777
7778 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7779
7780         * gnus-util.el (gnus-byte-compile): Use it.
7781
7782 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7783
7784         * gnus-util.el (kill-empty-logs): New function.
7785
7786 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7787
7788         * message.el (message-mail-alias-type): Doc fix.
7789         (message-mail-alias-type-p): New function.
7790         (message-send): Use it.
7791         (message-mode): Ditto.
7792         (message-strip-forbidden-properties): Ditto.
7793
7794         * ecomplete.el (ecomplete-database-file-coding-system): New
7795         variable.
7796         (ecomplete-save): Use it.
7797         (ecomplete-setup): Use it.
7798
7799 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7800
7801         * message.el (message-self-insert-commands): New variable.
7802         (message-strip-forbidden-properties): Use it.
7803
7804 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7805
7806         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7807         that doesn't make XEmacs choke.
7808
7809 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7810
7811         * gnus-util.el (gnus-replace-in-string):
7812         Prefer replace-regexp-in-string over of replace-in-string.
7813
7814 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7815
7816         * gnus-util.el (gnus-select-frame-set-input-focus):
7817         Use select-frame-set-input-focus if it is available in XEmacs; use
7818         definition defined in Emacs 22 for old Emacsen.
7819
7820         * dgnushack.el: Autoload unmorse-region for XEmacs.
7821
7822         * lpath.el: Bind cursor-in-non-selected-windows and
7823         select-frame-set-input-focus for XEmacs.
7824
7825 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7826
7827         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7828
7829 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7830
7831         * gnus-registry.el (gnus-registry-cache-save): Remove text
7832         properties when saving via the temp buffer.
7833
7834 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7835
7836         * message.el (message-generate-hashcash): Honor custom type.
7837
7838 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7839
7840         * message.el (message-generate-hashcash): Default to non-nil when
7841         hashcash is found.
7842
7843         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7844         (gnus-refer-thread-limit): Increase default to 500.
7845
7846         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7847
7848         * flow-fill.el (fill-flowed): Allow delete-space.
7849
7850 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7851
7852         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7853         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7854         Remove autoloads.
7855
7856 2006-04-18  Simon Josefsson  <jas@extundo.com>
7857
7858         * message.el (message-generate-hashcash): Default to.
7859
7860 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7861
7862         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7863         concatenating segments rather than before concatenating them.
7864
7865 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7866
7867         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7868
7869 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7870
7871         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
7872
7873         * message.el (message-forward-make-body-plain): Allow
7874         message-forward-ignored-headers to be a list.
7875         (message-remove-ignored-headers): Factor out into function.
7876         (message-forward-make-body-mml): Use it.
7877
7878         * imap.el (imap-quote-specials): New function.
7879         (imap-login-auth): Quote specials.
7880
7881         * rfc2231.el (rfc2231-parse-string): Remove dead code.
7882         (rfc2231-parse-string): Allow concatanation of parameters that
7883         aren't contiguous.  The test case is
7884           (mail-header-parse-content-type "message/external-body;
7885             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
7886             access-type=LOCAL-FILE;
7887             name*1*=plugh%2fhello-sailor%2fbing.pdf")
7888
7889 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7890
7891         * nntp.el (nntp-accept-process-output): Return the value of
7892         `nnheader-accept-process-output'.
7893
7894 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7895
7896         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
7897         (gnus-button-alist): Recognize more diff formats.
7898         (gnus-button-patch): Strip directory.
7899
7900 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7901
7902         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
7903         Emacs 22 when setting focus.
7904
7905 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7906
7907         * gnus-art.el (gnus-article-treat-types): Do treatment of
7908         text/x-verbatim parts.
7909         (gnus-button-patch): New command.
7910
7911         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
7912         addresses that contain invalid characters.
7913
7914 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7915
7916         * message.el (message-put-addresses-in-ecomplete): Use
7917         gnus-replace-in-string.
7918         (message-is-yours-p): Use the more correct
7919         mail-header-parse-address instead of
7920         mail-extract-address-components.
7921         (message-put-addresses-in-ecomplete): Fix typo.
7922
7923         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
7924         keystroke.
7925
7926         * gnus-art.el (gnus-treatment-function-alist): Change order of
7927         newsgroups/generic header folding to avoid double-folding.
7928
7929         * message.el (message-hidden-headers): Add X-Draft-From.
7930
7931         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
7932         command.
7933         (gnus-summary-repeat-search-article-backward): New command.
7934
7935         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
7936         groups in the parent topic.
7937
7938 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
7939
7940         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
7941         (spam-extra-header-to-number): Return the CRM114 number as a
7942         number instead of a string.
7943
7944 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7945
7946         * gnus-art.el (gnus-face-properties-alist): Moved here from
7947         gnus-fun.
7948
7949         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
7950
7951 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7952
7953         * message.el (message-strip-forbidden-properties): Only display on
7954         self-insert-command.
7955
7956         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
7957         reindent.
7958         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
7959
7960 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
7961
7962         * smiley.el (smiley-style): Fix typo.
7963
7964 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7965
7966         * hashcash.el (hashcash-insert-payment-async-2): Use
7967         message-goto-eoh instead of doing it manually.
7968         (mail-add-payment): Use message-narrow-to-header instead of trying
7969         to do the same itself.
7970
7971         * message.el (message-hidden-headers): Add Face.
7972
7973         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
7974         reparenting code.
7975         (gnus-summary-reparent-children): Refactored out code.
7976         (gnus-summary-thread-map): New keystroke.
7977         (gnus-summary-reparent-children): Make into command.
7978
7979         * smiley.el (smiley-style): Default to `medium' if using a large
7980         font.
7981
7982         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
7983         does it itself.
7984
7985         * message.el (message-point-in-header-p): Simplify definition.
7986
7987 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7988
7989         * nnagent.el (nnagent-request-set-mark): Silence log file
7990         writing.
7991         (nnagent-request-set-mark): Use write-region instead of
7992         append-to-file.
7993
7994         * gnus-sum.el (gnus-read-header): Fudge article number if using a
7995         strange select method.
7996
7997         * ecomplete.el (ecomplete-display-matches): Get highlightling
7998         right.
7999         (ecomplete-display-matches): Use literals.
8000         (ecomplete-display-matches): Disable message logging.
8001
8002         * message.el (message-display-abbrev): Small optimization.
8003
8004         * ecomplete.el (ecomplete-display-matches): Allow automatic
8005         display.
8006
8007         * message.el (message-strip-forbidden-properties): Display
8008         abbrevs.
8009         (message-display-abbrev): Get automatic display right.
8010
8011         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8012         keystrokes.
8013
8014 2006-04-13  Romain Francoise  <romain@orebokech.com>
8015
8016         TODO: Backport to v5-10!
8017
8018         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8019         Moved here (and renamed) from gnus-registry.el.
8020
8021         * gnus-registry.el: Require gnus-util.
8022         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8023
8024 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8025
8026         * gnus-group.el (gnus-group-catchup-current): Change
8027         if-then-else-if-then-else into cond.
8028         (gnus-group-catchup): Indent.
8029         (group-name-at-point): New function.
8030         (gnus-fetch-group): Provide default from thing at point.
8031
8032 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8033
8034         * message.el (message-display-abbrev): Fix regexp.
8035
8036         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8037         choosing.
8038         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8039         dead variables.
8040
8041         * message.el (message-newline-and-indent): Remove debugging.
8042         (message-display-abbrev): Use new implementation.
8043
8044 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8045
8046         * gnus-art.el (gnus-article-mode): Set
8047         cursor-in-non-selected-windows to nil.
8048
8049         * smiley.el: Revert previous change.
8050         (smiley-data-directory): defvar it before using it in the
8051         defcustom of `smiley-style'.
8052
8053 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8054
8055         * message.el (message-newline-and-indent): New function.
8056
8057         * ecomplete.el: Implement more bits.
8058
8059         * message.el (message-put-addresses-in-ecomplete): Clean up the
8060         string.
8061
8062         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8063
8064         * gnus-sum.el (gnus-summary-save-parts): Bind
8065         gnus-summary-save-parts-counter and use it to make unique file
8066         names.
8067
8068         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8069
8070         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8071         parameter to say whether to actually parse the individual
8072         addresses.
8073
8074         * message.el (message-put-addresses-in-ecomplete): New function.
8075         (ecomplete): Require.
8076         (message-mail-alias-type): Add ecomplete as an option.
8077
8078 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8079
8080         * flow-fill.el (fill-flowed): Remove trailing space from blank
8081         quoted lines.
8082
8083 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8084
8085         * smiley.el (smiley-style): Move definition later to avoid a
8086         compilation warning.
8087
8088 2006-04-12  Kenichi Handa  <handa@m17n.org>
8089
8090         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8091         buffer and then decode the buffer text if necessary.
8092         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8093         first, and after mm-encode-body, change the buffer to unibyte.
8094         Use mm-disable-multibyte instead of set-buffer-multibyte.
8095
8096 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8097
8098         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8099         Content-Type header instead of Content-Disposition header.
8100         (gnus-mime-inline-part): Ditto.
8101         (gnus-mime-view-part-as-charset): Ignore charset that the part
8102         specifies.
8103
8104         * mm-decode.el (mm-display-part): Work with external parts and
8105         usual parts similarly.
8106
8107         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8108         instead of gnus-display-mime.
8109
8110         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8111         instead of with-temp-buffer.
8112
8113         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8114         tag to summarized topics part in order to encode non-ASCII text.
8115
8116 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8117
8118         * smiley.el (smiley-style): New variable.
8119         (smiley-directory): New function.
8120         (smiley-data-directory): Derive from `smiley-style' using
8121         `smiley-directory'.
8122         (smiley-regexp-alist): Add new entries.
8123
8124         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8125         (gnus-article-browse-delete-temp): Add :version.
8126
8127 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8128
8129         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8130         the sieve region.
8131
8132 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8133
8134         * gnus.el (gnus-version-number): Bump version.
8135
8136 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8137
8138         * gnus.el: No Gnus v0.4 is released.
8139
8140 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8141
8142         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8143         layout.
8144
8145         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8146         unknown charset.
8147
8148         * message.el (message-header-synonyms): Add Original-To to the
8149         default.
8150
8151         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8152         optional parameter.
8153
8154 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8155
8156         * gnus-fun.el (gnus): Require it for gnus-directory.
8157
8158 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8159
8160         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8161
8162 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8163
8164         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8165
8166 2006-04-05  Simon Josefsson  <jas@extundo.com>
8167
8168         * password.el (password-reset): New function.
8169
8170 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8171
8172         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8173         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8174
8175 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8176
8177         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8178         Some whitespace was matched into the url, which broke browsing hits
8179         > 100 when mm-url-use-external was nil.
8180
8181 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8182
8183         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8184         gnus-extra-headers for 'Newsgroups.
8185
8186         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8187         bound.
8188
8189 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8190
8191         * pgg-gpg.el: Clean up process buffers every time gpg processes
8192         complete.
8193
8194 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8195
8196         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8197         doc string.
8198
8199 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8200
8201         * pgg-gpg.el (pgg-gpg-process-filter)
8202         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8203
8204         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8205         lines, temporary fix.
8206
8207 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8208
8209         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8210
8211 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8212
8213         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8214         default-enable-multibyte-characters.  This reverts the change from
8215         revision 6.17 which is no longer necessary because the passphrase
8216         is sent separately now.  GnuPG messages are unreadable under
8217         multibyte locales with default-enable-multibyte-characters set to
8218         nil.
8219
8220 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8221
8222         * message.el (message-tool-bar-gnome): Move "spell".
8223
8224 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8225
8226         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8227         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8228         instead.
8229
8230 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8231
8232         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8233         newsgroups handling for NNTP overviews which don't include
8234         Newsgroups.
8235
8236 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8237
8238         * message.el (message-resend): Bind message-generate-hashcash to nil.
8239
8240 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8241
8242         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8243         when searching for already-paid recipients.
8244
8245 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8246
8247         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8248         passphrases when it is not needed.
8249         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8250         passphrase stuff from gpg, should only be necessary when you use
8251         gpg with a smartcard.
8252
8253 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8254
8255         * mml.el (mml-insert-mime): Ignore cached contents of
8256         message/external-body part.
8257
8258         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8259         (mm-insert-part): Ditto.
8260
8261 2006-03-23  Simon Josefsson  <jas@extundo.com>
8262
8263         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8264         Reiner.
8265         (pgg-gpg-use-agent-p): Use it again.
8266
8267 2006-03-23  Simon Josefsson  <jas@extundo.com>
8268
8269         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8270         older emacsen.
8271         (pgg-gpg-use-agent-p): Don't use it.
8272
8273 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8274
8275         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8276         if we can.
8277
8278 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8279
8280         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8281         (pgg-gpg-update-agent): New function.
8282         (pgg-gpg-use-agent-p): New function.
8283         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8284         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8285         (pgg-gpg-sign-region): Use it.
8286
8287 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8288
8289         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8290         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8291
8292 2006-03-21  Simon Josefsson  <jas@extundo.com>
8293
8294         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8295         <wilde@sha-bang.de>.
8296         (pgg-gpg-use-agent): New variable.
8297         (pgg-gpg-process-region): Use it.
8298         (pgg-gpg-encrypt-region): Likewise.
8299         (pgg-gpg-encrypt-symmetric-region): Likewise.
8300         (pgg-gpg-decrypt-region): Likewise.
8301         (pgg-gpg-sign-region): Likewise.
8302         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8303
8304 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8305
8306         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8307
8308         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8309         Add comment on version.
8310
8311 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8312
8313         * smiley.el: Add missing test smiley.
8314
8315 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8316
8317         * mm-decode.el (mm-with-part): New macro.
8318         (mm-get-part): Use it; work with message/external-body as well.
8319         (mm-save-part): Treat name and filename equally.
8320
8321         * mm-extern.el (mm-extern-cache-contents): New function.
8322         (mm-inline-external-body): Use it; force the part to be displayed;
8323         move undisplayer added to the cached handle to the parent.
8324
8325         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8326         (gnus-mime-view-part-as-type): Work with message/external-body.
8327
8328         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8329
8330 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8331
8332         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8333         images in image-load-path.  [Sync with image.el, revision 1.60, in
8334         Emacs.]
8335
8336 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8337
8338         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8339         path rather than symbol.  Always return list of directories.
8340         Guarantee that image directory comes first.  [Sync with image.el,
8341         revision 1.59, in Emacs.]
8342
8343         * message.el (message-make-tool-bar): Adjust to new API of
8344         `gmm-image-load-path-for-library'.
8345
8346         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8347
8348         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8349
8350 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8351
8352         * gnus-art.el (gnus-article-only-boring-p):
8353         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8354         intangible text.
8355         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8356
8357 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8358
8359         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8360         `defun' instead of `gmm-defun-compat'.
8361
8362 2006-03-14  Simon Josefsson  <jas@extundo.com>
8363
8364         * message.el (message-unique-id): Don't use message-number-base36
8365         if (user-uid) is a float.
8366         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8367
8368 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8369
8370         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8371
8372         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8373         empty line between a part and a message part.
8374
8375 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8376
8377         * smiley.el: Add more test smileys.
8378         (smiley-data-directory, smiley-regexp-alist)
8379         (gnus-smiley-file-types): Fix doc strings.
8380         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8381         adding new elements.
8382         (smiley-mouse-map): Unused code.  Make it a comment.
8383
8384 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8385
8386         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8387         scan latest NoCeM messages instead of old ones.
8388         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8389         delimiters that are recently used.
8390         (gnus-nocem-load-cache): Add autoload cookie.
8391
8392         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8393
8394         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8395         level which is larger than gnus-use-nocem is specified.
8396
8397         * gnus-group.el (gnus-group-get-new-news): Ditto.
8398
8399 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8400
8401         * gnus-util.el (gnus-tool-bar-update): New function.
8402
8403         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8404         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8405
8406         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8407
8408         * gnus-group.el (gnus-group-redraw-when-idle)
8409         (gnus-group-redraw-check): Remove.
8410         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8411
8412 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8413
8414         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8415         if optional last element is specified in splits (FIELD VALUE...).
8416
8417 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8418
8419         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8420         to gmm-image-load-path-for-library.  Call with no-error argument.
8421         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8422
8423         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8424
8425         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8426
8427         * gmm-utils.el (gmm-image-load-path): Remove alias.
8428
8429 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8430
8431         * gmm-utils.el (gmm-image-load-path): Add alias.
8432
8433         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8434         nnml-generate-nov-databases-1.
8435         (nnml-generate-nov-databases): Use it.
8436         (nnml-generate-nov-databases-directory): Document no-active
8437         argument.
8438
8439         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8440         directory if path is t.  Add no-error.
8441
8442         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8443         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8444
8445         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8446         resetting gnus-article-browse-html-temp-list.
8447
8448         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8449         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8450         Add example to docstring.  Rename local variables.  Move error
8451         checks to default case in cond and simplify.
8452
8453 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8454
8455         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8456         handle is multipart when calling it recursively.
8457         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8458
8459 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8460
8461         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8462         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8463
8464 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8465
8466         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8467         is loaded.
8468
8469         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8470         loaded.
8471
8472 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8473
8474         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8475         to "Emacs 23 (unicode)" in doc string.
8476
8477         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8478         "Emacs 23 (unicode)" in comment.
8479
8480 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8481
8482         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8483
8484         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8485         characters 160 through 255 in Emacs 23.
8486
8487 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8488
8489         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8490         gnus-article-browse-html-temp.
8491         (gnus-article-browse-delete-temp): Make it customizable.  Add
8492         `file'.  Adjust doc string.
8493         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8494         query for each file.  Adjust doc string.
8495         (gnus-article-browse-html-parts): Add
8496         `gnus-article-browse-delete-temp-files' to
8497         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8498
8499 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8500
8501         * gnus-art.el (gnus-article-browse-html-temp)
8502         (gnus-article-browse-delete-temp): New variables.
8503         (gnus-article-browse-delete-temp-files): New function.
8504         (gnus-article-browse-html-parts): Use it.
8505
8506 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8507
8508         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8509
8510         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8511         string.
8512
8513         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8514         gnus-summary-insert-new-articles when unplugged.  Remove
8515         gnus-summary-search-article-forward.
8516
8517         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8518         display-visual-class instead of display-color-cells.
8519
8520 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8521
8522         * dgnushack.el: Autoload customize-group for XEmacs.
8523
8524         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8525         message/* containing non-ASCII text properly.
8526
8527 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8528
8529         * message.el: Require gmm-utils, remove autoloads.
8530         (message-tool-bar): Set default based on
8531         gmm-tool-bar-style.
8532         (message-tool-bar-gnome): Add gmm-customize-mode.
8533
8534         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8535         gmm-tool-bar-style.
8536         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8537
8538         * gnus-group.el (gnus-group-tool-bar): Set default based on
8539         gmm-tool-bar-style.
8540         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8541
8542         * gmm-utils.el (gmm-image-directory): Rename variable from
8543         gmm-image-load-path.
8544         (gmm-image-load-path): Use gmm-image-directory.
8545         (gmm-customize-mode): New function.
8546         (gmm-tool-bar-style): New variable.
8547
8548         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8549         gnus-group-redraw-line-number.
8550         (gnus-group-redraw-check): Simplify.
8551         (gnus-group-tool-bar-update): Remove redraw check.
8552         (gnus-group-make-tool-bar): Add redraw check.
8553
8554 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8555
8556         * gnus-art.el (gnus-button): Add missing parentheses.
8557
8558 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8559
8560         * lpath.el: Fbind line-number-at-pos.
8561
8562 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8563
8564         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8565
8566 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8567
8568         * gnus-art.el (gnus-button): New face.
8569         (gnus-article-button-face): Use it.
8570
8571         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8572         gnus-summary-next-page.  Re-order.
8573
8574         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8575         next-node are now included.
8576         (gnus-group-redraw-line-number): New internal variable.
8577         (gnus-group-redraw-check): Helper function for updating the tool
8578         bar.
8579         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8580
8581         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8582
8583         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8584         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8585         Use it to match format of Spamassassin 3.0 and later.  Reported by
8586         IRIE Tetsuya <irie@t.email.ne.jp>.
8587         (spam-check-bogofilter)
8588         (spam-bogofilter-register-with-bogofilter): Fix args of
8589         `gnus-error' calls.
8590
8591 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8592
8593         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8594         unnecessary interaction when sending queued mails.  Reported by
8595         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8596
8597 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8598
8599         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8600         first or last are nil.
8601
8602 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8603
8604         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8605
8606 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8607
8608         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8609
8610 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8611
8612         * dns.el (query-dns): Protect more against buggy tcp output.
8613
8614 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8615
8616         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8617         nov.php.
8618
8619 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8620
8621         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8622         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8623         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8624         output on the server side.
8625         (nnweb-google-create-mapping): Update regexps and add some
8626         progress indication.
8627
8628 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8629
8630         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8631         gnus-agent-toggle-plugged.  Re-order icons.
8632         (gnus-group-tool-bar-gnome): Add
8633         gnus-group-{prev,next}-unread-group.
8634         (gnus-group-tool-bar-gnome): Re-order icons.
8635
8636         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8637         gnus-summary-insert-new-articles.
8638
8639         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8640         comments.
8641
8642         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8643         also available in Emacs 21.3.
8644
8645         * message.el (message-fix-before-sending): Change "Emacs 22" to
8646         "Emacs 23 (unicode)" in comment.
8647
8648         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8649         "Emacs 23 (unicode)" in comment.
8650
8651         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8652         comment.
8653         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8654
8655         * mm-view.el (mm-fill-flowed): Add :version.
8656
8657 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8658
8659         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8660         and load-path.
8661
8662 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8663
8664         * message.el: Autoload gmm-image-load-path.
8665         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8666         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8667         consitency.
8668
8669         * gmm-utils.el (gmm-image-load-path): Also search in
8670         "../etc/images".  Don't set gmm-image-load-path if we don't find
8671         the image.
8672
8673 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8674
8675         * gmm-utils.el (gmm-image-load-path): Don't make
8676         `gmm-image-load-path' include subdirectories which the second arg
8677         `image' might specify.
8678
8679         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8680         subdirectory to icon file names.
8681
8682         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8683
8684 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8685
8686         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8687         gmm-image-load-path calls.
8688
8689         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8690
8691         * message.el (message-make-tool-bar): Ditto.
8692
8693         * mml.el (mml-preview): Added comment concerning tool bar icons.
8694
8695         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8696         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8697
8698         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8699         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8700
8701         * message.el (message-tool-bar-gnome): Use new icon names.
8702         (message-make-tool-bar): Use `gmm-image-load-path'.
8703
8704         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8705         functions from MH-E.
8706         (gmm-image-load-path): New variable from MH-E.
8707         (gmm-image-load-path): New function from MH-E.  Added arguments
8708         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8709         *-image-load-path-called-flag.
8710
8711 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8712
8713         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8714
8715 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8716
8717         * nnimap.el (nnimap-request-move-article): Change folder back to
8718         source group before deleting.
8719
8720 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8721
8722         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8723
8724         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8725         mm-url.
8726
8727         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8728
8729 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8730
8731         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8732         coding system which mm-charset-to-coding-system returns for a
8733         given charset is valid.
8734
8735 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8736
8737         * html2text.el (html2text-remove-tag-list):
8738         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8739
8740 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8741
8742         * gnus-cus.el: Revert 2005-10-17 change.
8743
8744 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8745
8746         * gnus-art.el (article-strip-banner): Call
8747         article-really-strip-banner only when the regexp match is made.
8748
8749 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8750
8751         * gnus-art.el (article-strip-banner): Use
8752         gnus-extract-address-components instead of
8753         mail-header-parse-addresses to make it work with non-ASCII text;
8754         remove mail-encode-encoded-word-string.
8755
8756         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8757         values which are surrounded with \"...\"; make it never cause a
8758         Lisp error; give up parsing of parameters if it failed in
8759         extracting type.
8760
8761 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8762
8763         * smime.el (smime-cert-by-ldap-1): Fix bug where
8764         `smime-ldap-search' returns results without userCertificates.
8765
8766 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8767
8768         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8769
8770 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8771
8772         * spam.el (spam-check-spamassassin-headers): Adapt format for
8773         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8774         <ari@mbf.ocn.ne.jp>.
8775         (spam-list-of-processors): Add spam-use-gmane.
8776
8777 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8778
8779         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8780         make-temp-file; make it work with XEmacs as well.
8781
8782         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8783         mm-make-temp-file.
8784
8785         * mm-decode.el (mm-display-external): Use the 3rd arg of
8786         mm-make-temp-file.
8787         (mm-create-image-xemacs): Ditto.
8788
8789 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8790
8791         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8792         with message-narrow-to-headers.
8793         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8794         (gnus-draft-check-draft-articles): New function.
8795         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8796
8797 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8798
8799         * gnus-art.el (gnus-article-browse-html-parts):
8800         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8801         Don't use suffix argument for mm-make-temp-file for Emacs 21
8802         compatibility.  Remove useless `format'.
8803
8804 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8805
8806         * nnweb.el (nnweb-google-wash-article): Update regexps.
8807         (nnweb-group-alist): Use defvoo instead of defvar.
8808
8809 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8810
8811         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8812         re-loading nn* modules.
8813
8814 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8815
8816         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8817         for `tool-bar-mode' and don't check it's default-value.
8818
8819         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8820
8821         * message.el (message-make-tool-bar): Ditto.
8822
8823         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8824         `substring'.  Shorten tmp-file name.
8825
8826         * gnus.el: Remove bogus comment.
8827
8828 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8829
8830         * gnus-art.el (gnus-article-browse-html-parts): New function.
8831         (gnus-article-browse-html-article): New function for viewing html
8832         articles with a browser.
8833
8834 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8835
8836         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8837         in elisp.
8838         (pgg-gpg-encrypt-symmetric-region): Ditto.
8839         (pgg-gpg-sign-region): Ditto.
8840
8841         * pgg-def.el (pgg-text-mode): New variable.
8842
8843         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8844         (mml2015-pgg-encrypt): Ditto.
8845
8846         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8847         (mml1991-pgg-encrypt): Ditto.
8848
8849 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8850
8851         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8852         message-make-date instead of current-time-string.
8853
8854         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8855         to gnus-decoded which mm-uu might set.
8856
8857 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8858
8859         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8860         don't decode quoted parameters; remove misimported Emacs code.
8861         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8862         (rfc2231-decode-encoded-string): Don't use split-string which
8863         behaves differently according to Emacs version; use
8864         mm-decode-coding-region to convert charset to coding-system.
8865         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8866         (rfc2231-encode-string): Remove misimported Emacs code.
8867
8868 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8869
8870         * gnus-art.el (article-decode-charset): Don't use ignore-errors
8871         when calling mail-header-parse-content-type.
8872         (article-de-quoted-unreadable): Ditto.
8873         (article-de-base64-unreadable): Ditto.
8874         (article-wash-html): Ditto.
8875
8876         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
8877         calling mail-header-parse-content-type and
8878         mail-header-parse-content-disposition.
8879         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
8880         mail-header-parse-content-type.
8881
8882         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
8883         insert charset and format parameters; encode description after
8884         inserting it to buffer.
8885         (mml-insert-parameter): Fold lines properly even if a parameter is
8886         segmented into two or more lines; change the max column to 76.
8887
8888         * rfc1843.el (rfc1843-decode-article-body): Don't use
8889         ignore-errors when calling mail-header-parse-content-type.
8890
8891         * rfc2231.el (rfc2231-parse-string): Return at least type if
8892         possible; don't cause an error even if it fails in parsing of
8893         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8894         (rfc2231-encode-string): Don't break lines at the beginning, leave
8895         it to mml-insert-parameter.
8896
8897         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
8898         calling mail-header-parse-content-type.
8899
8900 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
8901
8902         * spam-report.el (spam-report-gmane-use-article-number):
8903         Improve doc string.
8904         (spam-report-gmane-internal): Check if a suitable header was found
8905         in the article.
8906
8907 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8908
8909         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
8910         (rfc2231-encode-string): Make param*=value always begin with LWSP.
8911
8912 2006-02-05  Romain Francoise  <romain@orebokech.com>
8913
8914         Update copyright notices of all files in the gnus directory.
8915
8916 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8917
8918         * nnweb.el (nnweb-request-group): Avoid growing overview files.
8919
8920 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8921
8922         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
8923         segmented lines of parameter value to cope with Thunderbird 1.5
8924         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
8925         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8926         (rfc2231-encode-string): Don't make lines exceeding 76 column.
8927
8928 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
8929
8930         * mml.el (mml-generate-mime-1): Correct the order of inline signed
8931         parts.
8932
8933 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8934
8935         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
8936         there's only one active file for all servers.
8937         (nnweb-request-scan): Make sure nnweb-articles is initialized on
8938         solid groups.  Gnus might have used a FAST request to select the group.
8939         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
8940         and nnweb-search redundantly in the active file.
8941         (nnweb-request-list): Don't list bogus groups.  There can only be one.
8942         (nnweb-request-create-group): Don't use ARGS.
8943         (nnweb-possibly-change-server, nnweb-request-group): Remove some
8944         initialisations.  Let nnoo do the work.
8945
8946 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8947
8948         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
8949         Say the part has been decoded.
8950
8951         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
8952
8953 2006-01-31  Kevin Ryde  <user42@zip.com.au>
8954
8955         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
8956         mailcap-viewer-test-cache when there's no 'test clause, since that
8957         will invert the meaning of a "nil" test previously determined by
8958         mailcap-mailcap-entry-passes-test.
8959
8960 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8961
8962         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
8963         compiling.
8964
8965         * gnus-sum.el: Ditto.
8966
8967         * message.el: Don't bind tool-bar-map when compiling.
8968
8969 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
8970
8971         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
8972
8973 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8974
8975         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
8976         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
8977         current Google Groups.
8978
8979 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
8980
8981         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
8982         and tool-bar-mode.
8983
8984         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
8985         and tool-bar-mode.
8986
8987         * message.el (message-tool-bar-update): Simplify.
8988         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
8989
8990         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
8991         gnus-summary-buffer.
8992         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
8993         gnus-summary-reply.
8994
8995         * gmm-utils.el (gmm): Add :version.
8996
8997 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8998
8999         * Makefile.in (clean): New rule.
9000         (distclean): Use it.
9001
9002 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9003
9004         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9005         autoload.
9006
9007 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9008
9009         * gmm-utils.el (gmm-verbose): Add :group.
9010
9011 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9012
9013         * message.el: Change some comments WRT tool-bars.
9014
9015         * gnus-sum.el (gnus-summary-tool-bar)
9016         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9017         (gnus-summary-tool-bar-zap-list): New variables.
9018         (gnus-summary-make-tool-bar): Complete rewrite using
9019         `gmm-tool-bar-from-list'.
9020
9021         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9022         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9023         variables.
9024         (gnus-group-make-tool-bar): Complete rewrite using
9025         `gmm-tool-bar-from-list'.
9026         (gnus-group-tool-bar-update): New function.
9027
9028         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9029
9030 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9031
9032         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9033         is dissected into a single part of which the type is the same as
9034         the given one; decode charset.
9035
9036 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9037
9038         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9039         into alists as symbol not string, since that's what
9040         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9041         look for.
9042
9043 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9044
9045         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9046         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9047
9048         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9049
9050 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9051
9052         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9053         (gnus-xmas-mime-security-button-menu): New function.
9054
9055         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9056         (gnus-mime-security-button-menu): New definition.
9057         (gnus-mime-security-button-map): Use them.
9058         (gnus-mime-security-button-menu): New function.
9059         (gnus-insert-mime-security-button): Addition to help echo.
9060         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9061         (gnus-mime-security-pipe-part): New functions.
9062
9063         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9064         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9065
9066         * mm-decode.el (mm-handle-set-disposition): Remove.
9067         (mm-handle-set-description): Remove.
9068
9069 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9070
9071         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9072         (mm-w3m-standalone-supports-m17n-p): New function.
9073         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9074         w3m usage.
9075
9076         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9077         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9078
9079 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9080
9081         * message.el (message-tool-bar-zap-list): Use
9082         gmm-tool-bar-zap-list as custom type.
9083         (message-tool-bar-update): New function.
9084         (message-tool-bar, message-tool-bar-gnome)
9085         (message-tool-bar-retro): Add message-tool-bar-update.
9086         (message-tool-bar-gnome): Add flyspell-buffer.
9087
9088         * gnus-util.el (gnus-error): Describe `args'.
9089
9090         * gmm-utils.el (gmm-error): Describe `args'.
9091         (gmm-tool-bar-zap-list): New widget.
9092         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9093
9094 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9095
9096         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9097         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9098         the number of recursive calls.
9099
9100         * mm-decode.el (mm-handle-set-disposition): New macro.
9101         (mm-handle-set-description): New macro.
9102
9103 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9104
9105         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9106         encoding.
9107
9108 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9109
9110         * message.el (message-tool-bar-zap-list, message-tool-bar)
9111         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9112         (message-tool-bar-local-item-from-menu): Remove.
9113         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9114         (message-make-tool-bar): New function.
9115         (message-mode): Use `message-make-tool-bar'.
9116
9117         * gmm-utils.el: New file.
9118         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9119         (gmm-lazy): New widget copied from `nnmail.el'.
9120         (gmm-tool-bar-from-list): New function for creating customizable
9121         tool bars.
9122         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9123         output.
9124         (gmm): Add :prefix to defgroup.
9125
9126 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9127
9128         * gmm-utils.el (gmm-widget-p): New function.
9129
9130 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9131
9132         * mml.el (mml-attach-file): Describe `description' in doc string.
9133         (mml-menu): Add Emacs MIME manual and PGG manual.
9134
9135 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9136
9137         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9138
9139 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9140
9141         * nntp.el (nntp-end-of-line): Doc fix.
9142
9143 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9144
9145         * imap.el (imap-open): Handle case where buffer is a buffer
9146         object.
9147
9148 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9149
9150         * gnus-delay.el (gnus-delay): Don't autoload.
9151         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9152         to be re-loaded when customizing the `gnus-delay' group.
9153
9154 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9155
9156         * message.el (message-insert-citation-line): Use newlines.
9157
9158 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9159
9160         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9161         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9162         these routines, so the passphrase can be managed externally and
9163         passed in to the system.
9164         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9165         pgg-add-passphrase-to-cache function.
9166
9167         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9168         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9169         these routines, so the passphrase can be managed externally and
9170         passed in to the system.
9171         (pgg-pgp5-sign-region): Use new name of
9172         pgg-add-passphrase-to-cache function.
9173
9174 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9175
9176         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9177         part of the decoded armor to find the key-identifier.
9178         (pgg-gpg-lookup-key-owner): New function to return the
9179         human-readable identifier of a key owner.
9180         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9181         itself.
9182         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9183         the key value) if we have a key and can match it against a secret
9184         key.  Also, added a note pointing out fact that the prompt only
9185         indicates the first matching key.
9186
9187         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9188         pgg-decrypt-region.
9189         (pgg-add-passphrase-to-cache): Rename from
9190         `pgg-add-passphrase-cache' to reduce confusion (all callers
9191         changed).
9192         (pgg-remove-passphrase-from-cache): Rename from
9193         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9194         changed).
9195         (pgg-read-passphrase, pgg-add-passphrase-cache)
9196         (pgg-remove-passphrase-cache): Add informative docstrings.
9197         (pgg-decrypt): Convey provided passphrase in subordinate call to
9198         pgg-decrypt-region.
9199
9200 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9201
9202         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9203         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9204         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9205         'passphrase' argument, so the passphrase can be managed externally
9206         and then passed in to the system.
9207
9208         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9209         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9210         so the passphrase cache can be used reliably with identifiers
9211         besides a pgp packet's key id.
9212
9213         * pgg-gpg.el (pgg-gpg-encrypt-region)
9214         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9215         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9216         these routines, so the passphrase can be managed externally and
9217         passed in to the system.
9218
9219         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9220         'notruncate' argument, so the passphrase cache can be used
9221         reliably with identifiers besides a pgp packet's key id.
9222
9223 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9224
9225         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9226         symmetric encryption.
9227         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9228         encrypted session key.
9229         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9230         message ask for the passphrase in a proper way.
9231
9232         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9233         New user commands for symmetric encryption.
9234
9235 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9236
9237         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9238
9239         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9240
9241 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9242
9243         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9244
9245 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9246
9247         * mm-decode.el (mm-inlined-types): Add application/pgp.
9248         (mm-automatic-display): Ditto.
9249
9250         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9251         part as text.
9252
9253 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9254
9255         * nnrss.el: Update copyright.
9256         (nnrss-opml-import): Query whether to subscribe to each entry.
9257
9258         * gnus-art.el:
9259         * gnus-sum.el:
9260         * gnus-xmas.el:
9261         * messagexmas.el:
9262         * mm-uu.el:
9263         * mm-view.el: Update copyright.
9264
9265 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9266
9267         * message.el (message-info): New function.
9268         (message-mode-menu): Add it.
9269         Update copyright.
9270
9271         * ChangeLog: Fix and update copyright.
9272
9273 2006-01-13  Romain Francoise  <romain@orebokech.com>
9274
9275         * message.el (message-forward-subject-name-subject): Prefer the
9276         address to 'nowhere' if the sender has no name.
9277         Fix typo.  Update copyright year.
9278
9279 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9280
9281         * gnus-art.el (article-wash-html): Use
9282         gnus-summary-show-article-charset-alist if a numeric arg is given.
9283         (gnus-article-wash-html-with-w3m-standalone): New function.
9284
9285         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9286         mm-inline-text-html-render-with-w3m-standalone.
9287         (mm-text-html-washer-alist): Map w3m-standalone to
9288         gnus-article-wash-html-with-w3m-standalone.
9289         (mm-inline-text-html-render-with-w3m-standalone): New function.
9290
9291 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9292
9293         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9294         Improve LaTeX.
9295
9296 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9297
9298         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9299         (nnrss-request-article): Render text/plain parts as HTML.
9300
9301         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9302         the buffer.
9303
9304 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9305
9306         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9307         custom definition of `gnus-posting-styles'.
9308
9309         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9310         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9311
9312 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9313
9314         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9315         Use nntp for bug archive.
9316
9317 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9318
9319         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9320         parts.
9321         (nnrss-normalize-date): New function converts ISO 8601 date into
9322         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9323         (nnrss-check-group): Use it.
9324
9325 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9326
9327         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9328
9329         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9330         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9331         (nnrss-insert-w3): Ditto.
9332
9333 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9334
9335         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9336         the articles to be forwarded including the case where neither a
9337         number of articles nor a region is specified.
9338
9339 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9340
9341         * nnrss.el (nnrss-request-article): Fix last change; fill
9342         text/plain parts.
9343
9344 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9345
9346         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9347         in text/plain part.
9348         (nnrss-check-group): Don't add excessive newline to dc:subject.
9349
9350 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9351
9352         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9353         article.
9354
9355 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9356
9357         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9358         (nnml-use-compressed-files, nnml-save-mail): Support other
9359         comression programs such as bzip2.
9360
9361 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9362
9363         * dns.el (query-dns): Make sure we check the buffer size before
9364         removing tcp headers.
9365
9366 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9367
9368         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9369         remove MIME buttons associated with multipart/alternative parts.
9370         (gnus-mime-display-alternative): Tag buttons using `article-type'
9371         text property.
9372
9373         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9374         associated with multipart/alternative parts.
9375
9376         * gnus-art.el (gnus-signature-separator): Fix custom type.
9377
9378         * mm-decode.el (mm-inlined-types): Fix custom type.
9379         (mm-keep-viewer-alive-types): Ditto.
9380         (mm-automatic-display): Ditto.
9381         (mm-attachment-override-types): Ditto.
9382         (mm-inline-override-types): Ditto.
9383         (mm-automatic-external-display): Ditto.
9384
9385 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9386
9387         * spam-report.el (spam-report-user-mail-address)
9388         (spam-report-user-agent): New variables.
9389         (spam-report-url-ping-plain): Use spam-report-user-agent.
9390
9391 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9392
9393         * gnus-art.el (gnus-button-handle-custom): Do not just use
9394         `customize-apropos' for any "M-x customize-*" button but the
9395         function called for.  Accept both the function name and its
9396         argument in order to achieve this.
9397         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9398         function name to `gnus-button-handle-custom' in case of "M-x
9399         customize-*" buttons.
9400
9401 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9402
9403         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9404         multipart/alternative and add xref to mm-discouraged-alternatives
9405         in doc string.
9406
9407         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9408         gnus-buttonized-mime-types in doc string.
9409
9410 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9411
9412         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9413         Suggest image/.* in the doc string.
9414
9415 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9416
9417         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9418         message-marks (Debian bug #342521).
9419
9420 2005-12-12  Simon Josefsson  <jas@extundo.com>
9421
9422         * password.el (password-read-from-cache): Add.
9423         (password-read): Use it.
9424
9425 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9426
9427         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9428         us-ascii as a MIME charset.
9429
9430         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9431         against the case where the 2nd arg TYPE is nil.
9432
9433 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9434
9435         * pop3.el (pop3-stream-type): Fix custom version.
9436
9437         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9438
9439 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9440
9441         * mm-decode.el (mm-display-external): Add missing cdr.
9442
9443 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9444
9445         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9446         RFC1524) if it is in mailcap or add a suffix according to
9447         mailcap-mime-extensions when generating a temp filename; postpone
9448         deleting a temp file for 2 seconds for some wrappers, shell
9449         scripts, and so on, which might exit right after having started a
9450         viewer command as a background job.
9451
9452 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9453
9454         * nntp.el (nntp-marks-directory): Fix custom group.
9455
9456         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9457         steps when < 10.
9458
9459         * gnus-start.el (gnus-no-server-1): Mention
9460         `gnus-level-default-subscribed' in doc string.
9461
9462 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9463
9464         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9465         parens.
9466
9467 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9468
9469         * gnus-xmas.el (gnus-use-toolbar): Revert.
9470         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9471         gnus-use-toolbar is default.
9472
9473         * messagexmas.el (message-use-toolbar): Revert.
9474         (message-setup-toolbar): Use global default-toolbar if
9475         message-use-toolbar is default.
9476
9477 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9478
9479         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9480         according to default-toolbar-visible-p.
9481
9482         * messagexmas.el (message-use-toolbar): Ditto.
9483
9484 2005-11-26  Dave Love  <fx@gnu.org>
9485
9486         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9487         (tls-program, tls-success): Provide openssl alternative.
9488
9489         * starttls.el: Doc fixes.
9490         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9491         SERVICE to PORT.
9492
9493         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9494         port null or service name.
9495         (starttls-negotiate): Autoload.
9496
9497 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9498
9499         * message.el (message-kill-to-signature): Fix interactive spec.
9500
9501 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9502
9503         * pop3.el (pop3-open-server): Recognize a string as a service name.
9504
9505 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9506
9507         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9508
9509 2005-11-23  Dave Love  <fx@gnu.org>
9510
9511         Add pop3s, pop3/starttls.
9512
9513         * pop3.el (pop3-authentication-scheme): Clarify doc.
9514         (open-tls-stream, starttls-open-stream): Autoload.
9515         (pop3-stream-type): New.
9516         (pop3-open-server): Use it.
9517
9518         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9519         for POP.
9520         (mail-source-keyword-map): Add :stream for POP.
9521         (mail-source-fetch-pop): Use pop3-stream-type.
9522
9523 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9524
9525         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9526         of current-time-string.
9527
9528 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9529
9530         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9531         date header.
9532
9533 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9534
9535         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9536         it can seriously impact performance as it bypasses the agent's
9537         local caches.
9538
9539 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9540
9541         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9542         must be explicitly online rather than "not explicitly offline" for
9543         its flags to be synchronized.
9544
9545         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9546         that gnus-uu-unmark-thread will function correctly.
9547
9548         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9549         1024K is instead displayed as 1M.
9550
9551 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9552
9553         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9554
9555 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9556
9557         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9558
9559 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9560
9561         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9562         error message to display actual error condition.
9563         (gnus-agent-save-local): Avoid saving symbols that are bound to
9564         nil as they simply result in a warning message in
9565         gnus-agent-read-local.
9566
9567 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9568
9569         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9570         rather than make-variable-buffer-local for file-precious-flag.
9571
9572 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9573
9574         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9575         for duplicates which are removed.  The invalid sort check then
9576         triggers a rescan after the sort as sorting may have moved
9577         duplicate entries such that they can be cheaply detected.
9578
9579 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9580
9581         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9582
9583 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9584
9585         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9586         internal variable to a custom variable.  Changed default value
9587         from compressed(2) to uncompressed(1).
9588         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9589         support for uncompressed agentview files.  Taken together, reading
9590         the agentview file should now be 6-7 times faster.
9591
9592 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9593
9594         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9595         as a buffer-local variable.  This avoids creating truncated
9596         dribble files as a result of a hang up, eg.
9597
9598 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9599
9600         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9601         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9602         XEmacs.
9603
9604 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9605
9606         * gnus-start.el (gnus-start-draft-setup): Enforce
9607         `gnus-draft-mode' for nndraft:drafts at startup.
9608
9609         * gnus.el (gnus-splash): Change custom group.
9610         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9611         allow-list argument.
9612
9613         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9614         string.
9615
9616 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9617
9618         * gnus-art.el (gnus-default-article-saver): Add user-defined
9619         `function' to custom type.
9620
9621 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9622
9623         * imap.el (imap-open): Handle case where buffer is a buffer
9624         object.
9625
9626 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9627
9628         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9629         long lines.
9630         (gnus-cache-delete-group): Wrap doc strings.
9631
9632         * gnus-agent.el (gnus-agent-rename-group)
9633         (gnus-agent-delete-group): Wrap doc strings.
9634
9635 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9636
9637         * messagexmas.el (message-use-toolbar): Change the valid values
9638         into default, top, bottom, left, and right.
9639         (message-toolbar-thickness): New variable.
9640         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9641         well.
9642         (message-setup-toolbar): Make it work.
9643
9644         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9645         (gnus-use-toolbar): Change the valid values into default, top,
9646         bottom, left, and right.
9647         (gnus-toolbar-thickness): New variable.
9648         (gnus-xmas-setup-toolbar): New function.
9649         (gnus-xmas-setup-group-toolbar): Use it.
9650         (gnus-xmas-setup-summary-toolbar): Use it.
9651
9652 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9653
9654         * gnus-start.el (gnus-1): Add "native" to
9655         gnus-predefined-server-alist.
9656
9657         * gnus.el (gnus-method-to-server): Don't add "native" to the
9658         lists here, because that leads to problems when
9659         gnus-select-method is bound.
9660
9661 2005-11-09  Simon Josefsson  <jas@extundo.com>
9662
9663         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9664         use (not sort-by-date) instead.
9665
9666 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9667
9668         * gnus-delay.el (gnus-delay-group): Don't autoload.
9669         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9670         to be re-loaded when customizing the `gnus-delay' group.
9671
9672 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9673
9674         * message.el: Revert last changes.
9675         (message-insert-citation-line): Use newlines.
9676
9677 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9678
9679         * message.el (message-courtesy-message)
9680         (message-mark-insert-begin, message-mark-insert-end)
9681         (message-elide-ellipsis, message-cancel-message)
9682         (message-add-header, message-change-subject)
9683         (message-cross-post-followup-to-header)
9684         (message-cross-post-insert-note, message-reduce-to-to-cc)
9685         (message-widen-reply, message-delete-not-region)
9686         (message-kill-to-signature, message-insert-signature)
9687         (message-insert-importance-high, message-insert-importance-low)
9688         (message-insert-or-toggle-importance)
9689         (message-insert-disposition-notification-to)
9690         (message-indent-citation, message-yank-original)
9691         (message-cite-original-without-signature, message-cite-original)
9692         (message-insert-citation-line, message-position-on-field)
9693         (message-fix-before-sending, message-send-mail-partially)
9694         (message-send-mail, message-send-mail-with-sendmail)
9695         (message-send-mail-with-qmail, message-send-news)
9696         (message-check-news-header-syntax, message-generate-headers)
9697         (message-insert-courtesy-copy, message-fill-address)
9698         (message-fill-header, message-shorten-references)
9699         (message-setup-1, message-cancel-news)
9700         (message-forward-make-body-plain, message-forward-make-body-mime)
9701         (message-forward-make-body-mml, message-encode-message-body)
9702         (message-forward-make-body-digest-plain)
9703         (message-forward-make-body-digest-mime)
9704         (message-use-alternative-email-as-from): Insert `hard-newline'
9705         instead of ordinary newlines.
9706
9707 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9708
9709         * message.el (message-generate-headers): Downcase the argument
9710         given to message-check-element.
9711
9712 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9713
9714         * nntp.el (nntp-authinfo-rejected): New error condition.
9715         (nntp-wait-for): Use new error condition to signal authentication
9716         error.
9717         (nntp-retrieve-data): Rethrow new error condition to break out of
9718         recursive call to nntp-send-authinfo.
9719
9720 2005-11-08  Romain Francoise  <romain@orebokech.com>
9721
9722         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9723         (gnus-summary-exit-map): Bind to `Z p'.
9724         (gnus-summary-make-menu-bar): Add menu item.
9725
9726 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9727
9728         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9729         (gnus-treat-*): Add `first' in all doc strings.
9730
9731         * gnus-group.el (gnus-group-compact-group): Fix typo.
9732
9733 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9734
9735         * gnus.el (gnus-parameters-case-fold-search): New variable.
9736         (gnus-parameters-get-parameter): Use it.
9737
9738         * gnus-score.el (gnus-home-score-file): Doc fix.
9739
9740 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9741
9742         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9743
9744 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9745
9746         * mm-util.el (mm-special-display-p): New function.
9747
9748         * mml.el (mml-preview): Use it; doc fix.
9749
9750 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9751
9752         * imap.el (imap-open): Handle case where buffer is a buffer object.
9753
9754 2005-10-29  Romain Francoise  <romain@orebokech.com>
9755
9756         * message.el (message-fix-before-sending): Fix comment.
9757
9758 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9759
9760         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9761
9762 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9763
9764         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9765         Used in gnus-score.el.
9766
9767 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9768
9769         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9770
9771 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9772
9773         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9774         whitespace removed in revision 7.8.  Use concatenated string to
9775         protect trailing whitespace.
9776
9777 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9778
9779         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9780         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9781         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9782         Courier IMAP ("some version from 2004").  Mostly based on similar
9783         code in the same function.
9784
9785 2005-10-26  Didier Verna  <didier@xemacs.org>
9786
9787         * gnus-group.el (gnus-group-compact-group): Invalidate original
9788         article buffer.
9789         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9790         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9791         NOV database and in article itself.
9792         Invalidate article backlog.
9793
9794 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9795
9796         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9797
9798 2005-10-26  Simon Josefsson  <jas@extundo.com>
9799
9800         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9801         part of 2004-07-25 change.
9802
9803 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9804
9805         * message.el (message-display-completion-list): New function.
9806         (message-expand-group): Use it; make sure the Completions buffer
9807         is modifiable.
9808 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9809
9810         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9811         user-mail-name is an empty string.
9812
9813 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9814
9815         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9816         depending on gnus-score-decay-constant.
9817
9818         * encrypt.el (encrypt-insert-file-contents)
9819         (encrypt-write-file-contents): Don't use `gnus-message'.
9820
9821         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9822         arguments.
9823         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9824         arguments to mm-uu-verbatim-marks-extract.
9825         (mm-uu-hide-markers): New variable.
9826         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9827
9828         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9829         (gnus-convert-image-to-face-command): Use "convert" by default to
9830         allow other input image formats.
9831         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9832         accordingly.
9833
9834 2005-10-23  Simon Josefsson  <jas@extundo.com>
9835
9836         * imap.el (imap-gssapi-program): Align command line parameters
9837         with latest GNU SASL.
9838         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9839
9840 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9841
9842         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9843         HTML.
9844         (nnslashdot-request-article): Ditto.
9845
9846         * lpath.el (featurep): Add nobreak-char-display.
9847
9848 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9849
9850         * mail-source.el (mail-source-fetch-pop): Require pop3.
9851         (mail-source-check-pop): Ditto.
9852
9853 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9854
9855         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9856         errors.
9857
9858 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9859
9860         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9861         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9862
9863         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9864
9865         * mm-bodies.el (mm-decode-string): Call
9866         `mm-charset-to-coding-system' with allow-override argument.
9867
9868 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9869
9870         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
9871         (rfc2047-charset-to-coding-system): New function.
9872         (rfc2047-decode-encoded-words): New function.
9873         (rfc2047-decode-region): Use them.
9874         (rfc2047-decode-cte): Remove.
9875         (rfc2047-parse-and-decode): Remove.
9876         (rfc2047-decode): Remove.
9877
9878 2005-10-15  Kenichi Handa  <handa@m17n.org>
9879
9880         * rfc2047.el (rfc2047-decode-cte): New function.
9881         (rfc2047-decode-region): Change the way to decode successive
9882         encoded-words: decode B- or Q-encoding in each encoded-word,
9883         concatenate them, and decode it as charset.
9884
9885 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9886
9887         * lpath.el: Fbind codepage-setup for XEmacs.
9888
9889 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
9890
9891         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
9892         widget-move-and-invoke.
9893         (gnus-custom-mode): Use gnus-custom-map.
9894
9895 2005-10-15  Bill Wohler  <wohler@newt.com>
9896
9897         * message.el (message-tool-bar-map): Renamed image file from
9898         mail_send to mail/send.
9899
9900 2005-10-16  Masatake YAMATO  <jet@gyve.org>
9901
9902         * message.el (message-expand-group): Pass the common
9903         prefix substring of completion to `display-completion-list'.
9904
9905 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
9906
9907         * mml-sec.el (mml-secure-method): New internal variable.
9908         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
9909         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
9910         functions using mml-secure-method.
9911
9912         * mml.el (mml-mode-map): Add key bindings for those functions.
9913         (mml-menu): Simplify security menu entries.  Suggested by Jesper
9914         Harder <harder@myrealbox.com>.
9915         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
9916         end of message if point is the headers of the message.
9917
9918         * message.el (message-in-body-p): New function.
9919
9920         * assistant.el: Autoload gnus-util and netrc.
9921
9922         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
9923         Use `mm-charset-override-alist' only when decoding.
9924
9925         * mm-bodies.el (mm-decode-body): Call
9926         `mm-charset-to-coding-system' with allow-override argument.
9927
9928         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
9929         `filename' from Content-Disposition if Content-Type doesn't
9930         provide `name'.
9931         (gnus-mime-view-part-as-type): Set default instead of
9932         initial-input.
9933
9934 2005-10-09  Daniel Brockman  <daniel@brockman.se>
9935
9936         * format-spec.el (format-spec): Propagate text properties of % spec.
9937
9938 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
9939
9940         * gnus-art.el (gnus-treat-predicate): Add `first'.
9941
9942 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
9943
9944         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
9945         (mm-charset-override-alist): New variable.
9946         (mm-charset-to-coding-system): Use it.
9947         (mm-codepage-setup): New helper function.
9948         (mm-charset-eval-alist): New variable.
9949         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
9950         about unknown charsets.
9951
9952         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
9953
9954 2005-10-04  David Hansen  <david.hansen@gmx.net>
9955
9956         * nnrss.el (nnrss-request-article): Add support for the comments tag.
9957         (nnrss-check-group): Ditto.
9958
9959 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9960
9961         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
9962         Rename x-gnus-verbatim to x-verbatim.
9963         (mm-uu-type-alist): Fix regexp for verbatim-marks.
9964
9965         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
9966         x-verbatim.
9967
9968         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
9969
9970         * gnus-util.el (gnus-remove-duplicates): Remove.
9971
9972         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
9973         instead of gnus-remove-duplicates.
9974
9975         * message.el (message-remove-duplicates): Remove.
9976         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
9977         message-remove-duplicates.
9978
9979         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
9980         available, else use implementation from `delete-dups'.
9981
9982         * message.el (message-insert-expires): New function.
9983         (message-mode-map): Add key binding.
9984         (message-mode-field-menu): Add menu entry.
9985         (message-mode): Document it.
9986         (message-make-expires-date): Use `message-make-date'.
9987
9988 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
9989
9990         * message.el (message-make-expires-date): New function.
9991
9992 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9993
9994         * Makefile.in (list-installed-shadows): New entry.
9995         (install): Use it.
9996         (remove-installed-shadows): New entry.
9997
9998         * dgnushack.el (dgnushack-default-load-path): New variable.
9999         (dgnushack-find-lisp-shadows): New function.
10000         (dgnushack-remove-lisp-shadows): New function.
10001
10002 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10003
10004         * Makefile.in (install-el-elc): New entry.
10005         (install): Use it so that .el files are necessarily installed.
10006
10007 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10008
10009         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10010
10011 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10012
10013         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10014         function rather than the diff-mode.el package.
10015         (mm-display-external): Use with-current-buffer.
10016         (mm-viewer-completion-map, mm-viewer-completion-map):
10017         Move initialization inside declaration.
10018
10019 2005-09-29  Simon Josefsson  <jas@extundo.com>
10020
10021         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10022         autoload mail-check-payment.
10023         (spam-check-hashcash): Define unconditionally, since hashcash.el
10024         is part of Gnus now.  Ignore errors from payment checking.
10025
10026 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10027
10028         * message.el (message-bold-region, message-unbold-region): Rename
10029         from `bold-region' and `unbold-region'.
10030
10031         * message.el: Remove useless autoloads.
10032
10033 2005-09-28  Simon Josefsson  <jas@extundo.com>
10034
10035         * message.el (message-use-idna): Default to t.
10036         (message-use-idna): Test whether encoding works too.  Doc fix.
10037
10038 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10039
10040         * nntp.el (nntp-warn-about-losing-connection): Remove.
10041
10042 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10043
10044         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10045         customizable.  Change default value.
10046         (mm-uu-diff-groups-regexp): Change default value.
10047         (mm-uu-type-alist): Add doc string.
10048         (mm-uu-configure): Add doc string.  Make it interactive.
10049         (mm-uu-tex-groups-regexp): New variable.
10050         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10051         (mm-uu-type-alist): Add LaTeX documents.
10052         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10053         of "text/verbatim".
10054         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10055
10056         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10057         instead of "text/verbatim".
10058
10059         * message.el (message-mark-inserted-region)
10060         (message-mark-insert-file): Use slrn style marks when called with
10061         prefix argument.
10062
10063 2005-09-27  Simon Josefsson  <jas@extundo.com>
10064
10065         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10066
10067 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10068
10069         * message.el (message-remove-duplicates): New function.
10070         Implementation borrowed from `gnus-remove-duplicates'.
10071         (message-idna-to-ascii-rhs): Also encode idna addresses in
10072         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10073         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10074         only ask about the same idna domain once per header and also tell
10075         in what header to replace the idna domain.
10076
10077         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10078         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10079         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10080         a header is decoded and not just the last one.
10081
10082 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10083
10084         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10085         has been decoded.
10086
10087         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10088         (mm-insert-part): Don't modify text if it has been decoded.
10089
10090         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10091         decoded.
10092
10093         * mm-view.el (mm-inline-text): Don't strip text props unless
10094         decoding enriched or richtext parts.
10095
10096 2005-09-25  Romain Francoise  <romain@orebokech.com>
10097
10098         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10099         * gnus-start.el (gnus-subscribe-interactively):
10100         * gnus-uu.el (gnus-uu-grab-articles):
10101         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10102         space.
10103
10104 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10105
10106         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10107         * mm-view.el (mm-view-pkcs7-decrypt):
10108         * gnus-sum.el (gnus-summary-limit-to-extra)
10109         (gnus-summary-respool-article, gnus-read-move-group-name):
10110         * gnus-score.el (gnus-summary-increase-score):
10111         * gnus-util.el (gnus-completing-read-with-default):
10112         * gnus-art.el (gnus-read-save-file-name)
10113         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10114         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10115         * message.el (message-check-news-header-syntax):
10116         Follow convention for reading with the minibuffer.
10117
10118 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10119
10120         * spam-report.el (spam-report-url-ping-plain):
10121         Use gnus-extended-version as User-Agent.
10122
10123         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10124         default value is nil.
10125
10126         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10127         (mm-uu-verbatim-marks-extract): New function.
10128         (mm-uu-extract): New face.
10129         (mm-uu-copy-to-buffer): Use it.
10130
10131         * spam-report.el (spam-report-gmane-ham): Renamed from
10132         `spam-report-gmane-unspam'.
10133         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10134         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10135
10136         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10137         Autoload.
10138         (spam-report-gmane-unregister-routine): Renamed
10139         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10140
10141 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10142
10143         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10144         (spam-report-gmane-unregister-routine): Add support for gmane
10145         unregistration.
10146
10147         * spam-report.el (spam-report-gmane-unspam)
10148         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10149         (spam-report-gmane): Change to take a single article and do unspam
10150         registration.
10151
10152 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10153
10154         * mm-url.el (mm-url-decode-entities): Fix regexp.
10155
10156 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10157
10158         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10159         default to nil, to be able to use Gnus at all.  If the default
10160         switches to something else, then the function should be fixed not
10161         be exceedingly slow.
10162
10163 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10164
10165         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10166         fail hard.
10167
10168         * spam-report.el: Add better Keywords line.
10169
10170         * spam.el: Add Maintainer and better Keywords line.
10171
10172 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10173
10174         * gnus-art.el (gnus-article-replace-part)
10175         (gnus-mime-replace-part): New functions.
10176         (gnus-mime-action-alist, gnus-mime-button-commands)
10177         (gnus-mime-save-part-and-strip): Added file argument.
10178         (gnus-article-part-wrapper): Added interactive argument.
10179
10180         * gnus-sum.el (gnus-summary-mime-map): Add
10181         `gnus-article-replace-part'.
10182
10183 2005-09-19  Didier Verna  <didier@xemacs.org>
10184
10185         The nnml compaction feature:
10186         * nnml.el (nnml-request-compact-group): New function.
10187         * nnml.el (nnml-request-compact): New function.
10188         * gnus-int.el (gnus-request-compact-group): New function.
10189         * gnus-int.el (gnus-request-compact): New function.
10190         * gnus-group.el (gnus-group-compact-group): New function.
10191         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10192         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10193         * gnus-srvr.el (gnus-server-compact-server): New function.
10194         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10195         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10196
10197 2005-09-18  Deepak Goel  <deego@gnufans.org>
10198
10199         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10200         format spec.
10201
10202 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10203
10204         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10205
10206 2005-09-15  Romain Francoise  <romain@orebokech.com>
10207
10208         * message.el (message-fill-paragraph): Clarify docstring.
10209
10210 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10211
10212         * gnus-art.el (gnus-mime-display-part): Protect against broken
10213         MIME messages.
10214
10215 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10216
10217         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10218         before parsing header.
10219
10220 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10221
10222         * html2text.el (html2text-replace-list): Add new entities.
10223
10224 2005-09-11  Romain Francoise  <romain@orebokech.com>
10225
10226         * message.el (message-alternative-emails): Improve docstring.
10227         (message-setup-1): Call `message-use-alternative-email-as-from'
10228         after `message-setup-hook' to give it precedence over posting
10229         styles, etc.
10230         (message-use-alternative-email-as-from): Add docstring.  Remove
10231         the original From header if present.
10232
10233         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10234         (nnml-save-mail): Use it.
10235
10236         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10237         articles.  Add new argument `silent'.
10238         (gnus-uu-mark-all): Report the total number of marked articles.
10239
10240 2005-09-10  Romain Francoise  <romain@orebokech.com>
10241
10242         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10243         (gnus-uu-mark-series): Likewise.
10244
10245 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10246
10247         * spam-report.el (spam-report-gmane): Fix generation of spam
10248         report URL.
10249
10250 2005-09-10  Simon Josefsson  <jas@extundo.com>
10251
10252         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10253         t, based on discussion on the ding list with Robert Epprecht
10254         <epprecht@solnet.ch>.
10255
10256 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10257
10258         * spam-report.el (spam-report-gmane): Make it work without
10259         X-Report-Spam header.  Gmane now only provides Archived-At.
10260         This is only used if `spam-report-gmane-use-article-number' is nil.
10261         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10262
10263         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10264         make `gnus-summary-sort-by-recipient' work with threading.
10265
10266         * nnweb.el (nnweb-google-wash-article): Print a message if article
10267         is not available.
10268
10269 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10270
10271         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10272         change.  Decode text/* parts content before displaying.
10273
10274 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10275
10276         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10277
10278 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10279
10280         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10281
10282         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10283         url-package-name, url-package-version,
10284         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10285         w3m-display-inline-images, and w3m-minor-mode-map.
10286
10287 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10288
10289         * message.el (message-tab-body-function): Fix mismatched custom type.
10290
10291         * gnus.el (gnus-group-change-level-function): Ditto.
10292
10293         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10294
10295         * gnus-art.el (gnus-signature-limit)
10296         (gnus-article-mime-part-function): Ditto.
10297
10298 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10299
10300         * mml.el (mml-mode): Silence the byte compiler.
10301
10302         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10303         using `(sit-for 0)' before moving the point to the specified part;
10304         skip unbuttonized parts.
10305         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10306         return to the summary window if gnus-auto-select-part is non-nil.
10307
10308 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10309
10310         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10311         variables.
10312         (mml-dnd-attach-file, mml-mode): Use them.
10313
10314         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10315         Make fetching article by MID work again for Google Groups.  Added
10316         FIXME concerning gnus-group-make-web-group.
10317
10318         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10319         Don't depend on Gnus by using mail-extract-address-components if
10320         gnus-extract-address-components is not bound.
10321
10322 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10323
10324         * gnus-art.el (gnus-mime-display-security): Don't display the
10325         signature, but only the signed part.
10326
10327 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10328
10329         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10330
10331         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10332         list, not listp.
10333
10334 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10335
10336         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10337         when encoding.
10338
10339         * mm-bodies.el (mm-decode-content-transfer-encoding):
10340         De-canonicalize CRLF for all text content types, not just
10341         text/plain.
10342
10343 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10344
10345         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10346         valid article; point arrow and cursor at the MIME button.
10347
10348 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10349
10350         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10351         Suggested by Dan Christensen <jdc@uwo.ca>.
10352
10353         * mm-decode.el (mm-save-part): Enable change of prompt.
10354
10355 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10356
10357         * gnus-msg.el (gnus-inews-add-send-actions): Made
10358         `message-post-method' lambda parameter ARG `&optional'.
10359
10360 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10361
10362         * gnus-sum.el (gnus-summary-mime-map): Added
10363         gnus-article-save-part-and-strip, gnus-article-delete-part and
10364         gnus-article-jump-to-part.
10365
10366         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10367         (gnus-article-edit-part): Use it.
10368         (gnus-article-part-wrapper): Added no-handle argument.
10369         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10370         functions.
10371
10372 2005-08-29  Romain Francoise  <romain@orebokech.com>
10373
10374         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10375         docstring.
10376         (gnus-face-from-file): Likewise.
10377
10378 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10379
10380         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10381         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10382         non-nil.
10383         (gnus-auto-select-part): New variable.
10384         (gnus-article-jump-to-part): New function.
10385         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10386         (gnus-mime-delete-part): Allow selecting specified part after
10387         deleting or stripping parts.
10388         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10389         part if argument is bogus.
10390
10391 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10392
10393         * gnus-art.el (w3m-minor-mode-map):
10394         * gnus-spec.el (gnus-newsrc-file-version):
10395         * gnus-util.el (nnmail-active-file-coding-system)
10396         (gnus-original-article-buffer, gnus-user-agent):
10397         * gnus.el (gnus-ham-process-destinations)
10398         (gnus-parameter-ham-marks-alist)
10399         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10400         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10401         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10402         * mm-decode.el (gnus-current-window-configuration):
10403         * mm-extern.el (gnus-article-mime-handles):
10404         * mm-url.el (url-current-object, url-package-name)
10405         (url-package-version):
10406         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10407         (smime-keys, w3m-cid-retrieve-function-alist)
10408         (w3m-current-buffer, w3m-display-inline-images)
10409         (w3m-minor-mode-map):
10410         * mml-smime.el (gnus-extract-address-components):
10411         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10412         (gnus-newsrc-hashtb, message-default-charset)
10413         (message-deletable-headers, message-options)
10414         (message-posting-charset, message-required-mail-headers)
10415         (message-required-news-headers):
10416         * mml1991.el (mc-pgp-always-sign):
10417         * mml2015.el (mc-pgp-always-sign):
10418         * nnheader.el (nnmail-extra-headers):
10419         * rfc1843.el (gnus-decode-encoded-word-function)
10420         (gnus-decode-header-function, gnus-newsgroup-name):
10421         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10422
10423 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10424
10425         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10426         the end of the date treatments.
10427
10428 2005-08-15  Simon Josefsson  <jas@extundo.com>
10429
10430         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10431         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10432         Capello and Romain Francoise.
10433         (pgg-fetch-key-function): Removed, not used?
10434         (pgg-insert-url-with-w3): Require url, to get
10435         url-insert-file-contents regardless of where it is defined.
10436
10437 2005-08-13  Romain Francoise  <romain@orebokech.com>
10438
10439         * message.el (message-cite-original-1): New function.
10440         (message-cite-original): Use it.
10441         (message-cite-original-without-signature): Ditto.
10442
10443 2005-08-08  Romain Francoise  <romain@orebokech.com>
10444
10445         * message.el (message-yank-empty-prefix): New variable.
10446         (message-indent-citation): Use it.
10447         (message-cite-original-without-signature): Respect X-No-Archive.
10448
10449 2005-08-08  Simon Josefsson  <jas@extundo.com>
10450
10451         * pgg.el: Autoload url-insert-file-contents instead of loading
10452         w3/url.
10453         (pgg-insert-url-with-w3): Don't load url here.
10454
10455 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10456
10457         * message.el (message-kill-to-signature): Don't insert newline at
10458         bol.
10459         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10460
10461 2005-08-06  Romain Francoise  <romain@orebokech.com>
10462
10463         * message.el (message-user-fqdn): Fix typo in docstring.
10464
10465 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10466
10467         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10468
10469         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10470
10471 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10472
10473         * mm-bodies.el (mm-encode-body): Use coding system rather than
10474         charset to encode text.
10475
10476         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10477         number of charsets if utf-8 is available (XEmacs).
10478
10479 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10480
10481         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10482         taken from `gnus-button-mid-or-mail-regexp'.
10483         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10484         (gnus-button-alist): Improve regexp for domain part of the MIDs
10485         for news:localpart@domain buttons.
10486         (gnus-button-ctan-directory-regexp): Update.
10487
10488 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10489
10490         * sieve-manage.el (sieve-manage-interactive-login): Use
10491         make-local-variable rather than make-variable-buffer-local.
10492         (sieve-manage-open): Ditto.
10493         (sieve-manage-authenticate): Ditto.
10494
10495         * mml.el (mml-generate-mime-1): Make the content type default to
10496         text/plain if the filename is not specified.
10497
10498 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10499
10500         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10501         instead of insert-buffer.
10502
10503         * message.el (message-yank-original): Ditto; set the mark at the
10504         end of the yanked message.
10505
10506 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10507
10508         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10509         lines to scroll rather than to stop it.
10510
10511         * mml.el (mml-generate-default-type): Add doc string.
10512         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10513         default to application/octet-stream when determining the content
10514         type if it is not specified for the part or the mml contents; add
10515         a comment about mml-generate-default-type.
10516
10517 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10518
10519         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10520         make it default to application/octet-stream when determining the
10521         content type if it is not specified for the external contents.
10522
10523 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10524
10525         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10526         segmented parameter but also other parameters might be there.
10527
10528 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10529
10530         * mm-decode.el (mm-display-external): Delete temp file, directory
10531         and buffer immediately if the external process is exited.
10532
10533 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10534
10535         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10536         fewer lines than that of scroll-margin.
10537         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10538
10539 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10540
10541         * gnus-art.el (gnus-article-next-page): Revert.
10542         (gnus-article-beginning-of-window): New macro.
10543         (gnus-article-next-page-1): Use it.
10544         (gnus-article-prev-page): Ditto.
10545         (gnus-article-edit-part): Use insert-buffer-substring instead of
10546         insert-buffer.
10547         (gnus-article-edit-exit): Ditto.
10548
10549         * gnus-util.el (gnus-beginning-of-window): Remove.
10550         (gnus-end-of-window): Remove.
10551
10552         * lpath.el: Don't bind header-line-format and scroll-margin.
10553
10554 2005-07-25  Simon Josefsson  <jas@extundo.com>
10555
10556         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10557         to have the url package without w3.  Reported by Daiki Ueno
10558         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10559
10560 2005-07-20  Didier Verna  <didier@xemacs.org>
10561
10562         * gnus-diary.el: Remove the description comment (nndiary is now
10563         properly documented in the Gnus manual).
10564         Fix the spelling of "Back End".
10565         * nndiary.el: Ditto.
10566         Fix the copyright notice.
10567
10568 2005-07-18  Romain Francoise  <romain@orebokech.com>
10569
10570         * gnus-sum.el (gnus-summary-to-prefix)
10571         (gnus-summary-newsgroup-prefix): New variables.
10572         (gnus-summary-from-or-to-or-newsgroups): Use them.
10573
10574 2005-07-17  Romain Francoise  <romain@orebokech.com>
10575
10576         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10577         space as it's generally not especially interesting to the user.
10578
10579 2005-07-16  Romain Francoise  <romain@orebokech.com>
10580
10581         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10582         nil to avoid prompting and file modification if one of the
10583         messages at the top of the nnfolder file contains a copyright
10584         notice.
10585         Update copyright notice.
10586
10587         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10588         instead of `current-time-string' as the latter creates a time
10589         string that is not RFC 2822 compliant (it lacks the zone).
10590         Update copyright notice.
10591
10592 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10593
10594         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10595         for text/rtf.  Display default in prompt.  Pass default for M-n.
10596
10597         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10598
10599 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10600
10601         * gnus-msg.el (gnus-button-mailto): Remove
10602         save-selected-window-window hackery because it relies on
10603         save-selected-window internals.
10604
10605 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10606
10607         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10608         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10609         (gnus-article-prev-page): Ditto.
10610
10611         * gnus-util.el (gnus-beginning-of-window): New function.
10612         (gnus-end-of-window): New function.
10613
10614         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10615
10616 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10617
10618         * gnus-score.el (gnus-score-edit-all-score): Set
10619         gnus-score-edit-exit-function to gnus-score-edit-done and call
10620         gnus-message.
10621
10622 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10623
10624         * gnus-msg.el (gnus-button-mailto): Remove
10625         save-selected-window-window hackery because it relies on
10626         save-selected-window internals.
10627
10628 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10629
10630         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10631         add-minor-mode.
10632         (gnus-binary-mode): Ditto.
10633
10634         * gnus-topic.el (gnus-topic-mode): Ditto.
10635
10636 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10637
10638         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10639         (gnus-article-prev-page): Take scroll-margin into consideration.
10640
10641 2005-07-04  Lute Kamstra  <lute@gnu.org>
10642
10643         Update FSF's address in GPL notices.
10644
10645 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10646
10647         * gnus.el (gnus-exit):
10648         * gnus-group.el (gnus-group-icons):
10649         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10650
10651         * gnus-nocem.el (gnus-nocem):
10652         * message.el (message-various, message-buffers, message-sending)
10653         (message-interface, message-forwarding, message-insertion)
10654         (message-headers, message-news, message-mail):
10655         * pgg-gpg.el (pgg-gpg):
10656         * pgg-parse.el (pgg-parse):
10657         * pgg-pgp.el (pgg-pgp):
10658         * pgg-pgp5.el (pgg-pgp5):
10659         * pop3.el (pop3): Finish `defgroup' description with period.
10660
10661 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10662
10663         * gnus-art.el (article-display-face): Improve the efficiency.
10664         (article-display-x-face): Ditto; remove grey x-face stuff.
10665
10666 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10667
10668         * gnus-art.el (article-display-face): Correct the position in
10669         which Faces are inserted.
10670
10671 2005-06-29  Didier Verna  <didier@xemacs.org>
10672
10673         * gnus-art.el (article-display-face): Display faces in correct
10674         order.
10675
10676 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10677
10678         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10679         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10680         (gnus-nocem-check-article): Fetch the Type header.
10681         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10682         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10683         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10684         make sure gnus-nocem-hashtb is initialized.
10685         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10686         (gnus-nocem-unwanted-article-p): Ditto.
10687
10688         * pgg.el (pgg-verify): Return the verification result.
10689
10690 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10691
10692         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10693         is ascii.
10694
10695 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10696
10697         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10698         `show-nonbreak-escape'.
10699
10700 2005-06-23  Lute Kamstra  <lute@gnu.org>
10701
10702         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10703
10704         * dig.el (dig-mode):
10705         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10706
10707 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10708
10709         * nnimap.el (nnimap-split-download-body): Fix spellings.
10710
10711 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10712
10713         * gnus-art.el (gnus-article-encrypt-body):
10714         * gnus-cus.el (gnus-score-customize):
10715         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10716         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10717
10718 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10719
10720         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10721         header by looking for magic "MII" at the beginnig.
10722
10723 2005-06-16  Miles Bader  <miles@gnu.org>
10724
10725         * gnus-xmas.el (gnus-xmas-group-startup-message):
10726         Use renamed gnus-splash face.
10727
10728         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10729         (assistant-field-face): New backward-compatibility alias for renamed
10730         face.
10731         (assistant-render-text): Use renamed assistant-field face.
10732
10733         * spam.el (spam): Remove "-face" suffix from face name.
10734         (spam-face): New backward-compatibility alias for renamed face.
10735         (spam-face, spam-initialize): Use renamed spam face.
10736
10737         * message.el (message-header-to, message-header-cc)
10738         (message-header-subject, message-header-newsgroups)
10739         (message-header-other, message-header-name)
10740         (message-header-xheader, message-separator, message-cited-text)
10741         (message-mml): Remove "-face" suffix from face names.
10742         (message-header-to-face, message-header-cc-face)
10743         (message-header-subject-face, message-header-newsgroups-face)
10744         (message-header-other-face, message-header-name-face)
10745         (message-header-xheader-face, message-separator-face)
10746         (message-cited-text-face, message-mml-face):
10747         New backward-compatibility aliases for renamed faces.
10748         (message-font-lock-keywords): Use renamed message faces.
10749
10750         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10751         (sieve-test-commands, sieve-tagged-arguments):
10752         Remove "-face" suffix from face names.
10753         (sieve-control-commands-face, sieve-action-commands-face)
10754         (sieve-test-commands-face, sieve-tagged-arguments-face):
10755         New backward-compatibility aliases for renamed faces.
10756         (sieve-control-commands-face, sieve-action-commands-face)
10757         (sieve-test-commands-face, sieve-tagged-arguments-face):
10758         Use renamed sieve faces.
10759
10760         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10761         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10762         (gnus-group-news-3-empty, gnus-group-news-4)
10763         (gnus-group-news-4-empty, gnus-group-news-5)
10764         (gnus-group-news-5-empty, gnus-group-news-6)
10765         (gnus-group-news-6-empty, gnus-group-news-low)
10766         (gnus-group-news-low-empty, gnus-group-mail-1)
10767         (gnus-group-mail-1-empty, gnus-group-mail-2)
10768         (gnus-group-mail-2-empty, gnus-group-mail-3)
10769         (gnus-group-mail-3-empty, gnus-group-mail-low)
10770         (gnus-group-mail-low-empty, gnus-summary-selected)
10771         (gnus-summary-cancelled, gnus-summary-high-ticked)
10772         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10773         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10774         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10775         (gnus-summary-low-undownloaded)
10776         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10777         (gnus-summary-low-unread, gnus-summary-normal-unread)
10778         (gnus-summary-high-read, gnus-summary-low-read)
10779         (gnus-summary-normal-read, gnus-splash):
10780         Remove "-face" suffix from face names.
10781         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10782         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10783         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10784         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10785         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10786         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10787         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10788         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10789         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10790         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10791         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10792         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10793         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10794         (gnus-summary-normal-ticked-face)
10795         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10796         (gnus-summary-normal-ancient-face)
10797         (gnus-summary-high-undownloaded-face)
10798         (gnus-summary-low-undownloaded-face)
10799         (gnus-summary-normal-undownloaded-face)
10800         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10801         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10802         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10803         (gnus-splash-face):
10804         New backward-compatibility aliases for renamed faces.
10805         (gnus-group-startup-message): Use renamed gnus faces.
10806
10807         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10808         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10809         (gnus-server-agent): Remove "-face" suffix from face names.
10810         (gnus-server-agent-face, gnus-server-opened-face)
10811         (gnus-server-closed-face, gnus-server-denied-face)
10812         (gnus-server-offline-face):
10813         New backward-compatibility aliases for renamed faces.
10814         (gnus-server-agent-face, gnus-server-opened-face)
10815         (gnus-server-closed-face, gnus-server-denied-face)
10816         (gnus-server-offline-face): Use renamed gnus faces.
10817
10818         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10819         Remove "-face" suffix from face names.
10820         (gnus-picon-xbm-face, gnus-picon-face):
10821         New backward-compatibility aliases for renamed faces.
10822
10823         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10824         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10825         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10826         (gnus-cite-11): Remove "-face" suffix from face names.
10827         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10828         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10829         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10830         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10831         New backward-compatibility aliases for renamed faces.
10832         (gnus-cite-attribution-face, gnus-cite-face-list)
10833         (gnus-article-boring-faces): Use renamed gnus faces.
10834
10835         * gnus-art.el (gnus-signature, gnus-header-from)
10836         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10837         (gnus-header-content): Remove "-face" suffix from face names.
10838         (gnus-signature-face, gnus-header-from-face)
10839         (gnus-header-subject-face, gnus-header-newsgroups-face)
10840         (gnus-header-name-face, gnus-header-content-face):
10841         New backward-compatibility aliases for renamed faces.
10842         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10843
10844         * gnus-sum.el (gnus-summary-selected-face)
10845         (gnus-summary-highlight): Use renamed gnus faces.
10846         * gnus-group.el (gnus-group-highlight): Likewise.
10847
10848 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10849
10850         * gnus-sieve.el (gnus-sieve-article-add-rule):
10851         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10852         * spam-stat.el (spam-stat-buffer-change-to-spam)
10853         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10854
10855         * message.el (message-is-yours-p):
10856         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10857
10858 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10859
10860         * mm-view.el (mm-inline-text): Withdraw the last change.
10861
10862 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10863
10864         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10865         executing enriched-decode.
10866
10867 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10868
10869         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
10870         charset of tar files.
10871
10872 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
10873
10874         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
10875
10876 2005-06-04  Lute Kamstra  <lute@gnu.org>
10877
10878         * nnfolder.el (nnfolder-read-folder): Make sure that undo
10879         information is never recorded.
10880
10881 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10882
10883         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
10884
10885 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10886
10887         * pop3.el (pop3-apop): Run md5 in the binary mode.
10888
10889         * starttls.el (starttls-set-process-query-on-exit-flag):
10890         Use eval-and-compile.
10891
10892 2005-05-31  Simon Josefsson  <jas@extundo.com>
10893
10894         * smime.el (smime-replace-in-string): Define.
10895         (smime-cert-by-ldap-1): Use it.
10896
10897 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10898
10899         * gnus-art.el (article-display-x-face): Replace
10900         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10901
10902         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
10903         set-process-query-on-exit-flag or process-kill-without-query.
10904
10905         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
10906         loop instead of replace-regexp.
10907
10908         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
10909         instead of process-kill-without-query if it is available.
10910
10911         * lpath.el: Fbind ldap-search-entries.
10912
10913         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
10914         instead of find-file-hooks if it is available.
10915
10916         * mml1991.el: Bind pgg-default-user-id when compiling.
10917
10918         * mml2015.el: Bind pgg-default-user-id when compiling.
10919
10920         * nndraft.el (nndraft-request-associate-buffer):
10921         Use write-contents-functions instead of write-contents-hooks if it is
10922         available.
10923
10924         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
10925         instead of find-file-hooks if it is available.
10926
10927         * nntp.el (nntp-open-connection): Replace
10928         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10929         (nntp-open-ssl-stream): Ditto.
10930         (nntp-open-tls-stream): Ditto.
10931
10932         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
10933         set-process-query-on-exit-flag or process-kill-without-query.
10934         (starttls-open-stream-gnutls): Use it instead of
10935         process-kill-without-query.
10936         (starttls-open-stream): Ditto.
10937
10938 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
10939
10940         * smime.el (smime-cert-by-ldap-1): Don't use
10941         replace-regexp-in-string.
10942
10943 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
10944
10945         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
10946
10947         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
10948         in PEM format.  Adjust to the XEmacs compability.
10949
10950 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
10951
10952         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
10953         by `string-to-number'.
10954         * gnus-agent.el (gnus-agent-regenerate-group)
10955         (gnus-agent-fetch-articles): Ditto.
10956         * gnus-art.el (gnus-button-fetch-group): Ditto.
10957         * gnus-cache.el (gnus-cache-generate-active)
10958         (gnus-cache-articles-in-group): Ditto.
10959         * gnus-group.el (gnus-group-set-current-level)
10960         (gnus-group-insert-group-line): Ditto.
10961         * gnus-score.el (gnus-score-set-expunge-below)
10962         (gnus-score-set-mark-below, gnus-summary-score-effect)
10963         (gnus-summary-score-entry): Ditto.
10964         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
10965         (gnus-soup-pack): Ditto.
10966         * gnus-spec.el (gnus-xmas-format): Ditto.
10967         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
10968         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
10969         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
10970         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
10971         * nndb.el (nndb-get-remote-expire-response): Ditto.
10972         * nndiary.el (nndiary-parse-schedule-value)
10973         (nndiary-string-to-number, nndiary-request-replace-article)
10974         (nndiary-request-article): Ditto.
10975         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
10976         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
10977         * nneething.el (nneething-make-head): Ditto.
10978         * nnfolder.el (nnfolder-request-article)
10979         (nnfolder-retrieve-headers): Ditto.
10980         * nnheader.el (nnheader-file-to-number): Ditto.
10981         * nnkiboze.el (nnkiboze-request-article): Ditto.
10982         * nnmail.el (nnmail-process-unix-mail-format)
10983         (nnmail-process-babyl-mail-format): Ditto.
10984         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
10985         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
10986         (nnmh-request-create-group, nnmh-request-list-1)
10987         (nnmh-request-group, nnmh-request-article): Ditto.
10988         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
10989         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
10990         * nnsoup.el (nnsoup-make-active): Ditto.
10991         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
10992         * nntp.el (nntp-find-group-and-number)
10993         (nntp-retrieve-headers-with-xover): Ditto.
10994         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
10995         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
10996         (pgg-format-key-identifier): Ditto.
10997         * pop3.el (pop3-last, pop3-stat): Ditto.
10998         * qp.el (quoted-printable-decode-region): Ditto.
10999
11000         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11001         of concat.
11002
11003 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11004
11005         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11006
11007         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11008
11009         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11010
11011         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11012
11013         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11014
11015         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11016
11017         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11018         (gnus-carpal-mode): Ditto.
11019
11020         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11021         (gnus-browse-mode): Ditto.
11022
11023         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11024
11025         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11026
11027 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11028
11029         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11030
11031 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11032
11033         * gnus-util.el (gnus-run-mode-hooks): New function.
11034
11035         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11036
11037         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11038         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11039
11040 2005-05-27  Lute Kamstra  <lute@gnu.org>
11041
11042         * dns-mode.el (dns-mode): Specify customization group.
11043
11044 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11045
11046         * gnus-agent.el (gnus-agent-make-mode-line-string):
11047         Use mode-line-highlight as mouse-face.
11048
11049 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11050
11051         * canlock.el (canlock): Change the parent group to news.
11052
11053         * deuglify.el (gnus-outlook-deuglify): Add :group.
11054
11055         * dig.el (dig): Add :group.
11056
11057         * dns-mode.el (dns-mode): Add :group.
11058
11059         * encrypt.el (encrypt): Add :group.
11060
11061         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11062         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11063         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11064         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11065         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11066
11067         * gnus-diary.el (gnus-diary): Add :group.
11068
11069         * gnus.el (gnus-group-news-1-face): Add :group.
11070         (gnus-group-news-1-empty-face): Ditto.
11071         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11072         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11073         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11074         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11075         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11076         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11077         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11078         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11079         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11080         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11081         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11082         (gnus-summary-high-ticked-face): Ditto.
11083         (gnus-summary-low-ticked-face): Ditto.
11084         (gnus-summary-normal-ticked-face): Ditto.
11085         (gnus-summary-high-ancient-face): Ditto.
11086         (gnus-summary-low-ancient-face): Ditto.
11087         (gnus-summary-normal-ancient-face): Ditto.
11088         (gnus-summary-high-undownloaded-face): Ditto.
11089         (gnus-summary-low-undownloaded-face): Ditto.
11090         (gnus-summary-normal-undownloaded-face): Ditto.
11091         (gnus-summary-high-unread-face): Ditto.
11092         (gnus-summary-low-unread-face): Ditto.
11093         (gnus-summary-normal-unread-face): Ditto.
11094         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11095         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11096
11097         * hashcash.el (hashcash): New custom group.
11098         (hashcash-default-payment): Add :group.
11099         (hashcash-payment-alist): Ditto.
11100         (hashcash-default-accept-payment): Ditto.
11101         (hashcash-accept-resources): Ditto.
11102         (hashcash-path): Ditto.
11103         (hashcash-extra-generate-parameters): Ditto.
11104         (hashcash-double-spend-database): Ditto.
11105         (hashcash-in-news): Ditto.
11106
11107         * message.el (message-minibuffer-local-map): Add :group.
11108
11109         * netrc.el (netrc): Add :group.
11110
11111         * sieve-manage.el (sieve-manage-log): Add :group.
11112         (sieve-manage-default-user): Diito.
11113         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11114         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11115         (sieve-manage-authenticators): Ditto.
11116         (sieve-manage-authenticator-alist): Ditto.
11117         (sieve-manage-default-port): Ditto.
11118
11119         * sieve-mode.el (sieve-control-commands-face): Add :group.
11120         (sieve-action-commands-face): Ditto.
11121         (sieve-test-commands-face): Ditto.
11122         (sieve-tagged-arguments-face): Ditto.
11123
11124         * smime.el (smime): Add :group.
11125
11126         * spam-report.el (spam-report): Add :group.
11127
11128         * spam.el (spam, spam-face): Add :group.
11129
11130 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11131
11132         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11133         return \n.\n.\n at the end of articles.  Protect against that.
11134         (nntp-with-open-group): Allow debugging.
11135
11136         * nnheader.el (mail-header-set-extra): Make into a function
11137         because I just could't understand how to quote the list properly.
11138
11139         * dns.el (query-dns-cached): New function.
11140
11141 2005-05-26  Lute Kamstra  <lute@gnu.org>
11142
11143         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11144
11145 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11146
11147         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11148
11149         * gnus-art.el: Don't autoload mail-extract-address-components.
11150
11151         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11152         eval-and-compile to evaluate it.
11153
11154         * hashcash.el: Don't autoload executable-find.
11155
11156         * nndb.el: Don't declare the nndb back end two or more times; don't
11157         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11158
11159         * nntp.el: Autoload format-spec instead of format; use
11160         eval-and-compile to evaluate autoload forms.
11161
11162 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11163
11164         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11165
11166 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11167
11168         * gnus.el (gnus-version-number): Bump version.
11169
11170 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11171
11172         * gnus.el: No Gnus v0.3 is released.
11173
11174 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11175
11176         * lpath.el (featurep): Bind show-nonbreak-escape.
11177
11178 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11179
11180         * gnus-art.el (gnus-article-edit-part): Disable undo.
11181
11182 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11183
11184         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11185         gnus-article-date-lapsed-new-header is t if date timer is active;
11186         skip headers in which the original date value is empty.
11187         (gnus-article-save-original-date): Redefine it as a macro.
11188         (gnus-display-mime): Use it.
11189
11190 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11191
11192         * gnus-art.el (article-date-ut): Support converting date in
11193         forwarded parts as well.
11194         (gnus-article-save-original-date): New function.
11195         (gnus-display-mime): Use it.
11196
11197 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11198
11199         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11200         enclosure element of <item>.
11201
11202 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11203
11204         * message.el (message-kill-buffer-query): Renamed from
11205         `message-kill-buffer-query-if-modified'.  Added :version.
11206
11207 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11208
11209         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11210         window layout.
11211
11212 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11213
11214         * mml.el: Autoload dnd when compiling.
11215
11216 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11217
11218         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11219         x-dnd-*.
11220
11221 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11222
11223         * qp.el (quoted-printable-encode-region): Save excursion.
11224
11225 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11226
11227         * message.el (message-kill-buffer-query-if-modified): Add new variable
11228         so the user can kill a modified message buffer quickly.
11229         (message-kill-buffer): Use it.
11230
11231 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11232
11233         * lpath.el: Fbind display-time-event-handler; don't fbind
11234         string-to-multibyte.
11235
11236         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11237
11238 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11239
11240         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11241         contained in text because xml.el decodes entities) with LFs.
11242
11243 2005-04-11  Lute Kamstra  <lute@gnu.org>
11244
11245         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11246         differently.
11247
11248 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11249
11250         * mm-util.el (mm-detect-coding-region): Typo.
11251
11252 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11253
11254         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11255
11256 2005-04-06  Deepak Goel  <deego@gnufans.org>
11257
11258         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11259         user-function allow user modifications of the scores.
11260         (spam-stat-score-buffer-user): New function, to allow
11261         user-computed modifications to the score.
11262         (spam-stat-score-buffer-user-functions): List of additional
11263         scoring functions.
11264         (spam-stat-error-holder): Global temporary error holder.
11265         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11266         variable.
11267
11268 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11269
11270         * gnus-registry.el (gnus-registry-clean-empty-function)
11271         (gnus-registry-trim, gnus-registry-fetch-groups)
11272         (gnus-registry-delete-group): Groups that match
11273         `gnus-registry-ignored-groups' are removed from the registry
11274         entries, not just ignored for splitting.  This helps clean up the
11275         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11276         to get all the groups a message ID is in.
11277
11278         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11279         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11280         (spam-stat-score-buffer-user-functions): Add :number custom type.
11281
11282 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11283
11284         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11285         argument in XEmacs.
11286
11287         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11288         (nnrss-request-group): Decode group name first.
11289         (nnrss-request-article): Make a text/plain article if mml-to-mime
11290         failed.
11291         (nnrss-get-encoding): Return a compatible encoding according to
11292         nnrss-compatible-encoding-alist.
11293         (nnrss-find-el): Use consp instead of listp.
11294         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11295
11296 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11297
11298         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11299         which Emacs 20 doesn't support.
11300         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11301
11302 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11303
11304         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11305         silence the byte compiler inside the defun.
11306
11307         * gnus-demon.el (parse-time-string): Add autoload.
11308
11309         * gnus-delay.el (parse-time-string): Add autoload.
11310
11311         * gnus-art.el (parse-time-string): Add autoload.
11312
11313         * nnultimate.el (parse-time): Require for `parse-time-string'.
11314
11315 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11316
11317         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11318
11319         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11320
11321         * smime.el (smime-ldap-host-list): Add :version.
11322
11323 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11324
11325         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11326         pass it to `gnus-browse-read-group'.
11327         (gnus-browse-read-group): Add NUMBER argument and pass it to
11328         `gnus-group-read-ephemeral-group'.
11329
11330         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11331         argument and pass it to `gnus-group-read-group'.
11332
11333 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11334
11335         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11336         mm-xemacs-find-mime-charset-1 if we have the mule feature
11337         available at runtime.
11338
11339 2005-03-25  Werner Lemberg  <wl@gnu.org>
11340
11341         * nnmaildir.el: Replace `illegal' with `invalid'.
11342
11343 2005-03-23  Lute Kamstra  <lute@gnu.org>
11344
11345         * time-date.el: Add comment on time value formats.
11346         Don't require parse-time.
11347         (with-decoded-time-value): New macro.
11348         (encode-time-value): New function.
11349         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11350         (days-to-time): Return a valid time value when arg is huge.
11351         (time-since): Use time-subtract.
11352         (time-to-number-of-days): Use time-to-seconds.
11353
11354 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11355
11356         * gnus-start.el (gnus-display-time-event-handler):
11357         Check display-time-timer at runtime rather than only at load time
11358         in case display-time-mode is turned off in the mean time.
11359
11360 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11361
11362         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11363         used.
11364
11365         * nneething.el (nneething-map-file-directory): Derive from
11366         `gnus-directory'.
11367
11368         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11369         the To/Cc button.
11370
11371 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11372
11373         * nnmaildir.el (nnmaildir-request-accept-article):
11374         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11375
11376 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11377
11378         * gnus-async.el: Require timer-funcs at compile time when in
11379         XEmacs for `run-with-idle-timer'.
11380
11381 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11382
11383         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11384         autoloaded function.
11385
11386 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11387
11388         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11389
11390 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11391
11392         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11393
11394 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11395
11396         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11397         gnus-expert-user to default.
11398
11399 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11400
11401         * nnimap.el (nnimap-open-server): Ditto.
11402
11403         * imap.el (imap-authenticate): Fix typo.
11404
11405 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11406
11407         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11408         buffer (since IMAP server might return FETCH response out of
11409         order, and the nntp buffer must be sorted).
11410
11411 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11412
11413         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11414         comparison on string.
11415
11416         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11417         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11418         (gnus-agent-summary-fetch-series): Modified to protect against
11419         gnus-agent-summary-fetch-group clearing processable flags.
11420         (gnus-agent-synchronize-group-flags): Update live group buffer as
11421         synchronization may occur due to the user toggle the plugged
11422         status.
11423         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11424         successfully downloaded.
11425         (gnus-agent-expire-group-1): Avoid using markers when the overview
11426         is in ascending order; greatly improves performance.
11427         (gnus-agent-regenerate-group): Use
11428         gnus-agent-synchronize-group-flags to reset read status in both
11429         gnus and server.
11430         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11431
11432 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11433
11434         * message.el: Don't autoload former message-utils variables.
11435         (message-strip-subject-trailing-was): Change doc string.
11436
11437         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11438         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11439         (nnweb-google-search): Add "hl=en" here.
11440         (nnweb-google-parse-1, nnweb-google-create-mapping):
11441         Don't hardcode URL.
11442
11443 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11444
11445         * message.el (message-get-reply-headers, message-followup):
11446         Mention related variables `message-use-followup-to' and
11447         `message-use-mail-followup-to', in the information buffer.
11448
11449         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11450         of broken groups(-beta).google.com.
11451
11452 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11453
11454         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11455         parameter to invoked gnus-request-move-article; remove the
11456         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11457         all at once instead of once per article.
11458         (gnus-summary-remove-process-mark): Accept a list of articles as
11459         well as a single article for processing.
11460
11461         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11462         parameter.
11463
11464         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11465
11466         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11467
11468         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11469         parameter.
11470
11471         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11472         parameter.
11473
11474         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11475         parameter and remove the gnus-sum-hint-move-is-internal variable.
11476
11477         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11478         parameter.
11479
11480         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11481         parameter.
11482
11483         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11484         parameter.
11485
11486         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11487
11488         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11489         parameter.
11490
11491         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11492         parameter.
11493
11494 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11495
11496         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11497         a more conservative way.
11498
11499 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11500
11501         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11502         buffer, so it moves the window's cursor.
11503
11504 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11505
11506         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11507         `mm-dissect-multipart' and receive the from field as an (optional)
11508         argument from `mm-dissect-multipart'.
11509         (mm-dissect-multipart): Receive the from field as an argument and
11510         pass it on when we call `mm-dissect-buffer' on MIME parts.
11511         Fixes verification/decryption of signed/encrypted MIME parts.
11512
11513 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11514
11515         * gnus-sum.el (gnus-summary-move-article): Set
11516         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11517         whatever it calls (right now, only nnimap-request-move article
11518         respects it).
11519
11520         * nnimap.el (nnimap-request-move-article): When
11521         gnus-sum-hint-move-is-internal is set, don't do the extra
11522         nnimap-request-article.
11523
11524 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11525
11526         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11527
11528         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11529         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11530
11531         * gnus-sum.el (gnus-summary-caesar-message):
11532         Apply `gnus-treat-article' after rotation.
11533
11534         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11535         doc string.
11536
11537 2005-02-22  Simon Josefsson  <jas@extundo.com>
11538
11539         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11540         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11541         <arne@arnested.dk>.
11542         (encrypt): Add password-cache and password-cache-expiry as group
11543         members.
11544
11545 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11546
11547         * smime.el (smime-ldap-host-list): Doc fix.
11548         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11549         cache) password.
11550         (smime-sign-region): Use it.
11551         (smime-decrypt-region): Use it.
11552         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11553         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11554         fails.
11555         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11556         certificate from DER to PEM format rather than calling openssl.
11557
11558         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11559
11560         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11561         for signing/encryption.
11562
11563         * mml.el (mml-parse-1): Use them.
11564
11565 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11566
11567         * nnrss.el (nnrss-verbose): Removed.
11568         (nnrss-request-group): Use `nnheader-message' instead.
11569
11570 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11571
11572         * nnrss.el (nnrss-verbose): New variable.
11573         (nnrss-request-group): Make it say nnrss is requesting a group.
11574
11575 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11576
11577         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11578         Handle news URL with given port correctly.
11579
11580 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11581
11582         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11583         containing special characters.
11584
11585         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11586
11587         * mml.el (mime-to-mml): Ditto.
11588
11589         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11590         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11591         (rfc2047-decode-region): Quote decoded words containing special
11592         characters when rfc2047-quote-decoded-words-containing-tspecials
11593         is non-nil.
11594
11595 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11596
11597         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11598
11599         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11600
11601 2005-02-15  Simon Josefsson  <jas@extundo.com>
11602
11603         * nnimap.el (nnimap-debug): Doc fix.
11604
11605         * imap.el (imap-debug): Doc fix.
11606
11607 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11608
11609         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11610
11611 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11612
11613         * gnus.el (spam-contents): Improve docs for spam-contents
11614         parameter in its variable incarnation.
11615
11616 2005-02-14  Simon Josefsson  <jas@extundo.com>
11617
11618         * smime-ldap.el: Use require instead of load-library for ldap.
11619         (smime-ldap-search): Indent.
11620         (smime-ldap-search-internal): Shorten line.
11621
11622         * smime.el (smime-cert-by-dns): Add doc-string.
11623         (smime-cert-by-ldap-1): Indent.
11624
11625         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11626         mml-smime-get-dns-ldap.
11627         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11628
11629 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11630
11631         * smime.el: Require smime-ldap.
11632         (smime-ldap-host-list): New variable.
11633         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11634
11635         * mml-smime.el (mml-smime-encrypt-query): New function.
11636         (mml-smime-encrypt-query): Use it.
11637
11638         * smime-ldap.el: New file.
11639
11640 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11641
11642         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11643
11644 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11645
11646         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11647         argument in doc string.  Make query for type more clear.
11648
11649 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11650
11651         * gnus.el (gnus-group-startup-message): Search for gnus images in
11652         etc/images/gnus.
11653         * mm-util.el (mm-image-load-path): Likewise.
11654         * smiley.el (smiley-data-directory): Search for smilies in
11655         etc/images/smilies.
11656
11657 2005-02-09  Kim F. Storm  <storm@cua.dk>
11658
11659         Change Emacs release version from 21.4 to 22.1 throughout.
11660         Change Emacs development version from 21.3.50 to 22.0.50.
11661
11662 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11663
11664         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11665
11666         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11667         non-Mule XEmacs as well.
11668         (mm-decompress-buffer): Signal an error intentionally if it does
11669         not decompress compressed data because auto-compression-mode is
11670         disabled.
11671
11672 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11673
11674         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11675         an ID in the registry even if it has no groups.
11676
11677 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11678
11679         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11680         merge it into mm-decompress-buffer.
11681         (gnus-mime-copy-part): Use the MIME part charset, the value which
11682         a user specified or gnus-newsgroup-charset for decoding, like
11683         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11684         save-buffer what was used.  Suggested by Kevin Ryde
11685         <user42@zip.com.au>.
11686         (gnus-mime-inline-part): Allow the name parameter as well as the
11687         filename parameter; force decompressing of compressed data; always
11688         display contents being not decoded as unibyte.
11689
11690         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11691         as well as the filename parameter.
11692
11693         * mm-util.el (mm-decompress-buffer): Merge
11694         gnus-mime-jka-compr-maybe-uncompress.
11695         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11696         of compressed data.
11697
11698 2005-02-08  Simon Josefsson  <jas@extundo.com>
11699
11700         * imap.el (imap-log): Doc fix.
11701
11702 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11703
11704         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11705         the coding cookies; decompress compressed parts.
11706
11707         * mml.el (mml-generate-mime-1): Add the charset parameter according
11708         to the value which a user specified manually or the coding cookie.
11709
11710         * mm-util.el (mm-string-to-multibyte): New function.
11711         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11712         (mm-coding-system-to-mime-charset): New function.
11713         (mm-decompress-buffer): New function.
11714         (mm-find-buffer-file-coding-system): New function.
11715
11716         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11717         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11718         parts.
11719
11720 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11721
11722         * mm-view.el (mm-display-inline-fontify): Decode a part according
11723         to the charset parameter.
11724
11725 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11726
11727         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11728         prefix arg is neither nil nor a number, as info specifies.
11729
11730 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11731
11732         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11733         timestamps.
11734
11735 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11736
11737         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11738         groups error checking and notify user.
11739
11740 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11741
11742         * message.el (message-send-mail-function): Check existence of
11743         sendmail-program first before using default value
11744         `message-send-mail-with-sendmail'.  Otherwise use more generic
11745         `smtpmail-send-it'.
11746
11747 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11748
11749         * nntp.el (nntp-request-update-info): Always return nil.
11750
11751 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11752
11753         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11754
11755 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11756
11757         * message.el (message-beginning-of-line): Change the behavior when
11758         invoked between BOL and : so that it first moves backward.
11759
11760 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11761
11762         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11763         article buffer when editing of the article is discarded.
11764         (gnus-article-prepare): Revert.
11765
11766 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11767
11768         * gnus-art.el (gnus-article-prepare):
11769         Remove message-strip-forbidden-properties from the local hook.
11770
11771 2005-01-27  Simon Josefsson  <jas@extundo.com>
11772
11773         * password.el (password-cache-add): Only start one timer per key.
11774         Reported by Derek Atkins <warlord@MIT.EDU>.
11775
11776 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11777
11778         * run-at-time.el: Removed.  It is no longer needed as
11779         timer-funcs.el in the xemacs-base package has a working version of
11780         `run-at-time'.
11781
11782         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11783
11784         * password.el: Require timer-funcs instead of run-at-time in
11785         XEmacs.
11786         Remove `password-run-at-time' macro.
11787         (password-cache-add): Use `run-at-time' instead of
11788         `password-run-at-time'.
11789
11790         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11791         Remove `nnheader-cancel-function-timers' alias,
11792         `cancel-function-timers' exists in XEmacs in timer-funcs.
11793
11794         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11795         for `run-with-idle-timer'.
11796
11797         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11798         for `run-at-time'.
11799
11800         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11801         for `with-timeout'.
11802
11803         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11804         the same as for XEmacs 21.4.
11805         No need to ignore `run-with-idle-timer', this function exists in
11806         XEmacs now in timer-funcs.el in the xemacs-base package.
11807         (dgnushack-compile): No need to delete
11808         run-at-time.el from the list of files to compile because it
11809         doesn't exist anymore.
11810
11811 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11812
11813         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11814         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11815
11816 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11817
11818         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11819         sensitively.
11820
11821 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11822
11823         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11824
11825 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11826
11827         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11828         which will be inserted according to the multibyteness of a buffer
11829         rather than the type of contents.  Suggested by ARISAWA Akihiro
11830         <ari@mbf.ocn.ne.jp>.
11831
11832         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11833         of string which old xml.el may return rather than a string.
11834
11835 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11836
11837         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11838
11839 2005-01-16  Simon Josefsson  <jas@extundo.com>
11840
11841         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11842         idn/idna.el isn't available.
11843         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11844         <michael@waxrat.com>.
11845
11846         * hashcash.el: Remove non-FSF copyright header.
11847
11848         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11849         (hashcash-generate-payment): Use it.
11850         (hashcash-generate-payment-async): Use it.
11851
11852 2005-01-15  Simon Josefsson  <jas@extundo.com>
11853
11854         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11855         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11856
11857         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11858         gnus-summary-idna-message.
11859         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11860         (gnus-summary-idna-message): New function.
11861
11862 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11863
11864         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11865         gnus-novice-user.
11866
11867 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11868
11869         * nnrss.el (nnrss-request-delete-group): Delete entries in
11870         nnrss-group-alist as well.
11871         (nnrss-save-server-data): Insert newline.
11872
11873 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
11874
11875         * gnus.el (gnus-user-agent): Use list of symbols instead of
11876         symbols.  Display full version number for (S)XEmacs.  Optionally
11877         display (S)XEmacs codename.
11878
11879         * gnus-util.el (gnus-emacs-version): Update for new
11880         `gnus-user-agent'.
11881
11882         * gnus-msg.el (gnus-extended-version): Make it possible to omit
11883         Gnus version.
11884
11885 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
11886
11887         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
11888         which is unreadable in some setups.
11889
11890 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11891
11892         * gnus-spec.el (gnus-update-format-specifications): Flush the
11893         group format spec cache if it doesn't support decoded group names.
11894
11895 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11896
11897         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
11898         Allow to apply decay on score files matching a regexp.
11899
11900 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11901
11902         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
11903         compatibility in %g and %c.
11904
11905 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11906
11907         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
11908         name for only %g and %c.
11909         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
11910         of gnus-tmp-group to decoded group name.
11911         (gnus-group-make-rss-group): Exclude `/'s from group names.
11912
11913 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11914
11915         * nnrss.el (nnrss-get-encoding): Fix regexp.
11916
11917 2004-12-27  Simon Josefsson  <jas@extundo.com>
11918
11919         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
11920         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
11921         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
11922
11923 2004-12-17  Kim F. Storm  <storm@cua.dk>
11924
11925         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
11926
11927         * gnus-sum.el (gnus-summary-mode-map): Likewise.
11928
11929 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11930
11931         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
11932
11933 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11934
11935         * nnrss.el: Require rfc2047 and mml.
11936         (nnrss-file-coding-system): New variable.
11937         (nnrss-format-string): Redefine it as an inline function.
11938         (nnrss-decode-group-name): New function.
11939         (nnrss-string-as-multibyte): Remove.
11940         (nnrss-retrieve-headers): Decode group name; don't use
11941         nnrss-format-string.
11942         (nnrss-request-group): Decode group name.
11943         (nnrss-request-article): Decode group name; allow a Message-ID as
11944         well as an article number; don't use nnrss-format-string; encode a
11945         Message-ID string which may contain non-ASCII characters; use
11946         mml-to-mime to compose a MIME article.
11947         (nnrss-request-expire-articles): Decode group name.
11948         (nnrss-request-delete-group): Decode group name.
11949         (nnrss-fetch): Clarify error message.
11950         (nnrss-read-server-data): Use insert-file-contents instead of load;
11951         bind file-name-coding-system; use multibyte buffer.
11952         (nnrss-save-server-data): Bind coding-system-for-write to the
11953         value of nnrss-file-coding-system; bind file-name-coding-system;
11954         add coding cookie.
11955         (nnrss-read-group-data): Use insert-file-contents instead of load;
11956         bind file-name-coding-system; use multibyte buffer.
11957         (nnrss-save-group-data): Bind coding-system-for-write to the
11958         value of nnrss-file-coding-system; bind file-name-coding-system.
11959         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
11960         make it work with non-ASCII text.
11961         (nnrss-find-el): Make it work with old xml.el as well.
11962
11963 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11964
11965         * nnrss.el (nnrss-get-encoding): New function.
11966         (nnrss-fetch): Use unibyte buffer initially; bind
11967         coding-system-for-read while performing mm-url-insert; remove ^Ms;
11968         decode contents according to the encoding attribute.
11969         (nnrss-save-group-data): Add coding cookie.
11970         (nnrss-mime-encode-string): New function.
11971         (nnrss-check-group): Use it to encode subject and author.
11972
11973 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
11974
11975         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
11976         imaginary variable.
11977
11978 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11979
11980         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
11981         correctly even if there are wide characters.
11982
11983 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
11984
11985         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
11986         downcased symbol names; make a new cache instead of reusing
11987         bbdb-hashtable.
11988
11989 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11990
11991         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
11992         concatenating segments rather than before concatenating them.
11993         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11994
11995         * message.el (message-get-reply-headers): Bind `extra'.
11996
11997 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11998
11999         * message.el (message-extra-wide-headers): New variable.
12000         (message-get-reply-headers): Use it.
12001
12002 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12003
12004         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12005         (gnus-agent-group-pathname): Ditto.
12006
12007         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12008
12009         * gnus-group.el (gnus-group-make-group): Decode group name.
12010         (gnus-group-make-rss-group): Register the group data after opening
12011         the nnrss group.
12012
12013 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12014
12015         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12016         by expiry now get marked as read.
12017
12018 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12019
12020         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12021
12022 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12023
12024         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12025         unify Latin characters in XEmacs.
12026         (mm-find-mime-charset-region): Use it.
12027
12028 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12029
12030         * gnus-util.el (gnus-delete-directory): New function.
12031
12032         * gnus-agent.el (gnus-agent-delete-group): Use it.
12033
12034         * gnus-cache.el (gnus-cache-delete-group): Use it.
12035
12036 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12037
12038         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12039         names.
12040
12041 2004-12-16  Simon Josefsson  <jas@extundo.com>
12042
12043         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12044
12045 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12046
12047         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12048
12049         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12050         (gnus-group-set-current-level): Decode group name.
12051
12052 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12053
12054         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12055         failed.
12056
12057 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12058
12059         * gnus-group.el (gnus-group-delete-group): Decode group name.
12060         (gnus-group-make-rss-group): Encode group name.
12061         (gnus-group-catchup-current): Decode group name.
12062         (gnus-group-kill-group): Decode group name.
12063
12064 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12065
12066         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12067
12068 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12069
12070         * gnus-group.el (gnus-group-make-rss-group):
12071         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12072
12073         * gnus-start.el (gnus-setup-news): Honor user's setting to
12074         gnus-message-archive-method.  Suggested by Lute Kamstra
12075         <lute@gnu.org>.
12076
12077 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12078
12079         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12080         global counterparts of the buffer-local variables.
12081
12082 2004-11-16  Romain Francoise  <romain@orebokech.com>
12083
12084         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12085         counterparts of the buffer-local variables.
12086
12087 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12088
12089         * message.el (message-forbidden-properties): Fixed typo in doc
12090         string.
12091
12092 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12093
12094         * gnus-util.el (gnus-replace-in-string): Added doc string.
12095
12096         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12097         to avoid problems when splitting mails with many recipients.
12098
12099 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12100
12101         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12102         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12103
12104 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12105
12106         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12107         if there is no hashtable in memory or file modification time is
12108         newer than cached timestamp.
12109
12110 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12111
12112         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12113         not-matching option.
12114
12115 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12116
12117         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12118         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12119         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12120         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12121         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12122         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12123
12124 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12125
12126         * message.el (message-forward-make-body-mml): Remove headers
12127         according to message-forward-ignored-headers if a message is decoded.
12128
12129 2004-12-02  Romain Francoise  <romain@orebokech.com>
12130
12131         * message.el (message-forward-make-body-plain): Always remove
12132         headers according to message-forward-ignored-headers.
12133
12134 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12135
12136         * spam.el (spam-summary-prepare-exit): Remove the
12137         gnus-summary-limit pop for now, it has problems with ham marks for
12138         me.
12139
12140 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12141
12142         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12143         correctly.
12144
12145 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12146
12147         * format-spec.el (format-spec): Message the char.
12148
12149 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12150
12151         * gnus-art.el (gnus-split-methods): Reformat comments.
12152
12153         * spam.el (spam-summary-prepare-exit): Remove article limits
12154         before exiting the summary buffer.
12155
12156 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12157
12158         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12159         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12160
12161         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12162         order to silence the byte compiler.
12163
12164         * spam.el: Fix the way to silence the byte compiler, which
12165         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12166         bbdb-search-simple, spam-BBDB-register-routine,
12167         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12168         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12169         spam-stat-buffer-is-spam, spam-stat-load,
12170         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12171         spam-stat-save and spam-stat-split-fancy.
12172
12173 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12174
12175         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12176         which may confuse users.
12177         (canlock-password-for-verify): Ditto.
12178
12179         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12180
12181         * gnus-art.el (gnus-emphasis-alist): Ditto.
12182
12183         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12184
12185         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12186
12187         * gnus-start.el (gnus-save-killed-list): Ditto.
12188
12189         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12190         (gnus-sum-thread-tree-root): Ditto.
12191         (gnus-sum-thread-tree-false-root): Ditto.
12192         (gnus-sum-thread-tree-single-indent): Ditto.
12193
12194         * message.el (message-courtesy-message): Ditto.
12195         (message-archive-note): Ditto.
12196         (message-subscribed-address-file): Ditto.
12197         (message-user-fqdn): Ditto.
12198
12199         * spam-report.el (spam-report-gmane-regex): Ditto.
12200
12201         * spam.el (spam-blackhole-good-server-regex): Ditto.
12202
12203 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12204
12205         * mml.el (mml-preview): Widen the message buffer before copying
12206         the contents to the preview buffer; sort headers before previewing.
12207
12208         * message.el (message-hidden-headers): Fix the way to avoid a bug
12209         in the `repeat' widget in Emacs 21.3 or earlier.
12210
12211 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12212
12213         * message.el (message-hidden-headers): Default to "^References:".
12214         Improve customization type.  Suggested by Reiner Steib
12215         <Reiner.Steib@gmx.de>.
12216
12217 2004-11-25  Romain Francoise  <romain@orebokech.com>
12218
12219         * message.el (message-strip-forbidden-properties): Remove check for
12220         obsolete `message-hidden' text property, hidden headers are not
12221         accessible in the buffer anymore.
12222
12223 2004-11-22  Romain Francoise  <romain@orebokech.com>
12224
12225         * message.el (message-header-format-alist): Add `From' in list
12226         so that it can be sorted.
12227         (message-fix-before-sending): Widen and sort headers before
12228         sending.
12229         (message-hide-headers): Use narrowing to hide headers by moving
12230         them to the top of the buffer and narrowing to the region
12231         underneath.
12232
12233 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12234
12235         * message.el (message-strip-forbidden-properties): Bind
12236         buffer-read-only (etc) to nil.
12237
12238 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12239
12240         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12241         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12242
12243 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12244
12245         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12246
12247 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12248
12249         * dns.el (query-dns): Use sit-for to time instead of
12250         accept-process-output, since that doesn't seem to work on udp
12251         sockets.
12252
12253 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12254
12255         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12256
12257 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12258
12259         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12260         doc string.  Improve doc string.
12261
12262 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12263
12264         * nntp.el (nntp-request-update-info): Return nil if
12265         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12266         may not call gnus-activate-group which uselessly issues the GROUP
12267         commands for all nntp groups and wastes time.  Reported by Romain
12268         Francoise <romain@orebokech.com>.
12269
12270         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12271
12272 2004-11-15  Simon Josefsson  <jas@extundo.com>
12273
12274         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12275         headers separately.
12276         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12277         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12278
12279 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12280
12281         * gnus-start.el (gnus-convert-old-newsrc):
12282         Assign legacy-gnus-agent to 5.10.7.
12283
12284 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12285
12286         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12287         start of the lines.
12288
12289 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12290
12291         * hashcash.el (hashcash-default-payment): Change default to 20.
12292         (hashcash-default-accept-payment): Change default to 20.
12293         (hashcash-process-alist): New variable.
12294         (hashcash-generate-payment-async): Add.
12295         (hashcash-already-paid-p): Add.
12296         (hashcash-insert-payment): Don't generate payments twice.
12297         (hashcash-insert-payment-async): Add.
12298         (hashcash-insert-payment-async-2): Add.
12299         (hashcash-cancel-async): Add.
12300         (hashcash-wait-async): Add.
12301         (hashcash-processes-running-p): Add.
12302         (hashcash-wait-or-cancel): Add.
12303         (mail-add-payment): New optional argument.  Conditionally start
12304         asynchronous calculation.
12305         (mail-add-payment-async): Add.
12306
12307         * message.el (message-send-mail): Wait for asynchronous hashcash
12308         results.  Don't clobber existing X-Hashcash headers.
12309         (message-setup-1): Call mail-add-payment-async when
12310         message-generate-hashcash is non-nil.
12311
12312 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12313
12314         * message.el (message-use-alternative-email-as-from): Examine the
12315         From header as well; use message-make-from in order to include a
12316         user's full name.
12317
12318 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12319
12320         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12321         default; improve customization type.
12322         (gnus-emphasis-custom-with-format): New macro.
12323         (gnus-emphasis-custom-value-to-external): New function.
12324         (gnus-emphasis-custom-value-to-internal): New function.
12325
12326 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12327
12328         * dns.el (query-dns): Resolve reverse addresses.
12329
12330 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12331
12332         * gnus-group.el (gnus-group-get-new-news): Use it.
12333
12334         * gnus-start.el (gnus-check-reasonable-setup): New function.
12335
12336 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12337
12338         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12339         "Args out of range" error.  Reported by Arnaud Giersch
12340         <arnaud.giersch@free.fr>.
12341
12342 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12343
12344         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12345
12346 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12347
12348         * spam.el (spam group): Add :version.
12349
12350         * pgg-def.el (pgg group): Add :version.
12351
12352 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12353
12354         * gnus-art.el (gnus-article-edit-article): Don't associate the
12355         article buffer with a draft file.  This is a temporary measure
12356         against the 2004-08-22 change to gnus-article-edit-mode.
12357
12358 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12359
12360         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12361         (html2text-format-tags): Remove unused variable `attr'.
12362
12363 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12364
12365         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12366
12367         * tls.el (tls-process-connection-type, tls-success)
12368         (tls-certtool-program): Add :version.
12369
12370         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12371         (starttls-extra-arguments, starttls-process-connection-type)
12372         (starttls-connect, starttls-failure, starttls-success): Add :version.
12373
12374         * spam-stat.el (spam-stat): Add :version.
12375
12376         * sieve.el (sieve): Add :version.
12377
12378         * sha1.el (sha1): Add :version.
12379         (sha1-use-external): Remove redundant version.
12380
12381         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12382         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12383         (nnmail-split-fancy-match-partial-words)
12384         (nnmail-split-lowercase-expanded): Add :version.
12385
12386         * nndiary.el (nndiary): Add :version.
12387
12388         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12389
12390         * mml-sec.el (mml-default-sign-method)
12391         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12392         Add :version.
12393
12394         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12395
12396         * mm-url.el (mm-url-use-external, mm-url-program)
12397         (mm-url-arguments): Add :version.
12398
12399         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12400         (mm-attachment-file-modes, mm-decrypt-option)
12401         (mm-w3m-safe-url-regexp): Add :version.
12402
12403         * message.el (message-cite-prefix-regexp)
12404         (message-sendmail-envelope-from, message-minibuffer-local-map)
12405         (message-user-fqdn, message-completion-alist): Add :version.
12406
12407         * gnus-win.el (gnus-configure-windows-hook)
12408         (gnus-use-frames-on-any-display): Add :version.
12409
12410         * gnus-art.el (gnus-article-address-banner-alist)
12411         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12412         (gnus-treat-from-picon, gnus-treat-mail-picon)
12413         (gnus-treat-x-pgp-sig): Add :version.
12414
12415         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12416         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12417         (gnus-summary-article-delete-hook)
12418         (gnus-summary-display-while-building): Add :version.
12419
12420         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12421         (gnus-get-top-new-news-hook): Add :version.
12422
12423         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12424         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12425
12426         * gnus-registry.el (gnus-registry): Add :version.
12427
12428         * gnus-spec.el (gnus-use-correct-string-widths)
12429         (gnus-make-format-preserve-properties): Add :version.
12430
12431         * gnus.el (gnus-group-charter-alist)
12432         (gnus-group-fetch-control-use-browse-url)
12433         (gnus-install-group-spam-parameters): Add :version.
12434
12435         * gnus-diary.el (gnus-diary): Add :version.
12436
12437         * gnus-delay.el (gnus-delay): Add :version.
12438
12439         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12440         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12441         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12442         Add :version.
12443
12444         * gnus-agent.el (gnus-agent-max-fetch-size)
12445         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12446         (gnus-agent-prompt-send-queue): Add :version.
12447
12448         * deuglify.el (gnus-outlook-deuglify): Add :version.
12449
12450         * html2text.el: Beautify code.  Improve doc strings.  Some
12451         checkdoc cleanup.
12452         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12453
12454 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12455
12456         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12457
12458 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12459
12460         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12461         when package is loaded.
12462
12463         * spam.el (spam-summary-score-preferred-header): Add global preference
12464         for people who want to override the default SpamAssassin over
12465         Bogofilter preference (when both are set).
12466         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12467         (spam-user-format-function-S): Check
12468         spam-summary-score-preferred-header.
12469         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12470         (spam-user-format-function-S): Format the score correctly.
12471
12472 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12473
12474         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12475         signature file.  Suggested by Manoj Srivastava
12476         <srivasta@golden-gryphon.com>.
12477
12478         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12479         iso-2022-jp even in the Japanese language environment.
12480         Suggested by Jason Rumney <jasonr@gnu.org>.
12481
12482 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12483
12484         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12485         use the same characters as the dummy marks; make it free from
12486         getting affected by the language environment.
12487         (gnus-summary-read-group-1): Update mark positions only when the
12488         format spec is updated.
12489
12490         * gnus-spec.el (gnus-update-format-specifications): Return a list
12491         of updated types.
12492
12493 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12494
12495         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12496         of boundp to check if display-warning is available.
12497
12498 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12499
12500         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12501
12502 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12503
12504         * nnspool.el (nnspool-spool-directory): Use news-path if the
12505         news-directory variable is not bound.
12506
12507         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12508         function instead of display-warning if it is not available.
12509
12510 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12511
12512         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12513         v5-10: Use `point-at-bol'.
12514
12515 2004-10-26  Simon Josefsson  <jas@extundo.com>
12516
12517         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12518         <chenggao@gmail.com>.
12519
12520 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12521
12522         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12523         instead.
12524
12525 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12526
12527         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12528         to remove a server from the nnimap-server-buffer-alist.
12529         (nnimap-open-connection, nnimap-close-server): Use it.
12530
12531         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12532
12533 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12534
12535         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12536         running the major-mode function.
12537
12538 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12539
12540         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12541         dummy marks in the right way.
12542
12543 2004-10-18  David Edmondson  <dme@dme.org>
12544
12545         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12546         excessively.
12547
12548 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12549
12550         * gnus-util.el (gnus-split-references): Accept a nil references
12551         string and go on blissfully.
12552
12553         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12554         cases where the references string is non-nil but has no references.
12555
12556         * encrypt.el: Add autoload tags.
12557
12558         * spam.el (spam-resolve-registrations-routine): Remove article
12559         from unregistration list too.  Reported by David Hanak
12560         <dhanak@isis.vanderbilt.edu>
12561
12562 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12563
12564         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12565         nil.  Changed custom type.
12566
12567 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12568
12569         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12570
12571         * gnus-sum.el (gnus-summary-move-article): Use it.
12572
12573 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12574
12575         * encrypt.el: Add autoload cookies.
12576
12577         * spam.el (spam-backend-article-list-property)
12578         (spam-backend-get-article-todo-list)
12579         (spam-backend-put-article-todo-list)
12580         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12581         Resolve registrations separately.
12582         (spam-register-routine): Format comments.
12583         (spam-unregister-routine, spam-register-routine): Always call with
12584         specific-articles, no default list.
12585         (spam-summary-prepare-exit): Use the spam-classifications function.
12586
12587         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12588         gnus-encrypt.el.
12589
12590         * encrypt.el: Copied from gnus-encrypt.el.
12591
12592         * gnus-encrypt.el: Commented that it's obsolete.
12593
12594 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12595
12596         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12597         (gnus-score-save): Use it.
12598
12599         * message.el (message-bury): Use `window-dedicated-p'.
12600
12601 2004-10-15  Simon Josefsson  <jas@extundo.com>
12602
12603         * pop3.el (top-level): Don't require nnheader.
12604         (pop3-read-timeout): Add.
12605         (pop3-accept-process-output): Add.
12606         (pop3-read-response, pop3-retr): Use it.
12607
12608 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12609
12610         * spam.el (spam-register-routine): Move comment.
12611         (spam-verify-bogofilter): Use 'unknown for the initial
12612         spam-bogofilter-valid state, not 'never.
12613
12614         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12615         for netrc-machine.
12616
12617         * nnimap.el (nnimap-open-connection): Use
12618         netrc-machine-user-or-password.
12619
12620 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12621
12622         * gnus-registry.el (gnus-registry-unload-hook):
12623         Set as a variable with add-hook.
12624
12625         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12626         of news-path.
12627
12628         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12629
12630         * spam.el: Delete duplicate `provide'.
12631         (spam-unload-hook): Set as a variable with add-hook.
12632
12633 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12634
12635         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12636         in the doc string.
12637
12638         * message.el (message-ignored-news-headers)
12639         (message-ignored-supersedes-headers)
12640         (message-ignored-resent-headers)
12641         (message-forward-ignored-headers): Improve custom type.
12642
12643 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12644
12645         * message.el (message-tokenize-header): Fix 2004-09-06 change
12646         which used point-min in the wrong place.
12647
12648 2004-10-12  Simon Josefsson  <jas@extundo.com>
12649
12650         * tls.el (tls-certtool-program): New variable.
12651         (tls-certificate-information): New function, based on
12652         ssl-certificate-information.
12653
12654 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12655
12656         * compface.el: Move the version of ELisp-based uncompface program
12657         to the contrib directory because of the copyright problem.
12658
12659 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12660
12661         * message.el (message-kill-buffer): Raise the current frame.
12662
12663 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12664
12665         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12666
12667         * gnus.el (message-y-or-n-p): Autoload.
12668
12669         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12670         (pop3-password-required, pop3-authentication-scheme)
12671         (pop3-leave-mail-on-server): Made customizable.
12672         (pop3): New custom group.
12673         (pop3-retr): Remove `sleep-for' statements.
12674         Suggested by Dave Love <fx@gnu.org>.
12675
12676         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12677         Windows/DOS.
12678
12679         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12680         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12681         Dave Love <fx@gnu.org>.
12682
12683         * mml.el (mml-minibuffer-read-disposition): Require match.
12684         Suggested by Dave Love <fx@gnu.org>.
12685
12686 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12687
12688         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12689         doc string.
12690
12691 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12692
12693         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12694
12695 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12696
12697         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12698         instead of calling `mm-insert-inline', to decode text/* parts
12699         before displaying them.
12700
12701 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12702
12703         * mm-uu.el (mm-uu-text-plain-type): New variable.
12704         (mm-uu-pgp-signed-extract-1): Use it.
12705         (mm-uu-pgp-encrypted-extract-1): Use it.
12706         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12707         bind mm-uu-text-plain-type with that value.
12708         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12709         mm-uu-dissect.
12710
12711 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12712
12713         * gnus-group.el (gnus-update-group-mark-positions):
12714         * gnus-sum.el (gnus-update-summary-mark-positions):
12715         * message.el (message-check-news-body-syntax):
12716         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12717         of string-as-multibyte.
12718
12719 2004-10-05  Juri Linkov  <juri@jurta.org>
12720
12721         * gnus-group.el (gnus-update-group-mark-positions):
12722         * gnus-sum.el (gnus-update-summary-mark-positions):
12723         * message.el (message-check-news-body-syntax):
12724         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12725         8-bit unibyte values to a multibyte string for search functions.
12726
12727 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12728
12729         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12730         (mm-uu-dissect-text-parts): New function.
12731
12732         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12733         dissect text parts.
12734
12735         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12736         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12737
12738         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12739
12740         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12741         gnus-current-topics instead of gnus-current-topic.
12742
12743 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12744
12745         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12746
12747 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12748
12749         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12750         where approriate.
12751
12752         * nnml.el (nnml-generate-active-info): do.
12753
12754         * nndiary.el (nndiary-generate-active-info): do.
12755
12756         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12757         (gnus-topic-move): do.
12758
12759         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12760         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12761
12762         * gnus-srvr.el (gnus-server-prepare)
12763         (gnus-server-open-all-servers): do.
12764
12765         * gnus-msg.el (gnus-summary-cancel-article)
12766         (gnus-summary-resend-message)
12767         (gnus-summary-mail-crosspost-complaint): do.
12768
12769         * gnus-move.el (gnus-change-server): do.
12770
12771         * gnus-group.el (gnus-group-unmark-all-groups)
12772         (gnus-group-set-current-level): do.
12773
12774 2004-10-04  Simon Josefsson  <jas@extundo.com>
12775
12776         * message.el (message-generate-hashcash): Doc fix.
12777
12778 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12779
12780         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12781         avoid infinite recursion via gnus-get-function.
12782
12783 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12784
12785         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12786
12787         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12788
12789         * nnmail.el (nnmail-split-history): do.
12790
12791         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12792         (nnml-request-delete-group): do.
12793
12794         * nnslashdot.el (nnslashdot-read-groups): do.
12795
12796         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12797         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12798
12799         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12800         (nnspool-sift-nov-with-sed): Use last.
12801         (nnspool-retrieve-headers-with-nov): Use mapc.
12802         (nnspool-request-newgroups): Use dolist.
12803         (nnspool-request-group): Use last.
12804
12805         * nntp.el (nntp-read-server-type): Use dolist.
12806
12807         * nnvirtual.el (nnvirtual-create-mapping)
12808         (nnvirtual-update-read-and-marked): Use dolist.
12809         (nnvirtual-convert-headers): Simplify.
12810
12811 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12812
12813         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12814         support for sync'ing tick marks.
12815
12816 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12817
12818         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12819         there's no visible header.
12820
12821 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12822
12823         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12824         necessary, pass full group name to gnus-request-set-marks.
12825
12826 2004-10-01  Simon Josefsson  <jas@extundo.com>
12827
12828         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12829         acroread.
12830
12831 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12832
12833         * spam-report.el (spam-report-gmane): Fix interactive.
12834
12835         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12836
12837         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12838         when writing file.
12839         (gnus-agent-synchronize-flags): Don't default to being
12840         interactive.
12841
12842 2004-09-30  Simon Josefsson  <jas@extundo.com>
12843
12844         * message.el (message-generate-hashcash): Add.
12845         (message-send-mail): Use it, call mail-add-payment.
12846
12847 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12848
12849         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12850
12851 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12852
12853         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12854         gnus-requst-update-info with explicit code to sync the in-memory
12855         info read flags with the marks being sync'd to the backend.
12856
12857         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12858
12859 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12860
12861         * spam.el (spam-verify-bogofilter): Add new function.
12862         (spam-check-bogofilter)
12863         (spam-bogofilter-register-with-bogofilter): Use it.
12864         (spam-verify-bogofilter): Add small fixes.
12865
12866 2004-09-28  Simon Josefsson  <jas@extundo.com>
12867
12868         * hashcash.el (hashcash-generate-payment): Revert.
12869
12870 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12871
12872         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
12873         gnus-extract-references instead of gnus-split-references.
12874
12875         * gnus-util.el (gnus-extract-references): Add new function, analogous
12876         to gnus-split-references but extracts only the message-ID without
12877         anything extra.
12878
12879         * hashcash.el (hashcash-generate-payment)
12880         (hashcash-check-payment): Do the right thing if hashcash-path is
12881         nil (because the hashcash program could not be found).
12882
12883         * spam.el (spam-use-hashcash): Remove comment.
12884
12885 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
12886
12887         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
12888         (gnus-cache-enter-article, gnus-cache-remove-article)
12889         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
12890
12891         * gnus-async.el (gnus-async-prefetch-remove-group): do.
12892
12893         * gnus-art.el (article-hide-boring-headers)
12894         (article-translate-strings, article-display-face)
12895         (gnus-article-mime-match-handle-first)
12896         (gnus-article-highlight-headers)
12897         (gnus-article-add-buttons-to-head): do.
12898
12899 2004-09-27  Simon Josefsson  <jas@extundo.com>
12900
12901         * hashcash.el: New version, from
12902         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
12903         ../contrib/.
12904
12905 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12906
12907         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
12908
12909 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
12910
12911         * gnus-dup.el (gnus-dup-open): Use mapc.
12912         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
12913
12914         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
12915         Reported by Stefan Wiens <s.wi@gmx.net>.
12916
12917         * gnus.el (gnus-shutdown): Use dolist.
12918
12919         * gnus-undo.el (gnus-undo): Use mapc.
12920
12921         * nnrss.el (nnrss-generate-active): do.
12922
12923         * message.el (message-cite-original-without-signature)
12924         (message-cite-original): Use mapc.
12925         (message-do-actions, message-make-forward-subject): Use dolist.
12926
12927 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12928
12929         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
12930         deletion to remove entire duplicate line.  Fixes merged article
12931         number bug.
12932
12933 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12934
12935         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
12936         servers that are offline.  Avoids having gnus-agent-toggle-plugged
12937         first ask if you want to open a server and then, even when you
12938         responded with no, asking if you want to synchronize the server's
12939         flags.
12940         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
12941         multi-line expressions.
12942         (gnus-agent-synchronize-group-flags): New internal function.
12943         Updates marks in memory (in the info structure) AND in the
12944         backend.
12945
12946         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
12947
12948         * nnagent.el (nnagent-request-set-mark): Use
12949         gnus-agent-synchronize-group-flags, not backend's request-set-mark
12950         method, to ensure that synchronization updates marks in the
12951         backend and in the info (in memory) structure.
12952
12953 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12954
12955         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
12956         convention fully; don't miss the root article of a thread; make
12957         the X-Draft-From header with correct article numbers.
12958
12959 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
12960
12961         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
12962         unless plugged.  Disable the agent so that an open failure causes
12963         an error.
12964
12965         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
12966         Reverted 2004-09-21 change.  The backend must be opened while
12967         synchronizing flags even when the backend stores the flags
12968         locally.
12969
12970 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
12971
12972         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
12973         in `header' match.  Reported by Svend Tollak Munkejord.
12974
12975         * message.el (message-cite-original): Fix use of
12976         `message-cite-articles-with-x-no-archive'.
12977
12978 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12979
12980         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
12981         (gnus-window-to-buffer): Ditto.
12982
12983         * mml.el (mml-preview-buffer): New variable.
12984         (mml-preview): Manage window layout with gnus-buffer-configuration.
12985
12986         * gnus-msg.el (gnus-setup-message): Put article numbers into the
12987         X-Draft-From header even if those articles aren't quoted.
12988
12989 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
12990
12991         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
12992         (gnus-request-set-mark, gnus-request-update-mark): Use new
12993         g-s-t-u-l-m to decide to use backend even when unplugged.
12994
12995 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12996
12997         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
12998         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
12999
13000 2004-09-20  Simon Josefsson  <jas@extundo.com>
13001
13002         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13003         "utf-16-le".
13004
13005 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13006
13007         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13008
13009 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13010
13011         * uudecode.el (uudecode-use-external): Add :version.
13012
13013         * smime.el (smime-CA-file, smime-encrypt-cipher)
13014         (smime-dns-server): Add :version.
13015
13016         * smiley.el (gnus-smiley-file-types): Add :version.
13017
13018         * sha1.el (sha1-use-external): Add :version.
13019
13020         * pgg-def.el (pgg-query-keyserver): Add :version.
13021
13022         * nnmail.el (nnmail-fancy-expiry-targets)
13023         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13024         Add :version.
13025
13026         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13027         (nnimap-retrieve-groups-asynchronous): Add :version.
13028         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13029
13030         * mml.el (mml-content-disposition-parameters)
13031         (mml-insert-mime-headers-always): Add :version.
13032
13033         * mm-util.el (mm-coding-system-priorities): Add :version.
13034
13035         * mm-decode.el (mm-inline-text-html-with-images)
13036         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13037         (mm-verify-option): Add :version.
13038         (mm-text-html-renderer): Change :version.
13039
13040         * message.el (message-fcc-externalize-attachments)
13041         (message-required-headers, message-draft-headers)
13042         (message-subject-trailing-was-query)
13043         (message-subject-trailing-was-ask-regexp)
13044         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13045         (message-mark-insert-end, message-archive-header)
13046         (message-archive-note, message-cross-post-default)
13047         (message-cross-post-note, message-followup-to-note)
13048         (message-cross-post-note-function, message-use-mail-followup-to)
13049         (message-subscribed-address-functions)
13050         (message-subscribed-address-file, message-subscribed-addresses)
13051         (message-subscribed-regexps, message-allow-no-recipients)
13052         (message-yank-cited-prefix, message-signature-insert-empty-line)
13053         (message-hidden-headers, message-hierarchical-addresses)
13054         (message-mail-user-agent, message-use-idna)
13055         (message-valid-fqdn-regexp)
13056         (message-strip-special-text-properties, message-header-synonyms)
13057         (message-beginning-of-line, message-tab-body-function): Add :version.
13058         (message-insert-canlock, message-wide-reply-confirm-recipients):
13059         Change :version.
13060
13061         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13062         and :version.
13063         (mail-source-delete-old-incoming-confirm)
13064         (mail-source-movemail-program): Add :version.
13065
13066         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13067         (gnus-agent-cache, gnus-agent): Change :version.
13068
13069         * gnus-util.el (gnus-use-byte-compile): Change :version.
13070
13071         * gnus-sum.el (gnus-summary-make-false-root-always)
13072         (gnus-summary-default-high-score)
13073         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13074         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13075         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13076         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13077         (gnus-sum-thread-tree-single-indent)
13078         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13079         (gnus-sum-thread-tree-leaf-with-other)
13080         (gnus-sum-thread-tree-single-leaf): Add :version.
13081         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13082         (gnus-article-loose-mime): Change :version.
13083
13084         * gnus-start.el (gnus-backup-startup-file)
13085         (gnus-save-startup-file-via-temp-buffer): Add :version.
13086
13087         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13088         (gnus-server-offline-face): Add :version.
13089
13090         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13091
13092         * gnus-msg.el (gnus-gcc-externalize-attachments)
13093         (gnus-debug-files, gnus-debug-exclude-variables)
13094         (gnus-discouraged-post-methods): Change :version.
13095         (gnus-confirm-mail-reply-to-news)
13096         (gnus-confirm-treat-mail-like-news): Add :version.
13097
13098         * gnus-int.el (gnus-server-unopen-status): Add :version.
13099
13100         * gnus-group.el (gnus-group-jump-to-group-prompt)
13101         (gnus-large-ephemeral-newsgroup)
13102         (gnus-fetch-old-ephemeral-headers): Add :version.
13103
13104         * gnus-fun.el (gnus-x-face-directory)
13105         (gnus-convert-pbm-to-x-face-command)
13106         (gnus-convert-image-to-x-face-command)
13107         (gnus-convert-image-to-face-command): Add :version.
13108
13109         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13110
13111         * gnus-cite.el (gnus-cite-blank-line-after-header)
13112         (gnus-article-boring-faces): Add :version.
13113
13114         * gnus-art.el (gnus-buttonized-mime-types)
13115         (gnus-inhibit-mime-unbuttonizing)
13116         (gnus-treat-display-face)
13117         (gnus-treat-body-boundary): Change :version.
13118         (gnus-body-boundary-delimiter, gnus-picon-databases)
13119         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13120         (gnus-treat-date-english, gnus-treat-fold-headers)
13121         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13122         (gnus-treat-mail-picon, gnus-treat-wash-html)
13123         (gnus-article-encrypt-protocol)
13124         (gnus-use-idna, gnus-article-over-scroll)
13125         (gnus-mime-display-multipart-alternative-as-mixed)
13126         (gnus-mime-display-multipart-related-as-mixed)
13127         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13128         (gnus-ctan-url, gnus-button-ctan-handler)
13129         (gnus-button-handle-ctan-bogus-regexp)
13130         (gnus-button-ctan-directory-regexp)
13131         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13132         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13133         (gnus-button-man-level, gnus-button-emacs-level)
13134         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13135
13136         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13137         (gnus-agent-go-online): Change :version.
13138         (gnus-agent-expire-unagentized-dirs)
13139         (gnus-agent-auto-agentize-methods): Add :version.
13140
13141         * flow-fill.el (fill-flowed-display-column)
13142         (fill-flowed-encode-column): Add :version.
13143
13144         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13145         (gnus-outlook-deuglify-unwrap-max)
13146         (gnus-outlook-deuglify-cite-marks)
13147         (gnus-outlook-deuglify-unwrap-stop-chars)
13148         (gnus-outlook-deuglify-no-wrap-chars)
13149         (gnus-outlook-deuglify-attrib-cut-regexp)
13150         (gnus-outlook-deuglify-attrib-verb-regexp)
13151         (gnus-outlook-deuglify-attrib-end-regexp)
13152         (gnus-outlook-display-hook): Add :version.
13153
13154         * binhex.el (binhex-use-external): Add :version.
13155
13156 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13157
13158         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13159         and `invisible'.
13160
13161 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13162
13163         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13164         in gnus-registry-trim.
13165
13166 2004-09-13  Simon Josefsson  <jas@extundo.com>
13167
13168         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13169
13170         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13171
13172         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13173         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13174         <yamaoka@jpl.org>.
13175         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13176         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13177         <yamaoka@jpl.org>.
13178
13179         * sieve.el (sieve-manage-mode): Ditto.
13180
13181 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13182
13183         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13184
13185 2004-09-11  Simon Josefsson  <jas@extundo.com>
13186
13187         * dns-mode.el: Add.
13188
13189         * mm-view.el (mm-display-dns-inline): Add.
13190
13191         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13192         (mm-automatic-display): Ditto.
13193
13194         * mailcap.el (mailcap-mime-data): Add text/dns.
13195         (mailcap-mime-extensions): Map .soa to text/dns.
13196
13197 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13198
13199         * gnus-art.el (article-decode-mime-words, article-babel)
13200         (gnus-article-highlight-signature, gnus-article-add-buttons)
13201         (gnus-signature-toggle): Remove unnecessary bindings of
13202         `inhibit-read-only' inherited from v5.10 merge.
13203
13204 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13205
13206         * nntp.el (nntp): New customization group.
13207         (nntp-authinfo-file): Add customization group.
13208
13209         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13210
13211         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13212
13213         * gnus.el (to-address, to-list, subscribed)
13214         (large-newsgroup-initial): Ditto.
13215
13216         * flow-fill.el (fill-flowed-display-column)
13217         (fill-flowed-encode-column): Ditto.
13218
13219 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13220
13221         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13222         Use point-min rather than 1.
13223         (message-send-mail): Use buffer-size rather than point-max.
13224
13225         * gnus-sum.el (gnus-summary-search-article-forward):
13226         Signal a specific `search-failed' rather than a generic `error'.
13227
13228         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13229         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13230         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13231
13232 2004-09-10  Simon Josefsson  <jas@extundo.com>
13233
13234         * nndb.el (require): Remove tcp and duplicate cl.
13235
13236 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13237
13238         * gnus-agent.el (directory-files-and-attributes): Move forward.
13239
13240 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13241
13242         * gnus-agent.el (directory-files-and-attributes): Optionally
13243         defined to support XEmacs.
13244
13245 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13246
13247         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13248         to avoid run-time CL dependencies.
13249         (gnus-agent-unfetch-articles): New function.
13250         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13251         article numbers even when local .overview file is missing.
13252         (gnus-agent-read-article-number): New function.  Only accepts
13253         27-bit article numbers.
13254         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13255         gnus-agent-read-article-number.
13256         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13257         from backend while recognizing that article numbers in .overview
13258         must be valid.
13259         (gnus-agent-update-files-total-fetched-for): Use
13260         directory-files-and-attributes to improve performance.
13261         * gnus-int.el (gnus-request-move-article): Use
13262         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13263         improve performance.
13264
13265         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13266         some users confused by references to .newsrc when they only have a
13267         .newsrc.eld file.
13268         (gnus-convert-mark-converter-prompt)
13269         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13270         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13271         New function.  Used internally to only display 'gnus converting
13272         files' message when actually necessary.
13273
13274         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13275         methods now autoloaded.
13276
13277 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13278
13279         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13280         identifiers.
13281
13282 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13283
13284         * gnus-picon.el: Fix indentation and closing parenthesis.
13285
13286 2004-09-01  Simon Josefsson  <jas@extundo.com>
13287
13288         * message.el (message-canlock-generate): Require sha1, not
13289         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13290         to require within a function.  Sadly, if sha1.el isn't loaded, the
13291         let binding in m-c-g will hide the defcustom definition, which is
13292         bad.)
13293
13294         * canlock.el: Require sha1, not sha1-el.
13295
13296         * message.el: Don't autoload sha1 (there is a autoload cookie in
13297         sha1.el).
13298
13299         * sha1-el.el: Renamed to sha1.el.
13300
13301 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13302
13303         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13304
13305 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13306
13307         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13308
13309 2004-08-30  Kim F. Storm  <storm@cua.dk>
13310
13311         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13312
13313         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13314         Add :group 'nnimap.
13315
13316 2004-08-30  Andreas Schwab  <schwab@suse.de>
13317
13318         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13319         ?* and ?\;.
13320
13321         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13322         and ?\' to symbol instead of whitespace.
13323
13324 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13325
13326         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13327
13328         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13329         instead of re-search-forward.
13330
13331         * gnus-uu.el (gnus-uu-save-article): Ditto.
13332         (gnus-uu-post-encode-uuencode): Ditto.
13333
13334         * html2text.el (html2text-clean-list-items): Ditto.
13335         (html2text-clean-dtdd): Ditto.
13336         (html2text-format-tags): Ditto.
13337
13338         * message.el (message-send-mail-with-sendmail): Fix regexp.
13339         (message-fill-field-general): Use search-forward instead of
13340         re-search-forward.
13341         (unbold-region): Ditto.
13342
13343         * nnrss.el (nnrss-request-article): Ditto.
13344
13345         * nnslashdot.el (nnslashdot-request-article): Ditto.
13346
13347         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13348
13349         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13350         "Unrecognized menu descriptor" error in XEmacs.
13351
13352 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13353
13354         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13355         parent article of a sparse article in the thread hashtb.
13356
13357 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13358
13359         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13360         (nnmail-expand-newtext): Lowercase expanded entries if
13361         nnmail-split-lowercase-expanded is non-nil.
13362
13363 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13364
13365         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13366
13367         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13368         of gnus-tmp-news-method into string under XEmacs.  It will be
13369         passed to gnus-correct-length which takes only a string argument.
13370
13371 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13372
13373         * gnus-util.el (gnus-bind-print-variables): New macro.
13374         (gnus-prin1): Use it.
13375         (gnus-prin1-to-string): Use it.
13376         (gnus-pp): New function.
13377         (gnus-pp-to-string): New function.
13378
13379         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13380         Replace pp-to-string with gnus-pp-to-string.
13381         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13382         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13383         * gnus-msg.el (gnus-debug): Ditto.
13384         * gnus-score.el (gnus-score-save): Ditto.
13385         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13386         gnus-pp-to-string.
13387         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13388         with gnus-pp.
13389         * score-mode.el (gnus-score-pretty-print): Ditto.
13390         * webmail.el (webmail-debug): Ditto.
13391
13392 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13393
13394         * gnus-art.el (article-display-face, article-display-x-face):
13395         Use buffer-read-only.
13396
13397 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13398
13399         * gnus-art.el (article-hide-list-identifiers):
13400         Bind inhibit-read-only as t.
13401
13402 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13403
13404         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13405
13406 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13407
13408         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13409         (gnus-narrow-to-page): Don't assume point-min == 1.
13410         (gnus-article-edit-mode): Derive from message-mode.
13411
13412         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13413         point-min == 1.
13414
13415         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13416         Disable incorrect use of `assert'.
13417
13418         * message.el (message-mode): Set comment-start-skip.
13419
13420
13421 2004-08-22  Sam Steingold  <sds@gnu.org>
13422
13423         * pop3.el (pop3-leave-mail-on-server): New user variable.
13424         (pop3-movemail): Delete mail only when it is nil.
13425
13426 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13427
13428         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13429
13430         * mml.el (mml-preview): Use `pop-to-buffer'.
13431
13432         * message.el (message-goto-mail-followup-to): Insert after "To".
13433         (message-carefully-insert-headers): Add comment.
13434
13435         * gnus.el: Remove unused variable `gnus-article-check-size'.
13436
13437         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13438
13439         * gnus-art.el (gnus-button-alist): Improve
13440         `gnus-button-handle-library' entry.
13441
13442 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13443
13444         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13445         downcase, since XEmacs capitalizes error messages differently.
13446
13447 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13448
13449         * nntp.el: Add (require 'gnus) due to reference to
13450         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13451
13452 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13453
13454         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13455         `mm-fill-flowed'.
13456
13457         * mm-decode.el (mm-dissect-singlepart): Check it.
13458
13459 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13460
13461         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13462         'imap' for netrc parsing.
13463
13464 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13465
13466         * mailcap.el (mailcap-mime-data): Mark as risky.
13467
13468 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13469
13470         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13471         may be included in the encoded word.
13472         (rfc2047-encode): Don't append a space if the encoded word
13473         includes close parenthesis.
13474
13475 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13476
13477         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13478         of text within parentheses.
13479
13480 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13481
13482         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13483         (gnus-encrypt-write-file-contents): Make the password key the file
13484         name PLUS the cipher, not just the cipher.  Also remove failed
13485         passwords from the cache.
13486
13487 2004-08-06  Simon Josefsson  <jas@extundo.com>
13488
13489         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13490         fix.
13491
13492 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13493
13494         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13495         LWSP.
13496
13497 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13498
13499         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13500         to append in-reply-to: data to the references: header.
13501
13502         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13503         (netrc-parse): Use gnus-encrypt.el functions.
13504
13505         * gnus-encrypt.el: Add new file for encryption support; currently
13506         does only a few GPG ciphers and an internal XOR cipher.
13507
13508         * password.el: Add comments on using password-read-and-add.
13509         (password-read-and-add): Add function to read and add the
13510         password to the cache at once.
13511
13512 2004-07-28  Simon Josefsson  <jas@extundo.com>
13513
13514         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13515         parameter (but don't use it, for now).
13516
13517         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13518         instead of hard coding to nil.
13519
13520 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13521
13522         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13523         as mm-inline-image-xemacs does.
13524
13525 2004-07-26  Simon Josefsson  <jas@extundo.com>
13526
13527         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13528         Revert part of 2004-07-17 change below.
13529
13530 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13531
13532         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13533         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13534
13535 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13536
13537         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13538         quotes that actually start with ">" at the beginning of the
13539         lines.
13540
13541 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13542
13543         * rfc2047.el (rfc2047-encode-region): Fix last change.
13544         (rfc2047-encode-parameter): Remove useless concat.
13545
13546 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13547
13548         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13549         encode special characters; fix some kind of misconfigured headers;
13550         signal a real error if debug-on-quit or debug-on-error is non-nil.
13551         (rfc2047-encode-max-chars): New variable.
13552         (rfc2047-encode-1): Use it.
13553         (rfc2047-encode-parameter): New function.
13554
13555         * mml.el (mml-insert-parameter): Remove an excessive space.
13556
13557 2004-07-17  Simon Josefsson  <jas@extundo.com>
13558
13559         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13560         Kai Grossjohann <kai@emptydomain.de>.
13561         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13562         (gnus-group-make-menu-bar): Ditto.
13563
13564         * gnus-util.el (gnus-group-server): Add.
13565
13566 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13567
13568         * message.el (message-clone-locals): Clone sendmail and smtp
13569         variables.
13570
13571 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13572
13573         * rfc2047.el (rfc2047-encode-region): Fix last change.
13574
13575 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13576
13577         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13578         characters as non-special.
13579
13580 2004-07-09  Simon Josefsson  <jas@extundo.com>
13581
13582         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13583         Users will lose all flag changes made while unplugged with
13584         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13585         good default.  See numerous reports on ding mailing list.
13586
13587 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13588
13589         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13590         add generate-head-function and generate-article-function to the
13591         rfc822-forward entry.
13592         (nndoc-rfc822-forward-generate-article): New function.
13593         (nndoc-rfc822-forward-generate-head): New function.
13594
13595         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13596
13597 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13598
13599         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13600         respect display group parameter and gnus-summary-expunge-below.
13601         (gnus-articles-to-read): Remove unused reference to display group
13602         parameter.
13603
13604 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13605
13606         * nnheader.el (nnheader-uniquify-message-id): New experimental
13607         variable.
13608         (nnheader-nov-read-message-id): Use it.
13609
13610         * spam-report.el (spam-report-gmane): Add interactive.
13611
13612 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13613
13614         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13615         qp-or-base64 for the application/* types.
13616
13617 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13618
13619         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13620
13621 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13622
13623         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13624         trim value.
13625
13626 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13627
13628         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13629         New macro and function.
13630         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13631
13632 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13633
13634         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13635         after-load-alist.
13636
13637 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13638
13639         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13640         update info that isn't there.
13641
13642 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13643
13644         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13645         entry.
13646
13647 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13648
13649         * mm-view.el (mm-inline-render-with-function): Use multibyte
13650         buffer; decode html source by charset.
13651
13652         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13653
13654         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13655         Mule-UCS is loaded under XEmacs.
13656         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13657
13658 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13659
13660         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13661
13662 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13663
13664         * mm-util.el (mm-coding-system-p): Return a coding-system.
13665         (mm-mime-mule-charset-alist): Use shift_jis instead of
13666         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13667         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13668         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13669         instead of japanese-shift-jis and iso-latin-1 respectively in
13670         order to share the default value with both Emacs and XEmacs-mule.
13671         (mm-mule-charset-to-mime-charset): Make
13672         mm-coding-system-priorities effective.
13673         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13674         while predicating of candidates upon the priorities.
13675
13676 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13677
13678         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13679         gnus-uu-invert-processable.
13680
13681         * gnus.el: Autoload gnus-uu-invert-processable.
13682
13683 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13684
13685         * mm-util.el (mm-with-multibyte-buffer): New macro.
13686
13687         * rfc2047.el (rfc2047-encode-string): Use it.
13688         (rfc2047-encode-region): Move point to the end of the region after
13689         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13690
13691 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13692
13693         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13694         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13695
13696 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13697
13698         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13699         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13700         Karl Chen <quarl@nospam.quarl.org>.
13701
13702 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13703
13704         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13705         invalid addresses.
13706
13707 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13708
13709         * spam.el: Change section markers, revise TODO list.
13710         (spam-backends): Make new master list of all installed backends.
13711         (spam-summary-exit-behavior): Add new variable to determine how
13712         messages moves are done at summary exit.
13713         (spam-move-spam-nonspam-groups-only)
13714         (spam-process-ham-in-nonham-groups)
13715         (spam-process-ham-in-spam-groups): Remove variables, the
13716         spam-summary-exit-behavior variable should be used to manage this
13717         behavior.
13718         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13719         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13720         and spam-old-spam-articles.
13721         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13722         Add empty variables, placeholders for the backends they represent.
13723         (spam-set-difference): Move, unchanged.
13724         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13725         unless the user has a processor variable.
13726         (spam-classifications, spam-classification-valid-p)
13727         (spam-backend-properties, spam-backend-property-valid-p)
13728         (spam-backend-function-type-valid-p)
13729         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13730         (spam-report-articles-gmane, spam-report-articles-resend):
13731         Remove functions, they are not needed.
13732         (spam-install-backend-super, spam-backend-list)
13733         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13734         (spam-backend-function, spam-backend-ham-registration-function)
13735         (spam-backend-spam-registration-function)
13736         (spam-backend-ham-unregistration-function)
13737         (spam-backend-spam-unregistration-function)
13738         (spam-backend-statistical-p, spam-backend-mover-p)
13739         (spam-install-backend-alias, spam-install-checkonly-backend)
13740         (spam-install-mover-backend, spam-install-nocheck-backend)
13741         (spam-install-backend, spam-install-statistical-backend)
13742         (spam-install-statistical-checkonly-backend): Add backend installation
13743         support.
13744         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13745         (spam-group-processor-p): Use the new backend code and respect the
13746         summary exit behavior.
13747         (spam-mark-spam-as-expired-and-move-routine): Remove.
13748         (spam-summary-prepare): Change to use the new spam-old-articles
13749         variable.
13750         (spam-copy-or-move-routine, spam-copy-spam-routine)
13751         (spam-move-spam-routine, spam-copy-ham-routine)
13752         (spam-move-ham-routine): Add code to copy/move ham or spam.
13753         (spam-fetch-field-fast): Improve doc and code, plus allow the
13754         'number request.
13755         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13756         variables.
13757         (spam-split, spam-find-spam): Use the new backend code.
13758         (spam-registration-functions): Remove variable.
13759         (spam-unregister-routine): Add convenience wrapper.
13760         (spam-log-undo-registration, spam-register-routine)
13761         (spam-log-processing-to-registry)
13762         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13763         where possible.
13764         (spam-check-gmane-xref, spam-check-regex-headers)
13765         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13766         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13767         (spam-check-bogofilter-headers, spam-check-spamoracle)
13768         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13769         (spam-check-crm114-headers): Use the spam-split-group that
13770         spam-split prepares, no need to determine it every time.
13771
13772         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13773         to the nnheader-parse-naked-head call.
13774
13775         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13776
13777         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13778         the nnheader-nov-read-message-id call.
13779
13780 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13781
13782         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13783         gnus-activate-group twice.  Suggested by Markus Peter
13784         <warp@spin.de>.
13785
13786 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13787
13788         * gnus-art.el (gnus-article-time-format): Exchange the order of
13789         day and month in the default value; fix customization type.
13790         (article-date-ut): Use add-text-properties.
13791         (article-make-date-line): Use message-make-date instead of
13792         current-time-string.
13793
13794         * message.el (message-fetch-field): Don't use set-text-properties.
13795         (message-make-date): Simplify.
13796
13797         * messagexmas.el (message-xmas-make-date): New function.
13798         (message-xmas-redefine): Defalias message-make-date to it.
13799
13800 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13801
13802         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13803         (rfc2047-encode-region): Treat text within parentheses as special;
13804         show the original text when error has occurred.
13805
13806         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13807         already-computed method to gnus-activate-group.
13808
13809         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13810         same select-methods identical Lisp objects.
13811
13812         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13813         object when modifying the info.
13814
13815 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13816
13817         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13818         gnus-opened-servers since it has never been opened with the new
13819         configuration yet.
13820
13821 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13822
13823         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13824         arg to nnheader-generate-fake-message-id.
13825
13826 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13827
13828         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13829         number and build a fake message ID localized to a group and
13830         article number (so it's repeatable from that point on).
13831         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13832         ID format.
13833
13834         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13835         nnheader-generate-fake-message-id with the article number.
13836
13837 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13838
13839         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13840         end-of-buffer.
13841
13842 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13843
13844         * message.el (message-ignored-supersedes-headers): Add Approved.
13845
13846 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13847
13848         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13849         goto-char.
13850         (rfc2047-encode): Fold the line before encoding.
13851
13852 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13853
13854         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13855         folding -- not all headers can be folded, and this should be done
13856         by the message composition mode.  Probably.  I think.
13857
13858 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13859
13860         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13861         fast.
13862
13863         * gnus-ems.el (gnus-remove-image): Don't use
13864         message-text-with-property; remove only the image found first.
13865
13866         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
13867         found first.
13868
13869 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
13870
13871         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
13872
13873 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13874
13875         * message.el (message-text-with-property): Make it fast and accept
13876         optional arguments.
13877         (message-strip-forbidden-properties): Use it.
13878         (message-fix-before-sending): Follow the m-t-w-p change.
13879
13880         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
13881
13882 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13883
13884         * gnus-art.el (article-hide-headers): Don't change the buffer
13885         mistakenly when performing mml-preview even if
13886         gnus-single-article-buffer is nil.
13887
13888 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
13889
13890         * message.el (message-expand-name-databases): New user option.
13891         (message-expand-name): Use it.
13892
13893 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
13894
13895         * spam.el (spam-report-articles-resend)
13896         (spam-report-resend-register-routine): Allow ham reporting.
13897         (spam-report-resend-register-ham-routine): Add wrapper.
13898         (spam-registration-functions): Add ham resending functions.
13899         (spam-list-of-processors): Add ham resend processor.
13900
13901         * gnus.el (ham-resend-to): Add new group parameter.
13902         (spam-process): Add ham resend option.
13903
13904         * spam-report.el (spam-report-resend): Allow reporting ham.
13905         (spam-report-resend-ham): Add wrapper.
13906
13907 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13908
13909         * message.el (message-cite-articles-with-x-no-archive): New
13910         variable.
13911         (message-cite-original): Use it.
13912
13913 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13914
13915         * message.el (message-cite-original): Respect X-No-Archive.
13916
13917 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13918
13919         * gnus-art.el (article-hide-headers): Refer to the values for
13920         gnus-ignored-headers and gnus-visible-headers in the summary
13921         buffer since a user may have set them as group parameters.
13922
13923 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
13924
13925         * assistant.el (assistant-node-name): Add convenience function.
13926         (assistant-render-text, assistant-render-node): Add error handling,
13927         plus handle multiple next nodes.
13928         (assistant-find-next-node): Comment out for now.
13929         (assistant-find-next-nodes): Add function, returns list of next
13930         nodes.
13931
13932 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
13933
13934         * mail-source.el (mail-source-directory): Fix doc-string.
13935
13936 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
13937
13938         * assistant.el (assistant-render-text, assistant-eval): Add :set
13939         widget type, which is different because it takes and returns a
13940         list.  Much hilarity ensues.
13941
13942 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
13943
13944         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
13945
13946         * gnus-group.el (gnus-group-get-new-news-this-group): Added
13947         doc-string.
13948
13949         * gnus-start.el (gnus-activate-group): Added doc-string.
13950
13951 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13952
13953         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
13954
13955 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
13956
13957         * assistant.el (assistant-render-text): Try to add a :set
13958         widget, more to come.
13959
13960         * spam.el (spam-group-spam-contents-p): Handle empty groupname
13961         strings.
13962         (spam-report-articles-resend)
13963         (spam-register-routine): Do registration iff any articles warrant
13964         it.
13965         (spam-summary-prepare-exit): Change log message for nil group
13966         destinations.
13967
13968 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
13969
13970         * spam.el (spam-report-resend-register-routine): Allow
13971         spam-report-resend-to to be a group parameter or a global value.
13972
13973 2004-05-26  Simon Josefsson  <jas@extundo.com>
13974
13975         * starttls.el: Merge with my GNUTLS based starttls.el.
13976         (starttls-gnutls-program, starttls-use-gnutls)
13977         (starttls-extra-arguments, starttls-process-connection-type)
13978         (starttls-connect, starttls-failure, starttls-success): New
13979         variables.
13980         (starttls-program, starttls-extra-args): Doc fix.
13981         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
13982         functions.
13983         (starttls-negotiate, starttls-open-stream): Check
13984         `starttls-use-gnutls' and pass on to corresponding *-gnutls
13985         function if it is set.
13986
13987 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13988
13989         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
13990         structured fields.
13991
13992 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13993
13994         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
13995
13996 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
13997
13998         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
13999         variable.
14000         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14001         assigning the spam-mark to new messages.
14002
14003 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14004
14005         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14006
14007 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14008
14009         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14010
14011         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14012         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14013         default.
14014
14015 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14016
14017         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14018         correct data.
14019
14020 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14021
14022         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14023         (spam-group-processor-p): Fix function.
14024         (spam-group-processor-multiple-p)
14025         (spam-group-spam-processor-report-gmane-p)
14026         (spam-group-spam-processor-report-resend-p)
14027         (spam-group-spam-processor-bogofilter-p)
14028         (spam-group-spam-processor-blacklist-p)
14029         (spam-group-spam-processor-ifile-p)
14030         (spam-group-ham-processor-ifile-p)
14031         (spam-group-spam-processor-spamoracle-p)
14032         (spam-group-spam-processor-crm114-p)
14033         (spam-group-ham-processor-bogofilter-p)
14034         (spam-group-spam-processor-stat-p)
14035         (spam-group-ham-processor-stat-p)
14036         (spam-group-ham-processor-whitelist-p)
14037         (spam-group-ham-processor-BBDB-p)
14038         (spam-group-ham-processor-spamoracle-p)
14039         (spam-group-ham-processor-copy-p): Remove functions with some
14040         prejudice against unneeded code.
14041         (spam-report-articles-resend)
14042         (spam-report-resend-register-routine): Allow the group/topic
14043         spam-resend-to value to override spam-report-resend-to.
14044         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14045         properly now.
14046
14047         * gnus.el (spam-resend-to): Add group/topic parameter.
14048         (spam-process): Move the OBSOLETE processors to the end of the
14049         choices.
14050
14051 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14052
14053         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14054         with resend-to set to nil, and then ask the user if necessary.
14055         (spam-report-resend): spam-report-resend takes a list of articles, not
14056         separate article numbers.
14057
14058 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14059
14060         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14061         addition to emacs-w3m.
14062
14063 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14064
14065         * assistant.el (assistant-authinfo-data): New function.
14066         (assistant-eval): Eval for entire assistant.
14067
14068         * netrc.el (netrc-services-file): New variable.
14069         (netrc-parse-services): New function.
14070         (netrc-find-service-name): New function.
14071         (netrc-find-service-number): New function.
14072         (netrc-port-equal): New function.
14073         (netrc-machine): Use it.
14074
14075         * nnimap.el (nnimap-open-connection): Use netrc.
14076
14077         * gnus-util.el (gnus-netrc-get): Remove aliases.
14078
14079         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14080
14081         * assistant.el (wid-edit): Fix compilation.
14082
14083         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14084
14085 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14086
14087         * gnus-util.el (gnus-set-file-modes): New function.  (small
14088         patch).
14089
14090 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14091
14092         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14093
14094         * assistant.el (assistant-render-node): Fix up rendering and
14095         read-only text.
14096         (assistant-render-node): Reset.
14097         (assistant-make-read-only): Not sticky.
14098
14099 2004-05-20  Danny Siu  <dsiu@adobe.com>
14100
14101         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14102         centered even when gnus-auto-center-summary is t.
14103
14104 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14105
14106         * dns.el (dns-get-txt-answer): New function.
14107         (dns-read-txt): Ditto.
14108         (query-dns): Use it.
14109
14110 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14111
14112         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14113         active for foreign groups even if the group level is higher than
14114         the specified value.
14115
14116 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14117
14118         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14119         non-active groups.
14120
14121         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14122
14123 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14124
14125         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14126
14127 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14128
14129         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14130         (spam-crm114-header, spam-crm114-spam-switch)
14131         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14132         (spam-crm114-positive-spam-header)
14133         (spam-crm114-database-directory, spam-list-of-processors)
14134         (spam-group-spam-processor-crm114-p)
14135         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14136         (spam-generic-score, spam-list-of-checks)
14137         (spam-list-of-statistical-checks, spam-registration-functions)
14138         (spam-check-crm114-headers, spam-crm114-score)
14139         (spam-check-crm114, spam-crm114-register-with-crm114)
14140         (spam-crm114-register-spam-routine)
14141         (spam-crm114-unregister-spam-routine)
14142         (spam-crm114-register-ham-routine)
14143         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14144         asjo@koldfront.dk (Adam Sjøgren).
14145
14146         * gnus.el: Add spam-use-crm114.
14147
14148         * spam.el (spam-list-of-processors, spam-registration-functions):
14149         Add spam-use-resend.
14150         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14151         (spam-report-articles-gmane): Add doc fix.
14152         (spam-report-articles-resend, spam-report-resend-register-routine):
14153         Add wrappers around spam-report-resend-to.
14154
14155         * spam-report.el (spam-report-resend-to, spam-report-resend):
14156         Add support for resending spam.
14157         (spam-report-gmane): Fix line length >80.
14158
14159         * gnus.el (spam-process): Add spam-use-resend.
14160
14161 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14162
14163         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14164         number of processed spam messages.
14165         (spam-ham-copy-or-move-routine): Return the number of processed
14166         ham messages.
14167         (spam-summary-prepare-exit): Use the above values to decide
14168         whether status messages shouled be displayed.
14169
14170 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14171
14172         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14173         `rfc2047-encoding-function-alist' in order to avoid conflicting
14174         with the old version.
14175         (rfc2047-encode-region): Concatenate words containing non-ASCII
14176         characters in structured fields; don't encode space-delimited
14177         ASCII words even in unstructured fields; don't break words at
14178         char-category boundaries.
14179         (rfc2047-encode-1): New function.
14180         (rfc2047-encode): Use it; encode text so that it occupies the
14181         maximum width within 76-column; work correctly on Q encoding for
14182         iso-2022-* charsets.
14183         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14184         sure not to break a line just after the header name.
14185         (rfc2047-b-encode-region): Removed.
14186         (rfc2047-b-encode-string): New function.
14187         (rfc2047-q-encode-region): Removed.
14188         (rfc2047-q-encode-string): New function.
14189
14190         * mm-util.el (mm-replace-in-string): New function.
14191
14192 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14193
14194         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14195         get it right.
14196         (gnus-inews-make-draft): Really.
14197
14198 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14199
14200         * nnmh.el (nnmh-request-list-1): Don't check the link count
14201         before descending.  (small patch)
14202
14203 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14204
14205         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14206         stuff.
14207
14208         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14209         on real group name.
14210
14211         * gnus-art.el (gnus-signature-limit): Doc fix.
14212
14213         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14214
14215         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14216
14217 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14218
14219         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14220         isn't a string.
14221
14222 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14223
14224         * gnus-draft.el (gnus-draft-send): Bind
14225         rfc2047-encode-encoded-words.
14226
14227         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14228         (rfc2047-encodable-p): Say that =? needs encoding.
14229         (rfc2047-encode-encoded-words): New variable.
14230
14231         * gnus-group.el (gnus-group-select-group): Doc fix.
14232
14233         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14234
14235         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14236         to nil.
14237
14238         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14239
14240         * nnheader.el (nnheader-get-lines-and-char): New function.
14241
14242 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14243
14244         * gnus-msg.el (gnus-summary-followup-with-original): Document
14245         yanking of region when active.
14246
14247 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14248
14249         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14250         groups if the group level is higher than the specified value.
14251
14252 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14253
14254         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14255         (gnus-group-jump-to-group): Added prefix argument using
14256         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14257         non-active group.
14258
14259         * compface.el (uncompface): Be verbose when changing
14260         `uncompface-use-external'.
14261
14262         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14263         handle manual section.
14264
14265 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14266
14267         * gnus-art.el (gnus-button-alist): Revert previous change.
14268
14269 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14270
14271         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14272
14273 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14274
14275         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14276         whether backend can accept message.
14277
14278         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14279
14280 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14281
14282         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14283         Avoid creating directory when nntp-marks-is-evil is true.
14284         Reported by Reiner Steib.
14285
14286 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14287
14288         * gnus-picon.el (gnus-picon-style): New variable.
14289         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14290         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14291         Jesper Harder <harder@ifa.au.dk>.
14292
14293 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14294
14295         * message.el (message-fill-field): Return point.
14296         (message-generate-headers): Go to end of field.
14297
14298         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14299         stuff for non-living groups.
14300
14301 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14302
14303         * gnus-art.el (gnus-article-followup-with-original)
14304         (gnus-article-reply-with-original): gnus-mark-active-p ->
14305         gnus-region-active-p.
14306
14307 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14308
14309         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14310         only when there is spam or ham to be processed.
14311
14312 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14313
14314         * mail-source.el (mail-source-delete-crash-box): Refactor.
14315         (mail-source-fetch): Use it.
14316         (mail-source-fetch-file): Ditto.
14317         (mail-source-fetch-directory): Run postscript in loop.
14318         (mail-source-fetch-pop): Delete.
14319         (mail-source-fetch-maildir): Ditto.
14320         (mail-source-fetch-imap): Ditto.
14321
14322         * imap.el (imap-authenticators): Comment out sasl.
14323
14324         * message.el (message-skip-to-next-address): New function.
14325         (message-fill-header-address): Refactor.
14326         (message-fill-address): Use it.
14327         (message-delete-address): Use it.
14328         (message-fill-header-general): Refactor.
14329         (message-fill-field-address): Rename.
14330         (message-narrow-to-field): Find the start of the header.
14331         (message-header-format-alist): Don't pre-fill.
14332         (message-fill-header): Removed.
14333         (message-insert-header): New function.
14334         (message-shorten-references): Use it.
14335
14336         * rfc2047.el (rfc2047-field-value): Strip props.
14337
14338         * mail-parse.el (mail-header-make-address): New alias.
14339
14340         * ietf-drums.el (ietf-drums-make-address): New function.
14341
14342         * imap.el: Add compiler directives.
14343
14344         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14345
14346         * gnus-art.el (article-decode-idna-rhs): Don't use
14347         message-idna-inside-rhs-p.
14348
14349 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14350
14351         * message.el (message-idna-inside-rhs-p): Removed.
14352         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14353
14354         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14355         false positives.
14356
14357 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14358
14359         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14360
14361 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14362
14363         * nneething.el (nneething-file-name): Don't create spurious
14364         files.
14365
14366         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14367         (gnus-inews-do-gcc): Remove sleep.
14368
14369         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14370         part under point.
14371
14372         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14373         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14374
14375 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14376
14377         * spam.el (spam-summary-prepare-exit): Fixed (length).
14378
14379 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14380
14381         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14382         as expired without moving it" message when there are spam
14383         messages left.
14384
14385 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14386
14387         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14388         header is not nil.
14389
14390 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14391
14392         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14393         nntp-possibly-create-directory, not nntp-possibly-change-group.
14394         (nntp-marks-changed-p): New arg SERVER.
14395         (nntp-request-update-info): Adjust caller.
14396
14397 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14398
14399         * nntp.el (nntp-save-marks): Pass missing arg.
14400
14401 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14402
14403         * nntp.el: Support marks.
14404         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14405         (nntp-marks-modtime, nntp-marks-directory): New variables.
14406         (nntp-request-set-mark, nntp-request-update-info)
14407         (nntp-possibly-create-directory, nntp-marks-changed-p)
14408         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14409         functions.
14410
14411 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14412
14413         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14414         (gnus-xmas-redefine): Rename.
14415
14416         * gnus-score.el (gnus-score-insert-help): Use
14417         gnus-select-lowest-window.
14418
14419         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14420         appt-select-lowest-window and rename to gnus-select-lowest-window.
14421
14422         * gnus.el: do.
14423
14424 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14425
14426         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14427         encodings of MIME-encoded words, in order to improve
14428         interoperability with several broken MUAs.
14429
14430 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14431
14432         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14433         tags, only when charsets are not specified in headers.
14434         (mm-inline-text-html-render-with-w3m): Ditto.
14435
14436         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14437         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14438
14439 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14440
14441         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14442         instead of MIME-decoded from fields when checking
14443         `gnus-article-address-banner-alist'.
14444
14445 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14446
14447         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14448         description rather than subject.
14449
14450 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14451
14452         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14453
14454 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14455
14456         * gnus.el (gnus-version-number): Bump.
14457
14458 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14459
14460         * gnus.el: No Gnus v0.2 is released.
14461
14462 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14463
14464         * gnus-agent.el (gnus-agent-read-agentview): Inline
14465         gnus-uncompress-range.
14466
14467 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14468
14469         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14470         `exec-installed-p'.
14471
14472 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14473
14474         * gnus.el (spam-process, spam-autodetect-methods): Add
14475         bsfilter and bsfilter-headers.
14476
14477         * spam.el (spam-bsfilter): New customize group.
14478         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14479         (spam-bsfilter-header, spam-bsfilter-probability-header)
14480         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14481         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14482         (spam-bsfilter-database-directory): New options.
14483         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14484         (spam-list-of-statistical-checks, spam-registration-functions):
14485         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14486         (spam-bsfilter-score): New command.
14487         (spam-check-bsfilter-headers, spam-check-bsfilter)
14488         (spam-bsfilter-register-with-bsfilter)
14489         (spam-bsfilter-register-spam-routine)
14490         (spam-bsfilter-unregister-spam-routine)
14491         (spam-bsfilter-register-ham-routine)
14492         (spam-bsfilter-unregister-ham-routine): New functions.
14493         (spam-generic-score): Support bsfilter; Accept an optional argument
14494         to recalcurate spam score even if scoring header has already been
14495         added.
14496         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14497         optional argument to recalcurate spam score even if scoring header
14498         has already been added.
14499
14500 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14501
14502         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14503         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14504         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14505         link is missing.
14506
14507 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14508
14509         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14510         (html2text-get-attr): Rewrite.
14511
14512         * message.el (message-setup-1): Remove redundant put-text-property
14513         on mail-header-separator.
14514
14515 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14516
14517         * gnus-registry.el (gnus-registry-cache-whitespace)
14518         (gnus-registry-action, gnus-registry-spool-action)
14519         (gnus-registry-split-fancy-with-parent): Change message levels
14520         from 5 to 3 or 7, as needed.
14521
14522         * spam.el (spam-summary-prepare-exit)
14523         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14524         (spam-split, spam-find-spam, spam-log-undo-registration)
14525         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14526         level from 5 to 6.
14527
14528 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14529
14530         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14531         2004-03-04 change).
14532
14533 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14534
14535         * sieve-manage.el (sieve-manage-open):
14536         * nnweb.el (nnweb-insert-html):
14537         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14538         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14539         * nnspool.el (nnspool-request-group):
14540         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14541         * nnml.el (nnml-request-update-info):
14542         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14543         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14544         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14545         (nnimap-request-set-mark):
14546         * nnfolder.el (nnfolder-request-update-info):
14547         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14548         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14549         * gnus-uu.el (gnus-uu-find-articles-matching):
14550         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14551         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14552         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14553         * gnus-nocem.el (gnus-nocem-scan-groups):
14554         * gnus-int.el (gnus-start-news-server):
14555         * gnus-group.el (gnus-group-make-kiboze-group)
14556         (gnus-group-browse-foreign-server):
14557         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14558         Use mapc when appropriate.
14559
14560 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14561
14562         FIXME: Make separate entries for each person.
14563
14564         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14565         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14566         <shields@msrl.com>:
14567
14568         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14569         may need for spam sorting and scoring.
14570         (spam-user-format-function-S): Add user format function suitable for
14571         general use.
14572         (spam-article-sort-by-spam-status): Add sorting function for summary
14573         sorting.
14574         (spam-extra-header-to-number): Add function to get a score from a
14575         header.
14576         (spam-summary-score): Add function to get a numeric score from the
14577         headers.
14578         (spam-generic-score): Fix function doc, was in wrong place.
14579         (spam-initialize): Take symbols when it's run, and install the
14580         extra headers that spam-necessary-extra-headers thinks we need.
14581
14582 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14583
14584         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14585         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14586
14587 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14588
14589         * gnus-sum.el (gnus-set-global-variables)
14590         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14591         (gnus-article-get-xrefs, gnus-summary-best-group)
14592         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14593         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14594         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14595         Use with-current-buffer.
14596
14597 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14598
14599         * spam.el (spam-summary-prepare-exit): Simplify logic.
14600         (spam-fetch-article-header): Read the article header if it's not
14601         available.
14602         (spam-list-articles): Simplify logic.
14603         (spam-filelist-register-routine): Fix bug with unregister-list.
14604
14605         * gnus-registry.el: Fix comments at beginning.
14606
14607 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14608
14609         * message.el (message-cater-to-broken-inn): Remove.
14610         (message-shorten-references): Make sure the total folded length of
14611         References is shorter than 998 characters to cater to a bug in INN
14612         2.3.  Also, don't pretend that references aren't folded -- this
14613         hasn't worked for a while.
14614
14615 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14616
14617         * gnus-agent.el (gnus-agentize):
14618         gnus-agent-send-mail-real-function no longer set to current value
14619         of message-send-mail-function but rather a lambda that calls
14620         message-send-mail-function.  The change makes the agent real-time
14621         responsive to user changes to message-send-mail-function.
14622
14623 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14624
14625         * legacy-gnus-agent.el
14626         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14627         help from Florian Weimer <fw@deneb.enyo.de>
14628
14629 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14630
14631         * nnmail.el (nnmail-cache-insert): Revert last change.
14632
14633 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14634
14635         * nnmail.el (nnmail-cache-insert): Always check whether
14636         nnmail-cache-ignore-groups matches a group name.
14637
14638 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14639
14640         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14641         (spam-find-spam, spam-log-processing-to-registry)
14642         (spam-log-registered-p, spam-log-unregistration-needed-p)
14643         (spam-log-undo-registration): Use gnus-message instead of
14644         gnus-error, none of these errors are fatal.
14645
14646         * gnus-registry.el (gnus-registry-clean-empty-function)
14647         (gnus-registry-clean-empty): Remove only empty entries without
14648         extra data.
14649
14650 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14651
14652         * spam-stat.el (spam-stat-buffer-change-to-spam)
14653         (spam-stat-buffer-change-to-non-spam): Change (error) to
14654         (gnus-message 8) invocation.
14655
14656 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14657
14658         * nntp.el (nntp-via-netcat-command): New variable.
14659         (nntp-via-netcat-switches): New variable.
14660         (nntp-open-via-rlogin-and-netcat): New function.
14661         (nntp-open-connection-function): Doc fix.
14662         (nntp-telnet-command): Doc fix.
14663         (nntp-end-of-line): Doc fix.
14664         (nntp-via-rlogin-command): Doc fix.
14665         (nntp-via-user-name): Doc fix.
14666         (nntp-via-address): Doc fix.
14667
14668 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14669
14670         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14671         error in Emacs 21.1.
14672
14673 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14674
14675         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14676
14677 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14678
14679         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14680         (gnus-agent-with-refreshed-group): New macro.
14681         (gnus-agent-rename-group): New function.
14682         (gnus-agent-delete-group): New function.
14683         (gnus-agent-save-group-info): Use gnus-command-method when
14684         `method' parameter is nil.  Don't write nil entries into the
14685         active file.
14686         (gnus-agent-get-group-info): New function.
14687         (gnus-agent-fetch-articles): Use
14688         gnus-agent-update-files-total-fetched-for to increment disk space
14689         used.
14690         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14691         gnus-agent-update-view-total-fetched-for to increment disk space
14692         used.
14693         (gnus-agent-get-local): Added optional parameters to avoid calling
14694         gnus-group-real-name and gnus-find-method-for-group.
14695         (gnus-agent-set-local): Delete stored entry if either min, or max,
14696         are nil.
14697         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14698         quit, use gnus-agent-regenerate-group to record existance of any
14699         articles fetched to disk before the quit occurred.
14700         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14701         gnus-agent-update-view-total-fetched-for, and
14702         gnus-agent-update-files-total-fetched-for to decrement disk space
14703         used.
14704         (gnus-agent-retrieve-headers): Use
14705         gnus-agent-update-view-total-fetched-for to increment disk space
14706         used.
14707         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14708         with gnus-agent-update-files-total-fetched-for to decrement disk
14709         space and fresh group buffer.
14710         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14711         (gnus-agent-need-update-total-fetched-for): New variable.
14712         (gnus-agent-update-files-total-fetched-for): New function.
14713         (gnus-agent-update-view-total-fetched-for): New function.
14714         (gnus-agent-total-fetched-for): New function.
14715
14716         * gnus-cache.el (gnus-cache-save-buffers): Use
14717         gnus-cache-update-overview-total-fetched-for to change disk space
14718         used by this group.
14719         (gnus-cache-possibly-enter-article): Use
14720         gnus-cache-update-file-total-fetched-for to increment disk space
14721         used by this group.
14722         (gnus-cache-possibly-remove-article): Use
14723         gnus-cache-update-file-total-fetched-for to decrement disk space
14724         used by this group.
14725         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14726         (gnus-cache-rename-group): New function.
14727         (gnus-cache-delete-group): New function.
14728         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14729         (gnus-cache-need-update-total-fetched-for): New variable.
14730         (gnus-cache-with-refreshed-group): New macro.
14731         (gnus-cache-update-file-total-fetched-for): New function.
14732         (gnus-cache-update-overview-total-fetched-for): New function.
14733         (gnus-cache-rename-group-total-fetched-for): New function.
14734         (gnus-cache-delete-group-total-fetched-for): New function.
14735         (gnus-cache-total-fetched-for): New function.
14736
14737         * gnus-group.el: Require gnus-sum and autoload functions to
14738         resolve warnings when gnus-group.el compiled alone.
14739         (gnus-group-line-format): Documented new %F.
14740         (size of Fetched data) group line format; identifies disk space
14741         used by agent and cache.
14742         (gnus-group-line-format-alist): Defined new F format.
14743         (gnus-total-fetched-for): New function.
14744         (gnus-group-delete-group): No longer update
14745         gnus-cache-active-altered as gnus-request-delete-group now keeps
14746         the cache in sync.
14747         (gnus-group-list-active): Let the agent store a server's active
14748         list if currently plugged.
14749
14750         * gnus-int.el (gnus-request-delete-group):
14751         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14752         local disk in sync with the server.
14753         (gnus-request-rename-group):
14754         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14755         local disk in sync with the server.
14756
14757         * gnus-start.el (gnus-get-unread-articles):
14758         Cosmetic simplification to logic.
14759
14760         * gnus-util.el (gnus-rename-file): New function.
14761
14762 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14763
14764         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14765
14766 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14767
14768         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14769         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14770
14771 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14772
14773         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14774         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14775
14776 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14777
14778         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14779
14780 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14781
14782         * spam.el (spam-set-difference): Add function to replace
14783         gnus-set-difference in spam.el.
14784         (spam-summary-prepare-exit): Use spam-set-difference.
14785
14786 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14787
14788         * gnus-registry.el (gnus-registry-cache-file): Update to use
14789         gnus-dribble-directory OR gnus-home-directory OR ~.
14790         (gnus-registry-split-fancy-with-parent): Fix doc.
14791
14792 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14793
14794         * message.el (message-exchange-point-and-mark): Use
14795         message-mark-active-p.  Suggested by Jesper Harder
14796         <harder@ifa.au.dk>.
14797
14798 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14799
14800         * message.el (message-exchange-point-and-mark): Don't activate
14801         region if it was inactive.  Suggested by Hiroshi Fujishima
14802         <pooh@nature.tsukuba.ac.jp>.
14803
14804 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14805
14806         * gnus-art.el (article-display-face): Display Faces in the same
14807         order as X-Faces.
14808
14809 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14810
14811         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14812
14813 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14814
14815         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14816         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14817         (gnus-article-mime-hierarchy): Remove.
14818         (gnus-article-mime-hierarchy-next): Remove.
14819         (gnus-article-mode): Revert 2004-03-19 change.
14820         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14821         (gnus-insert-mime-button): Revert 2004-03-19 change.
14822         (gnus-mime-accumulate-hierarchy): Remove.
14823         (gnus-mime-enter-multipart): Remove.
14824         (gnus-mime-leave-multipart): Remove.
14825         (gnus-mime-display-part): Revert 2004-03-19 change.
14826         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14827
14828         * mml.el (mml-preview): Revert 2004-03-19 change.
14829
14830 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14831
14832         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14833
14834 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14835
14836         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14837         t while entering a file name using the mm-with-multibyte macro.
14838         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14839
14840         * mm-util.el (mm-with-multibyte): New macro.
14841
14842 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14843
14844         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14845         user option.
14846         (gnus-mime-multipart-functions): Doc and customization fix.
14847         (gnus-article-mime-hierarchy): New variable.
14848         (gnus-article-mime-hierarchy-next): New variable.
14849         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14850         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14851         gnus-article-mime-hierarchy-next to nil.
14852         (gnus-insert-mime-button): Show hierarchy numbers.
14853         (gnus-mime-accumulate-hierarchy): New function.
14854         (gnus-mime-enter-multipart): New function.
14855         (gnus-mime-leave-multipart): New function.
14856         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14857         (gnus-mime-display-alternative): Show hierarchy numbers.
14858
14859         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14860         gnus-article-mime-hierarchy-next to nil.
14861
14862 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
14863
14864         * dns.el: Don't require gnus-xmas.
14865
14866 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
14867
14868         * mml.el (mml-generate-mime-1): Don't use format=flowed with
14869         inline PGP.
14870         (mml-menu): Disable mml-quote-region if mark is inactive.
14871
14872 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14873
14874         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
14875         when the group's active is not available.
14876
14877 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14878
14879         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
14880         error.
14881
14882 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
14883
14884         * imap.el (imap-store-password): New variable.
14885         (imap-interactive-login): Use it.
14886         Suggested by Mark Plaksin <happy@mcplaksin.org>.
14887
14888 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14889
14890         * gnus-art.el (gnus-article-read-summary-keys): Restore new
14891         window-start and hscroll to summary window.
14892
14893 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14894
14895         * gnus-start.el (gnus-convert-old-newsrc): Only write the
14896         conversion message to newsrc-dribble when an actual conversion is
14897         performed.
14898
14899 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
14900
14901         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
14902
14903 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14904
14905         * mm-decode.el (mm-complicated-handles): New function reviving
14906         former definition of mm-multiple-handles.
14907
14908         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
14909         (gnus-mime-delete-part): Use it.
14910
14911 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14912
14913         * gnus-agent.el (gnus-agent-read-local): Bind
14914         nnheader-file-coding-system to gnus-agent-file-coding-system to
14915         avoid the implicit assumption that they will always be equal.
14916         (gnus-agent-save-local): Bind buffer-file-coding-system, not
14917         coding-system-for-write, as the with-temp-file macro first prints
14918         to a buffer then saves the buffer.
14919
14920 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14921
14922         * gnus-art.el (gnus-article-edit-part): New function.
14923         (gnus-mime-save-part-and-strip): Use it; do query instead of
14924         signaling an error; don't use mm-multiple-handles.
14925         (gnus-mime-delete-part): Ditto.
14926
14927 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14928
14929         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
14930         old file versions.
14931         (gnus-group-prepare-hook): Removed function that converted list
14932         form of gnus-agent-expire-days to group properties.
14933
14934         * gnus-int.el: Autoload gnus-agent-regenerate-group.
14935         (gnus-request-accept-article): Re-indented.
14936
14937         * gnus-start.el (gnus-convert-old-newsrc): Registered new
14938         converters to handle old agent file formats.  Added logic for a
14939         "backup before upgrading warning".
14940         (gnus-convert-mark-converter-prompt): Developers can mark
14941         functions as needing (default), or not needing,
14942         gnus-convert-old-newsrc's "backup before upgrading warning".
14943         (gnus-convert-converter-needs-prompt): Tests whether the user
14944         should be protected from potentially irreversable changes by the
14945         function.
14946
14947         * legacy-gnus-agent.el: New.  Provides converters that are only
14948         loaded when gnus-convert-old-newsrc needs to call them.
14949
14950 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14951
14952         * mail-source.el (mail-source-touch-pop): Doc fix.
14953
14954         * message.el (message-smtpmail-send-it): Doc fix.
14955
14956 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
14957
14958         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
14959
14960         * nnmail.el (nnmail-split-fancy): do.
14961
14962         * gnus-kill.el (gnus-kill, gnus-execute): do.
14963
14964 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
14965
14966         * gnus-sum.el (gnus-widget-reversible-match)
14967         (gnus-widget-reversible-to-internal)
14968         (gnus-widget-reversible-to-external): New functions.
14969         (gnus-widget-reversible): New widget.
14970         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
14971
14972 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
14973
14974         * gnus-sum.el (gnus-thread-sort-functions)
14975         (gnus-article-sort-functions): Document `(not F)' items.
14976
14977 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
14978
14979         * spam.el (spam-use-gmane-xref): Add new backend.
14980         (spam-gmane-xref-spam-group): Add variable to control the name of the
14981         Gmane spam group.
14982         (spam-blackhole-servers, spam-blackhole-good-server-regex)
14983         (spam-regex-headers-spam, spam-regex-headers-ham)
14984         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
14985         (spam-list-of-checks): Add spam-use-gmane-xref to list of
14986         backends and checks.
14987         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
14988
14989         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
14990         an autodetect method.
14991
14992 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14993
14994         * gnus-int.el (gnus-request-accept-article): Inform the agent that
14995         articles are being added to a group.
14996         (gnus-request-replace-article): Inform the agent that articles
14997         need to be uncached as the cached contents are no longer valid.
14998
14999 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15000
15001         * binhex.el: Don't autoload executable-find.
15002
15003         * canlock.el: Don't autoload mail-fetch-field.
15004
15005         * dgnushack.el: Autoload c-mode for XEmacs.
15006
15007         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15008
15009         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15010         rmail-dont-reply-to and rmail-output.
15011
15012         * gnus-score.el: Don't autoload ffap-string-at-point.
15013
15014         * gnus-setup.el: Don't autoload sc-cite-original.
15015
15016         * imap.el: Don't autoload base64-decode-string,
15017         base64-encode-string and md5.
15018
15019         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15020         and rmail-msg-restore-non-pruned-header.
15021
15022         * mm-decode.el: Don't autoload executable-find.
15023
15024         * mm-url.el: Don't autoload executable-find.
15025
15026         * mm-view.el: Don't autoload diff-mode.
15027
15028         * nndb.el: Don't autoload news-reply-mode, news-setup,
15029         cancel-timer and telnet.
15030
15031         * password.el: Don't autoload run-at-time for Emacs.
15032
15033         * sha1-el.el: Don't autoload executable-find.
15034
15035         * sieve-mode.el: Don't autoload c-mode.
15036
15037         * uudecode.el: Don't autoload executable-find.
15038
15039 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15040
15041         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15042         (gnus-agent-possibly-alter-active): Avoid null in numeric
15043         comparison.
15044         (gnus-agent-set-local): Refuse to save null in local object table.
15045         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15046         list of articles that will be marked as unread.
15047
15048 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15049
15050         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15051
15052 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15053
15054         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15055         language tags.
15056
15057 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15058
15059         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15060         Don't bind "obarray".
15061
15062         * gnus-sum.el (gnus-thread-sort-functions): Added
15063         `gnus-thread-sort-by-most-recent-number' and
15064         `gnus-thread-sort-by-most-recent-date'.
15065         Reported by Kai Grossjohann <kai@emptydomain.de>.
15066
15067 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15068
15069         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15070
15071 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15072
15073         * gnus-cus.el (gnus-agent-customize-category): Removed
15074         ignore-errors macro reference that required cl to be loaded at
15075         run-time.
15076
15077         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15078         single-interval range of the form (min . max).  Previously the
15079         range had to look like ((min . max)).  Likewise, return
15080         (min . max) rather than ((min . max)).
15081         (gnus-range-map): Use gnus-range-normalize to accept
15082         single-interval range.
15083
15084         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15085         the cache, but not the agent, now appear with their usual face.
15086
15087         * dgnushack.el (loaddir): New variable that is bound to the
15088         directory containing the dgnushack.el file. Use loaddir, rather
15089         than srcdir, to update load-path. Change lets dgnushack compile
15090         code in directories other than GNUS/lisp.
15091
15092 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15093
15094         * lpath.el: Don't bind w3m-safe-url-regexp.
15095
15096         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15097         w3m-safe-url-regexp variable buffer-local.
15098
15099         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15100
15101 2004-02-27  Simon Josefsson  <jas@extundo.com>
15102
15103         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15104         gnus-group-real-prefix.
15105         (gnus-summary-move-article): Use it, instead of
15106         gnus-group-real-prefix.
15107
15108 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15109
15110         * lpath.el: Bind w3m-safe-url-regexp.
15111
15112         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15113         w3m-safe-url-regexp variable buffer-local and set it as the value
15114         of mm-w3m-safe-url-regexp.
15115
15116         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15117
15118         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15119         parsing gnus-posting-styles when the message is not for replying.
15120
15121         * dgnushack.el: Autoload sgml-mode for XEmacs.
15122
15123         * nnrss.el (nnrss-opml-export): Use
15124         mm-set-buffer-file-coding-system instead of
15125         set-buffer-file-coding-system.
15126
15127 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15128
15129         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15130         of checkdoc.el).
15131         * nnrss.el: do.
15132         * gnus-mlspl.el: do.
15133         * gnus-ml.el: do.
15134         * gnus-srvr.el: do.
15135
15136         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15137
15138 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15139
15140         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15141         Corrections to custom-manual links.
15142
15143         * gnus-art.el (gnus-article): Ditto.
15144
15145         * mm-decode.el (mime-display, mime-security): Ditto.
15146
15147 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15148
15149         * flow-fill.el: Typo.
15150
15151 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15152
15153         * spam-wash.el: New file.
15154
15155 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15156
15157         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15158
15159 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15160
15161         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15162         to be run with new-articles as LIST1, not LIST2.
15163         (spam-registration-functions): Add spam-use-ham-copy as a nil
15164         registration backend.
15165
15166 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15167
15168         * spam-stat.el (spam-stat-washing-hook): New option.
15169         (spam-stat-buffer-words): Use it.
15170         (spam-stat-process-directory, spam-stat-test-directory): Use
15171         insert-file-contents-literally.
15172         (spam-stat-coding-system): New variable.
15173         (spam-stat-load, spam-stat-save): Use it.
15174
15175 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15176
15177         * spam-report.el (spam-report-plug-agent): Quote
15178         spam-report-url-to-file and spam-report-url-ping-plain.
15179
15180 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15181
15182         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15183         / in mailto URLs.
15184
15185 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15186
15187         * spam-report.el (spam-report-process-queue): Fix interactive use.
15188         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15189         (spam-report-unplug-agent): Doc fixes.
15190         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15191         (spam-report-agentize, spam-report-deagentize): Autoload.
15192
15193 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15194
15195         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15196
15197         * message.el (message-setup-fill-variables): Add mml tags to
15198         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15199         <ajk@iu.edu>.
15200         (message-mode): Don't modify paragraph-separate there.
15201
15202 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15203
15204         * compface.el (uncompface-use-external): Default to undecided.
15205         (uncompface-use-external-threshold): New variable.
15206         (uncompface-float-time): New macro.
15207         (uncompface): Determine whether to use the external decoder if
15208         uncompface-use-external is undecided.
15209
15210 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15211
15212         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15213         after images.
15214
15215         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15216
15217 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15218
15219         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15220
15221         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15222
15223         * gnus-sum.el (gnus-summary-limit-to-age)
15224         (gnus-summary-limit-children): do.
15225
15226         * gnus-int.el (gnus-request-scan): do.
15227
15228         * gnus-group.el (gnus-group-suspend): do.
15229
15230         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15231
15232         * gnus-cite.el (gnus-cite-parse-attributions): do.
15233
15234         * gnus-agent.el (gnus-summary-set-agent-mark)
15235         (gnus-agent-regenerate-group): do.
15236
15237         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15238
15239         * binhex.el (binhex-decode-region-internal): do.
15240
15241 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15242
15243         * gnus-fun.el (gnus-face-properties-alist): New user option.
15244         (gnus-display-x-face-in-from): Use it.
15245
15246         * gnus-art.el (article-display-face): Ditto.
15247
15248         * compface.el (uncompface-use-external): Default to nil.
15249
15250 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15251
15252         * nntp.el (nntp-erase-buffer): New function.
15253         (nntp-retrieve-data, nntp-send-command)
15254         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15255         (nntp-possibly-change-group): Use it.
15256
15257         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15258         with-current-buffer.
15259
15260 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15261
15262         * compface.el: Merge the ELisp-based uncompface program.
15263         (compface): New customization group.
15264         (uncompface-use-external): New user option.
15265         (uncompface): Call uncompface-internal if uncompface-use-external
15266         is nil.
15267         (uncompface-internal): New function.  Note that there are also
15268         some other functions and variables added for this function.
15269
15270 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15271
15272         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15273         if necessary.
15274
15275 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15276
15277         * spam-report.el (spam-report-unplug-agent)
15278         (spam-report-plug-agent, spam-report-deagentize)
15279         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15280         Add support for the Agent in spam-report: when unplugged, report to a
15281         file; when plugged, submit all the requests.
15282
15283         * spam.el (spam-register-routine): Fix message about
15284         registration.
15285
15286 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15287
15288         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15289         dependencies.
15290         (rfc2047-encode): Use it.
15291
15292         * gnus-art.el (gnus-button-marker-list): Move before first
15293         reference.
15294
15295         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15296         (imap-parse-body): Fix format string mismatch.
15297
15298         * gnus-score.el (gnus-summary-increase-score): do.
15299
15300         * nnrss.el (nnrss-close): New function.
15301
15302 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15303
15304         * nnrss.el (nnrss-make-filename): New function.
15305         (nnrss-request-delete-group, nnrss-read-server-data)
15306         (nnrss-save-server-data, nnrss-read-group-data)
15307         (nnrss-save-group-data): Use it.
15308         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15309         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15310         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15311
15312 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15313
15314         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15315
15316 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15317
15318         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15319         files.
15320
15321         * message.el (message-generate-headers-first): Don't quote nil
15322         and t in docstrings.
15323
15324         * imap.el (imap-id): do.
15325
15326         * gnus-agent.el (gnus-agent-consider-all-articles)
15327         (gnus-agent-queue-mail): do.
15328
15329 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15330
15331         * spam-report.el (spam-report-process-queue): New function.
15332         Process requests from `spam-report-requests-file'.
15333         (spam-report-process-queue): Doc fix.
15334
15335 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15336
15337         * spam.el (spam-register-routine)
15338         (spam-log-processing-to-registry, spam-log-registered-p)
15339         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15340         Change "check" to "spam-check" for semi-clarity.
15341
15342 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15343
15344         * pop3.el: Require nnheader.
15345
15346         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15347
15348         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15349
15350         * gnus-picon.el: Require cl.
15351
15352         * gnus-fun.el: Require gnus-ems and gnus-util.
15353
15354         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15355
15356         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15357
15358         * gnus-art.el (gnus-article-edit-mode): Define before first
15359         reference.
15360
15361 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15362
15363         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15364         (gnus-uu-post-encoded): Use point-at-bol.
15365
15366         * gnus-topic.el (gnus-group-active-topic-p): do.
15367
15368         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15369
15370         * gnus-group.el (gnus-group-kill-region): do.
15371
15372         * gnus-art.el (article-date-ut): do.
15373
15374         * message.el (message-fetch-field): Remove redundant
15375         case-fold-search binding.
15376         (message-narrow-to-field): Simplify.
15377
15378 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15379
15380         * spam.el (spam-directory): Derive from `gnus-directory'.
15381
15382         * spam-report.el (spam-report-url-to-file)
15383         (spam-report-requests-file): New function and variable for offline
15384         reporting.
15385         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15386         and user defined function.
15387         (spam-report-url-ping-mm-url): Remove doubled slash.
15388
15389 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15390
15391         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15392
15393 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15394
15395         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15396         format string mismatch.
15397
15398         * sieve.el (sieve-deactivate-all): do.
15399
15400         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15401
15402         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15403
15404         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15405
15406         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15407
15408 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15409
15410         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15411         the list of checks.
15412
15413 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15414
15415         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15416         padding.
15417
15418 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15419
15420         * mm-view.el (mm-fill-flowed): New variable.
15421         (mm-inline-text): Use it.
15422
15423 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15424
15425         * spam.el (spam-spamassassin-register-ham-routine)
15426         (spam-spamassassin-register-spam-routine): Fix function names.
15427
15428 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15429
15430         * gnus.el (gnus-tmp-grouplens): Remove.
15431         (gnus-summary-line-format): Remove grouplens.
15432
15433         * gnus-group.el (gnus-group-line-format): Ditto.
15434
15435         * gnus-spec.el (gnus-format-specs): Ditto.
15436         (gnus-update-format-specifications): Flush the group format spec
15437         cache if there's the grouplens stuff.
15438         (gnus-parse-simple-format): Replace %l with the empty string.
15439
15440 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15441
15442         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15443         omission.
15444
15445 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15446
15447         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15448         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15449
15450 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15451
15452         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15453         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15454         New macros and functions.
15455         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15456         Handle > NLINK_MAX messages.
15457         * nnmaildir.el (nnmaildir-request-set-mark): Use
15458         nnmaildir--emlink-p and nnmaildir--eexist-p.
15459
15460 2004-01-25  Alex Schroeder  <alex@gnu.org>
15461
15462         * spam-stat.el (spam-stat-process-directory-age): New option.
15463         (spam-stat-process-directory): Use it.
15464
15465 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15466
15467         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15468         (spam-stat-save): Accept prefix argument.
15469
15470 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15471
15472         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15473         links" error.
15474
15475 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15476
15477         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15478         the rest of the and/or forms.
15479
15480 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15481
15482         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15483         compatibility with old .newsrc.eld files.
15484
15485         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15486
15487         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15488
15489         * gnus-start.el (gnus-1): do.
15490
15491         * gnus-group.el (gnus-group-line-format-alist): do.
15492
15493         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15494
15495         * gnus-gl.el: Remove.
15496
15497 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15498
15499         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15500         marks consisting of a single range {for example, (3 . 5)} rather
15501         than a list of a single range { ((3 . 5)) }.
15502
15503 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15504
15505         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15506         with-current-buffer.
15507         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15508         avoid consing a string.
15509
15510         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15511         Remove obsolete entries for big5 and gb2312.
15512
15513 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15514
15515         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15516         uncompressed list.
15517
15518 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15519
15520         * spam-stat.el (spam-stat-strip-xref): New function.
15521         (spam-stat-process-directory): Use it.
15522
15523         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15524         here -- it's done in message-fetch-field.
15525
15526 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15527
15528         * gnus-agent.el (gnus-agent-queue-mail)
15529         (gnus-agent-prompt-send-queue): New variables.
15530         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15531         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15532         "nndraft:queue" along to gnus-draft-send.  Use
15533         gnus-agent-prompt-send-queue.
15534         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15535         is "nndraft:queue".  Suggested by Gaute Strokkenes
15536         <gs234@srcf.ucam.org>
15537
15538         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15539         (agent-enable-undownloaded-faces): Added.
15540         (gnus-agent-cat-groups): Use eval-and-compile, not
15541         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15542         method of gnus-agent-cat-groups even when the buffer has been
15543         evaled.
15544         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15545         delete gnus-agent-save-active-1.
15546         (gnus-agent-save-groups): Deleted.  Identical to
15547         gnus-agent-save-active.
15548         (gnus-agent-write-active): No longer adjust agent's copy of active
15549         file as agent's adjustments are now stored in their own
15550         file.  Removed optional parameter.
15551         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15552         servers.  Add use of min/max range limits from server's local
15553         file.
15554         (gnus-agent-save-alist): Removed unused optional argument.
15555         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15556         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15557         (gnus-agent-set-local): A per-server file that keeps min/max range
15558         limits for articles known to the agent.  Provides a fast mechanism
15559         for altering many active ranges.
15560         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15561         active file (local makes it unnecessary).
15562         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15563
15564         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15565         (agent-enable-undownloaded-faces): Added.
15566
15567         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15568         disable it when sending to "nndraft:queue".
15569         (gnus-group-send-queue): Add safety check to avoid sending queue
15570         when unplugged.
15571
15572         * gnus-group.el (gnus-group-catchup): Use new
15573         gnus-sequence-of-unread-articles, not
15574         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15575         numbers of articles.  Use gnus-range-map to avoid having to
15576         uncompress the unread list.
15577         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15578         Fixed invalid ange-ftp reference.
15579
15580         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15581         (gnus-sorted-range-intersection): Intersection of two ranges
15582         without requiring that they first be uncompressed.
15583
15584         * gnus-start.el (gnus-activate-group): Unless blocked by the
15585         caller, possibly expand the active range to include both cached
15586         and agentized articles.
15587         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15588         multiple version-dependent converters.
15589         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15590         gnus-agent-save-active.
15591         (gnus-save-newsrc-file): Save dirty agent range limits.
15592
15593         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15594         gnus-agent-possibly-alter-active.
15595         (gnus-adjust-marked-articles): Faster handling of simple lists.
15596
15597 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15598
15599         * spam-stat.el (spam-stat-test-directory): New optional argument
15600         displays a list of files detected.  Suggested by Andrew Cohen
15601         <cohen@andy.bu.edu>.
15602         (spam-stat-buffer-words-with-scores): Don't narrow and change
15603         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15604
15605 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15606
15607         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15608         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15609         (spam-spamassassin-arguments)
15610         (spam-spamassassin-spam-flag-header)
15611         (spam-spamassassin-positive-spam-flag-header)
15612         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15613         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15614         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15615         (spam-list-of-processors, spam-list-of-checks)
15616         (spam-list-of-statistical-checks, spam-registration-functions)
15617         (spam-check-spamassassin-headers, spam-check-spamassassin)
15618         (spam-spamassassin-score)
15619         (spam-spamassassin-register-with-sa-learn)
15620         (spam-spamassassin-register-spam-routine)
15621         (spam-spamassassin-register-ham-routine)
15622         (spam-assassin-register-spam-routine)
15623         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15624         (spam-bogofilter-score): Fix to show article before scoring.
15625
15626 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15627
15628         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15629         default scoring function.
15630         (spam-generic-score): Call spam-spamassassin-score if
15631         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15632         spam-bogofilter-score otherwise.
15633
15634         * gnus.el (spam-process, spam-autodetect-methods): Add
15635         spamassassin and spamassassin-headers.
15636
15637 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15638
15639         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15640         Suppress unnecessary messages.
15641
15642 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15643
15644         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15645         make-hash-table.
15646
15647 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15648
15649         * canlock.el (base64-encode-string): Don't autoload it.
15650
15651 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15652
15653         * run-at-time.el: Remove useless (require 'itimer),
15654         eval-and-compile and (featurep 'xemacs).
15655
15656 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15657
15658         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15659         GROUP is a virtual group.
15660
15661 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15662
15663         * gnus.el: Autoload `message-y-or-n-p'.
15664
15665 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15666
15667         * pgg-parse.el: Remove unnecessary (require 'custom).
15668
15669         * pgg-def.el: do.
15670
15671         * nnmail.el: do.
15672
15673         * gnus-undo.el: do.
15674
15675         * gnus-picon.el: do.
15676
15677         * gnus-util.el: do.
15678
15679 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15680
15681         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15682
15683 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15684
15685         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15686         handle, as well as a list.
15687
15688         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15689         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15690         (mm-w3m-cid-retrieve): Simplify.
15691
15692 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15693
15694         * message.el (message-kill-to-signature): Allow prefix arg to
15695         specify number of lines to keep before signature.
15696
15697 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15698
15699         * message.el (message-kill-to-signature): Change docstring.
15700
15701 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15702
15703         * canlock.el: Always require sha1-el.
15704         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15705
15706         * message.el: Autoload sha1 only when compiling.
15707
15708         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15709         eudc-expand-inline for XEmacs.
15710
15711 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15712
15713         * message.el (message-canlock-generate): Require sha1-el.
15714
15715 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15716
15717         * message.el (message-expand-name): Silence the byte compiler.
15718
15719         * lpath.el: Add detect-coding-system.
15720
15721         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15722         cus-edit.
15723
15724 2004-01-13  Simon Josefsson  <jas@extundo.com>
15725
15726         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15727         Invoke gnus-score-mode.  Reported by
15728         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15729
15730         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15731         Jim Blandy <jimb@redhat.com> (tiny change).
15732
15733 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15734
15735         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15736
15737 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15738
15739         * spam.el (spam-get-article-as-string): Update to use
15740         gnus-request-article-this-buffer, much simpler.
15741         (spam-get-article-as-buffer): Remove.
15742
15743 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15744
15745         * message.el (message-expand-name): Use EUDC if the user uses that.
15746
15747 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15748
15749         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15750         character for the encoding to avoid consing a string.
15751
15752         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15753         unnecessarily.
15754
15755         * mm-util.el (mm-replace-chars-in-string): Remove.
15756
15757         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15758         of mm-replace-chars-in-string.
15759
15760 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15761
15762         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15763
15764         * mm-util.el (mm-subst-char-in-string): Support inplace.
15765
15766         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15767         a new string in every iteration.  Use shy groups.
15768
15769 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15770
15771         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15772         * gnus-soup.el (gnus-soup-group-brew):
15773         * gnus-msg.el (gnus-put-message):
15774         * gnus-move.el (gnus-group-move-group-to-server):
15775         * gnus-kill.el (gnus-batch-score):
15776         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15777         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15778         (gnus-group-update-group, gnus-group-read-group)
15779         (gnus-group-make-group, gnus-group-make-help-group)
15780         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15781         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15782         (gnus-group-sort-by-unread, gnus-group-catchup)
15783         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15784         (gnus-group-yank-group, gnus-group-set-info)
15785         (gnus-group-list-groups):
15786         * gnus.el (gnus-generate-new-group-name):
15787         * gnus-delay.el (gnus-delay-send-queue):
15788         * nnvirtual.el (nnvirtual-catchup-group):
15789         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15790         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15791         (gnus-group-prepare-topics, gnus-topic-check-topology):
15792         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15793         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15794         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15795         (gnus-group-make-articles-read):
15796         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15797         (gnus-group-change-level, gnus-kill-newsgroup)
15798         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15799         (gnus-get-unread-articles, gnus-make-articles-unread)
15800         (gnus-make-ascending-articles-unread): Use accessor
15801         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15802         to get group information for improved readability.
15803
15804
15805 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15806
15807         * gnus-art.el (article-decode-mime-words, article-babel)
15808         (gnus-article-highlight-signature, gnus-article-add-buttons)
15809         (gnus-signature-toggle): Use gnus-with-article-buffer.
15810
15811         * gnus-art.el (gnus-article-highlight-headers)
15812         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15813
15814         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15815         (gnus-article-set-globals, gnus-request-article-this-buffer)
15816         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15817         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15818         (gnus-mime-display-alternative): Use with-current-buffer.
15819
15820 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15821
15822         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15823         also under 80 char limit, and call gnus-error if needed.
15824         (spam-fetch-article-header): Fix - it was a
15825         buffer-local variable (gnus-newsgroup-data).
15826         (spam-find-spam): Use spam-generate-fake-headers, forget about
15827         spam-insert-fake-headers.
15828         (spam-insert-fake-headers): Remove.
15829
15830 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15831
15832         * deuglify.el (gnus-article-outlook-unwrap-lines)
15833         (gnus-outlook-rearrange-article)
15834         (gnus-outlook-repair-attribution-outlook)
15835         (gnus-outlook-repair-attribution-block)
15836         (gnus-outlook-repair-attribution-other): Remove redundant
15837         save-excursion.
15838
15839 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15840
15841         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15842         (spam-fetch-field-subject-fast)
15843         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15844         (spam-fetch-article-header): Add functions to deal with Gnus
15845         internals for fast retrieval of article header data.
15846         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15847
15848 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15849
15850         * pop3.el (pop3-md5): Remove.
15851         (pop3-apop): Replace pop3-md5 with md5.
15852
15853         * mm-bodies.el: base64 is always built-in.
15854
15855         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15856         with-current-buffer.
15857
15858 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15859
15860         * canlock.el (canlock-insert-header): Remove excessive grouping in
15861         regexp.
15862
15863         * gnus-sum.el (gnus-summary-read-document): Ditto.
15864
15865         * gnus-uu.el (gnus-uu-part-number): Ditto.
15866
15867         * html2text.el (html2text-remove-tags): Ditto.
15868         (html2text-format-tags): Ditto.
15869         (html2text-format-single-elements): Ditto.
15870
15871         * mml.el (mml-parse-1): Ditto.
15872
15873 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15874
15875         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
15876
15877         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
15878
15879         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
15880
15881         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
15882
15883 2003-11-15  Simon Josefsson  <jas@extundo.com>
15884
15885         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
15886         (pgg-gpg-lookup-key): Use regexp match instead of
15887         split-string (split-string is different between emacs 21.2 and
15888         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
15889
15890 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15891
15892         * gnus-art.el (gnus-mime-view-all-parts)
15893         (gnus-article-part-wrapper, gnus-article-view-part): Use
15894         with-current-buffer.
15895
15896 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15897
15898         * spam.el (spam-disable-spam-split-during-ham-respool)
15899         (spam-spamoracle-database, spam-cache-lookups)
15900         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
15901         (spam-group-ham-mark-p, spam-group-spam-mark-p)
15902         (spam-group-ham-marks, spam-group-spam-marks)
15903         (spam-group-spam-contents-p, spam-group-ham-contents-p)
15904         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
15905         also add spam-use-blackholes to the statistical checks.
15906         (spam-fetch-field-fast): Add interface to fetching fields, may
15907         become a macro.
15908         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
15909         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
15910         (spam-insert-fake-headers): Fake an article when needed.
15911         (spam-find-spam): Fake article when possible.
15912         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
15913         (spam-check-bogofilter-headers): Use message-fetch-field instead
15914         of nnmail-fetch-field.
15915
15916 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
15917
15918         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
15919
15920 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15921
15922         * spam.el (spam-split): Do not require spam-use-CHECK to be
15923         enabled if that check is passed to spam-split explicitly; also
15924         fix so 'spam doesn't get converted to spam-split-group when
15925         spam-split-symbolic-return is t.
15926         (spam-find-spam): Find registrations of the article and use those
15927         instead of re-running spam-split to find the spam/ham
15928         classification of the article.
15929         (spam-log-processing-to-registry, spam-log-registered-p)
15930         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15931         Use gnus-error instead of gnus-message.
15932         (spam-log-registration-type): Add function to determine the
15933         classification of a message based on registry entries; will
15934         return nil if both 'spam and 'ham are found.
15935         (spam-check-BBDB): Expand all the BBDB macros here so we can have
15936         a reasonably fast local cache without the loading errors.
15937         (spam-cache-lookups): Set to t by default.
15938         (spam-find-spam): Don't try to guess spam-cache-lookups.
15939         (spam-enter-whitelist, spam-enter-blacklist): Clear the
15940         spam-caches entry.
15941         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
15942         caching of whitelist/blacklist entries.
15943         (spam-check-whitelist, spam-check-blacklist): Invoke
15944         spam-from-listed-p with a type, not a cache variable.
15945         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
15946
15947 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
15948
15949         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
15950
15951         * nnmail.el (nnmail-split-fancy): do.
15952
15953         * mml.el (mml-parse): do.
15954
15955         * gnus-score.el (gnus-enter-score-words-into-hashtb)
15956         (gnus-score-adaptive): do.
15957
15958 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15959
15960         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
15961         (gnus-mime-button-map): Don't set keymap parent.
15962         (gnus-button-ctan-directory-regexp): Use shy grouping.
15963         (gnus-prev-page-map): Don't set keymap parent.
15964         (gnus-prev-page-map): Remove duplicated one.
15965         (gnus-next-page-map): Don't set keymap parent.
15966         (gnus-mime-security-button-map): Ditto.
15967
15968         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
15969         version number.
15970
15971         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
15972
15973 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15974
15975         * canlock.el (canlock-sha1-function): Remove.
15976         (canlock-sha1-function-for-verify): Remove.
15977         (canlock-openssl-program): Remove.
15978         (canlock-openssl-args): Remove.
15979         (canlock-ignore-errors): Remove.
15980         (canlock-sha1-with-openssl): Remove.
15981         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
15982         (canlock-verify): Don't use canlock-ignore-errors.
15983
15984         * sha1-el.el (sha1-string-external): Make it can return a string
15985         in binary form.
15986         (sha1-region-external): Ditto.
15987         (sha1-string-internal): Ditto.
15988         (sha1-region-internal): Ditto.
15989         (sha1-region): Ditto.
15990         (sha1-string): Ditto.
15991         (sha1): Ditto.
15992
15993 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15994
15995         * spam.el (spam-report-articles-gmane): New command.
15996
15997 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15998
15999         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16000
16001         * run-at-time.el (run-at-time-saved): Remove.
16002         (run-at-time): Doc fix.
16003
16004 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16005
16006         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16007         (gnus-summary-limit-map): Add it.
16008         (gnus-summary-make-menu-bar): do.
16009
16010 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16011
16012         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16013         Make attempt at some caching support (done for BBDB only now).
16014         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16015         addresses to be checked.
16016         (spam-clear-cache-BBDB): Add function, to be invoked by
16017         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16018         (spam-check-BBDB): Check and use the caches, if
16019         spam-cache-lookups is on, remove superfluous (provide).
16020
16021 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16022
16023         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16024
16025 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16026
16027         * run-at-time.el (run-at-time-saved): Move to after the definition
16028         of `run-at-time'.
16029
16030         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16031
16032 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16033
16034         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16035         mm-w3m-local-map-property.
16036
16037         * mm-view.el (mm-w3m-mode-map): Remove.
16038         (mm-w3m-local-map-property): Remove.
16039         (mm-inline-text-html-render-with-w3m): Don't use
16040         mm-w3m-local-map-property.
16041
16042 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16043
16044         * run-at-time.el: New file.
16045
16046         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16047         under Emacs.
16048
16049         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16050         of gnus-set-text-properties.
16051
16052         * gnus-uu.el (gnus-uu-save-article): Ditto.
16053
16054         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16055
16056         * gnus-cite.el (gnus-cite-parse): Ditto.
16057
16058         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16059         of gnus-.
16060
16061         * gnus-xmas.el (run-at-time): Require run-at-time.
16062
16063         * gnus.el: Changed calls to nnheader-run-at-time and
16064         password-run-at-time throughout to use run-at-time directly.
16065
16066         * password.el: Removed definition of run-at-time.
16067
16068         * nnheaderxm.el: Remove definition of run-at-time.
16069
16070 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16071
16072         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16073         in prompt.
16074
16075 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16076
16077         * messagexmas.el (message-xmas-redefine): Alias
16078         `message-make-caesar-translation-table' to
16079         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16080         version.
16081
16082         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16083         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16084         `gnus-xmas-set-text-properties'.
16085         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16086         `gnus-xmas-completing-read'.
16087         (gnus-xmas-completing-read): Removed.
16088         (gnus-xmas-open-network-stream): Removed.
16089
16090         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16091         XEmacs version.
16092
16093         * dns.el (dns-make-network-process): Use `open-network-stream'
16094         instead of `gnus-xmas-open-network-stream'.
16095
16096         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16097
16098         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16099
16100 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16101
16102         * gnus-art.el (gnus-mime-display-alternative)
16103         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16104         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16105         Don't use gnus-local-map-property.
16106
16107         * gnus-util.el (gnus-local-map-property): Remove.
16108
16109         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16110         gnus-completing-read-maybe-default with completing-read.
16111
16112         * gnus-util.el (gnus-completing-read): do.
16113         (gnus-completing-read-maybe-default): Remove.
16114
16115 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16116
16117         * password.el: Only autoload `run-at-time' if not XEmacs.
16118         Only autoload the itimer functions if XEmacs.
16119
16120 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16121
16122         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16123         XEmacsen.
16124
16125         * dgnushack.el: Autoload executable-find for XEmacs.
16126
16127 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16128
16129         * gnus-art.el (gnus-read-string): Remove.
16130         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16131         read-string.
16132
16133 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16134
16135         * netrc.el: Autoload password-read.
16136         (netrc): Add configuration group.
16137         (netrc-encoding-method, netrc-openssl-path): Add
16138         variables for encoding and decoding of files with symmetric
16139         ciphers.
16140         (netrc-encode): Add assistant function to encode a file with
16141         netrc-encoding-method.
16142         (netrc-parse): Add interactive parameter, added optional
16143         decoding if netrc-encoding-method is non-nil but otherwise
16144         behavior is standard.
16145         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16146         Do s/encode/encrypt/ everywhere.
16147
16148         * spam.el: Remove executable-find autoload.
16149
16150 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16151
16152         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16153
16154         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16155
16156 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16157
16158         * gnus-art.el (gnus-treat-ansi-sequences)
16159         (article-treat-ansi-sequences): New variable and function.
16160         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16161
16162         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16163         Use it.
16164
16165 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16166
16167         * mm-util.el (mm-quote-arg): Remove.
16168
16169         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16170         shell-quote-argument.
16171
16172         * gnus-uu.el (gnus-uu-command): do.
16173
16174         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16175
16176         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16177         with make-char.
16178
16179         * mm-util.el (mm-make-char): Remove.
16180
16181         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16182         add-minor-mode.
16183
16184         * gnus-undo.el (gnus-undo-mode): do.
16185
16186         * gnus-topic.el (gnus-topic-mode): do.
16187
16188         * gnus-sum.el (gnus-dead-summary-mode): do.
16189
16190         * gnus-start.el (gnus-slave-mode): do.
16191
16192         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16193
16194         * gnus-ml.el (gnus-mailing-list-mode): do.
16195
16196         * gnus-gl.el (gnus-grouplens-mode): do.
16197
16198         * gnus-draft.el (gnus-draft-mode): do.
16199
16200         * gnus-dired.el (gnus-dired-mode): do.
16201
16202         * gnus-ems.el (gnus-add-minor-mode): Remove.
16203
16204         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16205         Replace gnus-char-width with char-width.
16206
16207         * gnus-ems.el (gnus-char-width): Remove.
16208
16209         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16210         Replace gnus-char-width with char-width.
16211
16212         * gnus-ems.el (gnus-char-width): Remove.
16213
16214         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16215         definition.
16216         Remove Emacs 20 hash table compatibility code.
16217
16218         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16219         20 compatibility code.
16220
16221         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16222
16223         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16224
16225         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16226         with point-at-{eol,bol}.
16227
16228         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16229
16230         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16231
16232         * flow-fill.el (fill-flowed-point-at-bol)
16233         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16234
16235         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16236         Replace with point-at-{eol,bol} throughout all files.
16237
16238 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16239
16240         * ntlm.el (ntlm-string-as-unibyte): New macro.
16241         (ntlm-build-auth-response): Use it.
16242
16243         Remove Emacs 20 stuff:
16244         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16245         (butlast, mapc, remove): Remove the compiler macros.
16246         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16247         of delq and copy-sequence.
16248         * gnus-art.el (popup-menu): Remove the compiler macro.
16249         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16250         Emacs 20.
16251
16252 2004-01-05  Simon Josefsson  <jas@extundo.com>
16253
16254         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16255         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16256         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16257         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16258         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16259         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16260         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16261         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16262         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16263         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16264         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16265         string-xor into ntlm-string-xor.  Suggested by
16266         Jesper Harder <harder@myrealbox.com>.
16267
16268         * ntlm.el: Don't include poem.
16269
16270         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16271         Jesper Harder <harder@myrealbox.com>.
16272
16273         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16274
16275         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16276         probably breaks emacs with DL patch, but do we care? Is anyone
16277         still using the DL stuff?)
16278
16279         * sieve-manage.el: Use the password package.
16280         (sieve-manage-read-passwd): Remove.
16281         (sieve-manage-interactive-login): Use password.  Re-add
16282         condition-case around loop.
16283
16284         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16285         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16286         the password package.
16287
16288 2003-02-19  Simon Josefsson  <jas@extundo.com>
16289
16290         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16291         token.
16292
16293 2002-08-07  Simon Josefsson  <jas@extundo.com>
16294
16295         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16296         (sieve-manage-authenticators):
16297         (sieve-manage-authenticator-alist): Add some SASL mechs.
16298         (sieve-sasl-auth): New function.
16299         (sieve-manage-cram-md5-auth):
16300         (sieve-manage-plain-auth): Rewrite using SASL library.
16301         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16302         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16303         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16304         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16305
16306 2004-01-05  Simon Josefsson  <jas@extundo.com>
16307
16308         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16309         New files.
16310
16311 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16312
16313         * gnus-group.el (gnus-no-groups-message): Update.
16314
16315         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16316
16317 2003-11-09  Simon Josefsson  <jas@extundo.com>
16318
16319         * imap.el: Support for ID IMAP extension (RFC 2971).
16320         (imap-local-variables): Add imap-id.
16321         (imap-id): New variable.
16322         (imap-id): New function.
16323         (imap-parse-response): Parse untagged ID response.
16324         * nnimap.el (nnimap-id): New variable.
16325         (nnimap-open-connection): Use it.
16326
16327 2003-12-28  Simon Josefsson  <jas@extundo.com>
16328
16329         * gnus-score.el (gnus-score-edit-all-score): New.
16330         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16331
16332 2004-01-04  Simon Josefsson  <jas@extundo.com>
16333
16334         * password.el: Add.
16335
16336 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16337
16338         * dns.el (dns-query-types): Fix typo.
16339         (dns-query-types): New function.
16340         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16341         PTR and SOA replies, see RFC 1035.
16342
16343 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16344
16345         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16346
16347         * Moved to Changelog.2.
16348
16349 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16350
16351         * gnus.el (gnus-version-number): Bump version.
16352
16353 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16354
16355         * gnus.el: No Gnus v0.1 is released.
16356
16357 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16358
16359         * gnus.el: No Gnus v0.0 is released.
16360
16361 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16362
16363         * gnus.el (gnus-version-number): Bump.
16364         (gnus-version): No.
16365
16366 See ChangeLog.2 for earlier changes.
16367
16368     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16369       Free Software Foundation, Inc.
16370
16371   This file is part of GNU Emacs.
16372
16373   GNU Emacs is free software: you can redistribute it and/or modify
16374   it under the terms of the GNU General Public License as published by
16375   the Free Software Foundation, either version 3 of the License, or
16376   (at your option) any later version.
16377
16378   GNU Emacs is distributed in the hope that it will be useful,
16379   but WITHOUT ANY WARRANTY; without even the implied warranty of
16380   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16381   GNU General Public License for more details.
16382
16383   You should have received a copy of the GNU General Public License
16384   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16385
16386 ;; Local Variables:
16387 ;; coding: utf-8
16388 ;; fill-column: 79
16389 ;; add-log-time-zone-rule: t
16390 ;; End: