c694baa2da92ccfcec389fd681f3ce2e67b7aabd
[gnus] / lisp / ChangeLog
1 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * nnimap.el (nnimap-find-wanted-parts-1): New function.
4         (nnimap-fetch-partial-articles): New variable.
5         (nnimap-open-connection): When looking for credentials, also use the
6         nnimap-server-port.
7
8         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
9         comments.
10         (gnus-methods-sloppily-equal): New function.
11         (gnus): When using the development version of Gnus, load the gnus-load
12         file.
13
14         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
15         `gnus-open-server' on each method before trying to scan them etc.  This
16         ensures that all the backend parameters are set correctly.
17
18         * nnimap.el (nnimap-authenticator): New variable.
19         (nnimap-open-connection): Allow anonymous login.
20         (nnimap-transform-headers): The chars header is called Chars not
21         Bytes.
22         (nnimap-wait-for-response): Don't infloop if the IMAP connection
23         drops.
24
25         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
26         patch, found by Knut Anders Hatlen.
27
28 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
29
30         * gnus-agent.el (gnus-agent-batch-confirmation)
31         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
32         to gnus-message.
33         * gnus-art.el (gnus-article-describe-briefly): Likewise.
34         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
35         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
36         * gnus-int.el (gnus-open-server): Likewise.
37         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
38         (gnus-score-check-syntax): Likewise.
39         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
40         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
41         Likewise.
42         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
43
44 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
45
46         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
47         calling conventions so that prefetch doesn't bug out.
48
49 2010-09-19  Julien Danjou  <julien@danjou.info>
50
51         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
52         rather than `subst-char-in-region' in order to be able to replace ASCII
53         char by UTF-8 ones.
54
55         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
56         than curl.
57         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
58         the right URL and ALT text on images.
59         (gnus-html-wash-tags): Fix tag case.
60         Add support for `s' and `ins' tags. Use gnus-emphasis-* faces.
61         (gnus-article-html): Add -o display_ins_del=2 option.
62         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
63
64 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
65
66         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
67         the extra mail headers, which sometimes seem to happen for unknown
68         reasons.
69
70         * mail-parse.el (mail-header-encode-parameter): Define as
71         rfc2045-encode-string instead of as rfc2231-encode-string, since some
72         (or most, perhaps?) mail readers don't understand the latter, but do
73         understand the former.
74
75         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
76         to nil, so that no methods are automatically agentized.  I think this
77         is probably what most users want.
78
79         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
80         from url-retrieve, for instance about invalid URLs.
81
82         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
83         groups that have no articles.
84         (nnimap-request-article): Check that we really got an article when we
85         requested one.
86
87         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
88         doesn't exist.
89
90         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
91         nntp buffer so the agent can save it.
92         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
93         that CRLF doesn't get translated to \n.
94         (nnimap-open-connection): Don't make 'shell commands only send \n.
95
96 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
97
98         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
99         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
100         Update var name.
101         (nnml-generate-nov-file): Use dolist.
102         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
103         Use with-current-buffer.
104
105 2010-09-18  Julien Danjou  <julien@danjou.info>
106
107         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
108         parallel.
109
110 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
111
112         * nnimap.el (nnimap-update-info): When doing partial marks update, get
113         the range update right.
114         (nnimap-request-group): Don't make `M-g' bug out on group with no
115         marks.
116         (nnoo): Required, so that other packages can require nnimap.
117         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
118         command we're looking for.  This helps when the server sends more
119         responses after we've gotten everything we expected.
120         (nnimap): Add a `newlinep' field to keep track of end-of-line
121         conventions.
122         Don't send CRLF to things that don't want it.
123         (nnimap-request-accept-article): Ditto.
124
125 2010-09-18  Julien Danjou  <julien@danjou.info>
126
127         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
128         than curl to retrieve images.
129
130 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
131
132         * nnimap.el (nnimap-update-info): Extend the info so that we can set
133         the marks.
134         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
135         (nnimap-wait-for-connection): New function.
136         (nnimap-open-connection): If we have PREAUTH, don't query for login
137         credentials.
138         (nnimap-update-info): Fix off-by-one error when concatenating ranges
139         when doing a partial update.
140
141 2010-09-18  Julien Danjou  <julien@danjou.info>
142
143         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
144         tags.
145
146 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
147
148         * nnimap.el (nnimap-credentials): New function.
149         (nnimap-open-connection): Use the new function to look for credentials
150         also on the numeric equivalents of "imap" and "imaps".
151
152         * gnus-start.el (gnus-activate-group): Send the info to
153         gnus-request-group.
154
155         * nnimap.el (nnimap-request-group): Have the "check" version of the
156         function parse flags and update the info, so that a `M-g' get a total
157         resync of all flags from the group.
158
159         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
160         to allow backends to alter the info on group selection.  Also alter all
161         the backend -request-group functions to take the parameter.
162
163         * nnimap.el (nnimap-store-info): New function.
164         (nnimap-update-info): Store the info for later usage.
165         (nnimap-request-group): Use the stored info for the dont-check case, so
166         that we don't retrieve all marks when we enter a group.
167
168         * nnimap.el: Use deffoo instead of defun for interface functions.
169
170         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
171         update the group info.  This makes the nndraft groups, for instance, go
172         back to their old behaviour.
173
174         * gnus-sum.el (gnus-select-newsgroup): Indent.
175
176         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
177         in.
178         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
179         nothing.
180
181         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
182         from methods that are denied.
183
184         * gnus-int.el (gnus-method-denied-p): New function.
185
186         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
187         store the password instead of netrc.
188         (nnimap-open-connection): Don't error out when we can't make a
189         connections.
190
191         * auth-source.el (auth-source-create): In the password prompt, say what
192         we're querying for.  Also prompt for user name if that hasn't been
193         given.
194
195         * nnimap.el (nnimap-with-process-buffer): Removed.
196
197 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
198
199         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
200         method when we're reading from the agent.
201
202         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
203
204         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
205         that's probably most useful for users.
206
207         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
208         "failed" all the time.
209
210         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
211         ...)) with (with-current-buffer ... ).
212
213         * nntp.el (nntp-open-server): Return whether the open was successful or
214         not.
215
216         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
217         select an unread unseen article first.
218
219         * nnimap.el (nnimap-open-connection): If the user doesn't have a
220         /etc/services, supply some sensible port defaults.
221
222         * dgnushack.el: Define netrc-credentials.
223
224 2010-09-17  Julien Danjou  <julien@danjou.info>  (tiny fix)
225
226         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
227
228 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
229
230         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
231         doesn't have any parameters.
232
233 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
234
235         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
236         only upcased checks.
237
238         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
239
240         * nnimap.el (nnimap-open-shell-stream): New function.
241         (nnimap-open-connection): Use it.
242         (nnimap-transform-headers): Get the number of lines in each message.
243         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
244         number of lines.
245         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
246         problem.
247
248         * utf7.el (utf7-encode): Autoload.
249
250         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
251         to allow the mail splitting to not return a default group.  This is
252         useful for nnimap, which will leave unmatched mail in the inbox.
253
254         * nnimap.el: Rewritten.
255
256         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
257         nnimap usage.
258
259         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
260         if the move is internal, so that nnimap can do fast internal moves.
261
262         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
263         data.
264         (gnus-read-active-for-groups): Support finishing the early retrieval of
265         data.
266
267         * gnus-range.el (gnus-range-nconcat): New function.
268
269         * gnus-int.el (gnus-finish-retrieve-group-infos)
270         (gnus-retrieve-group-data-early): New functions.
271
272 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
273
274         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
275         (nnrss-retrieve-groups):
276         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
277         (pop3-quit): Use with-current-buffer.
278
279 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
280
281         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
282         instead of nnheader-accept-process-output.
283
284         * dgnushack.el (dgnushack-compile): Add comment.
285
286         * lpath.el: No need to fbind propertize for XEmacs 21.4.
287
288         * gnus-html.el (gnus-html-schedule-image-fetching)
289         (gnus-html-prefetch-images): Replace process-kill-without-query by
290         gnus-set-process-query-on-exit-flag.
291
292 2010-09-16  Romain Francoise  <romain@orebokech.com>
293
294         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
295
296 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
297
298         * gnus-registry.el (gnus-registry-install-shortcuts): The second
299         parameter to unintern is mandatory-ish in Emacs 24.
300
301         * gnus-html.el (gnus-html-schedule-image-fetching)
302         (gnus-html-prefetch-images): Check for curl before using it.
303
304         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
305         depend on curl, which isn't essential.
306
307         * imap.el: Revert back to version
308         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
309         seem problematic.
310
311 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
312
313         * gnus-registry.el (gnus-registry-install-shortcuts):
314         Explicitly pass `obarray' to `unintern' to avoid a warning.
315
316 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
317
318         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
319         change.
320
321         * nnrss.el (nnrss-request-list): Removed this function and related
322         functions, including the moreover stuff.
323
324 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
325
326         * nnrss.el (nnrss-retrieve-groups): New function.
327
328 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
329
330         * .dir-locals.el: Add no-byte-compile cookie.
331
332 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
333
334         * time-date.el (format-seconds): Comment fix.
335
336         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
337         for back end that doesn't support request-scan.
338
339 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
340
341         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
342         then do request scans from the backends.
343
344         * netrc.el (netrc-credentials): New conveniency function.
345
346         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
347         avoid running a hook per line, since this takes a lot of time,
348         profiling shows.
349         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
350         directly if gnus-visual-p is true.
351
352 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
353
354         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
355         groups; replace mapcar with dolist which is a bit faster; pass groups
356         info to gnus-read-active-file-1.
357         (gnus-read-active-file-1): Scan only specified groups if the new
358         optional arg `infos' is given.
359
360 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
361
362         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
363
364         * pop3.el (pop3-movemail): Removed.
365         (pop3-streaming-movemail): Renamed to pop3-movemail.
366
367         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
368         don't restrict end-tag searches to the end of the line.
369
370 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
371
372         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
373         articles of every unchecked group to t, which means unknown since the
374         server has never been opened.
375
376 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
377
378         * gnus-html.el (gnus-html-show-alt-text): New command.
379         (gnus-html-browse-image): Ditto.
380         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
381         to browse the image directly.
382         (gnus-html-wash-tags): Search for images first, so that <a><img> works
383         better.
384
385         * gnus-async.el (gnus-async-article-callback): Call
386         `gnus-html-prefetch-images' unconditionally.
387
388         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
389         before feeding URLs to curl.
390
391 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
392
393         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
394         internal images as deletable by `W D D'.
395
396         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
397         (gnus-async-article-callback): Fix typo.
398
399 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
400
401         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
402         current line to work around bugs in the output from w3m.
403
404         * gnus-async.el (gnus-async-article-callback): Always prefetch images
405         for groups that want that.
406
407         * nntp.el (nntp-wait-for-string): Supply a timeout for
408         accept-process-output to ensure progress.
409
410         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
411         level to get unread articles from, then use that for foreign groups,
412         too.
413
414         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
415         confuses the rest of the function.
416
417         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
418         for the methods that support -retrieve-groups, too.
419
420         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
421
422 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
423
424         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
425         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
426
427         * pop3.el: Require cl when compiling.
428         (pop3-number-of-responses): Search for "+OK", not "+OK ".
429
430 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
431
432         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
433         that aren't going to be activated.
434         (gnus-get-unread-articles): Fix up the last commit.
435
436         * gnus-html.el (gnus-article-html): Allow calling without specifying
437         the handle.  In that case, dissect the buffer first.
438
439         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
440
441         * nnimap.el (nnimap-open-connection): Revert the change that would look
442         into authinfo for imaps instead of imap.
443
444         * gnus-start.el (gnus-activate-group): Take an optional parameter to
445         say that you don't want to call gnus-request-group with don-check, but
446         do check the reponse.  This is for virtual groups only.
447         (gnus-get-unread-articles): Count the archive groups as secondary, so
448         that they're activated the same way as before.
449
450         * imap.el (imap-message-map): Removed optional buffer parameter, since
451         no callers use it.
452         (imap-message-get): Ditto.
453         (imap-message-put): Ditto.
454         (imap-mailbox-map): Ditto.
455         (imap-mailbox-put): Ditto.
456         (imap-mailbox-get): Ditto.
457         (imap-mailbox-get): Revert last change for this function.
458
459         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
460         case-insensitively.
461         (nnimap-debug): Removed.
462
463         * imap.el (imap-fetch-safe): Removed function, and altered all callers
464         to use `imap-fetch' instead.  According to the comments, this should be
465         safe, since all other IMAP clients use the 1:* syntax.
466         (imap-enable-exchange-bug-workaround): Removed.
467         (imap-debug): Removed -- doesn't seem very useful.
468
469         * mail-source.el (mail-source-fetch): Don't message if we're fetching
470         mail from a file, and the file doesn't exist.
471
472         * imap.el (imap-log): New convenience function used throughout instead
473         of repeating the same code all over the place.
474
475         * pop3.el (pop3-streaming-movemail): Return t for success.
476
477         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
478         .authinfo if we're using ssl connection.
479
480         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
481         already have if we're in a main Gnus `g' run.
482
483         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
484
485 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
486
487         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
488
489         * nnmh.el (nnmh-request-list-1): Bind `file'.
490
491         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
492         alias to set-process-query-on-exit-flag or process-kill-without-query.
493         (pop3-open-server): Use it.
494
495 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
496
497         * mail-source.el (mail-source-delete-crash-box): Always move the crash
498         box to the Incoming file.  Fixes mistake in previous checkin.
499
500         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
501         request loop (for debugging purposes) removed.
502
503         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
504         culprit is more visible.
505         (nnml-save-incremental-nov, nnml-open-incremental-nov)
506         (nnml-add-incremental-nov): New functions to do "incremental" nov
507         updates, where we just append to the end of the existing nov files
508         without reading/writing them in full.
509
510         * mail-source.el (mail-source-delete-crash-box): Really only check the
511         incoming files once in a while.
512
513         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
514
515         * mail-source.el (mail-source-delete-crash-box): Only check the
516         incoming files for deletion once per day to save a lot of file
517         accesses.
518
519         * pop3.el (pop3-logon): Fix up unbound variable typo.
520
521         * mail-source.el (pop3-streaming-movemail): Autoload.
522
523         * pop3.el (pop3-streaming-movemail): Respect
524         pop3-leave-mail-on-server.
525
526         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
527         retrieval.
528
529         * pop3.el (pop3-process-filter): Removed unused function.
530         (pop3-streaming-movemail, pop3-send-streaming-command)
531         (pop3-wait-for-messages, pop3-write-to-file)
532         (pop3-number-of-responses): New functions for streaming pop3
533         retrieval.
534
535         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
536         come from no known methods.
537         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
538         list.
539
540         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
541         message sizes.
542         (pop3-movemail): Use erase-buffer instead of looping and deleting
543         regions, which seems rather odd.
544
545         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
546         file once per `g' run.
547
548         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
549         directories.  This makes the draft queue directory work.
550
551         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
552         data from the backends, so that we only request the list of groups from
553         each method once.  This should speed things up considerably.
554
555         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
556         detect that it's not implemented.
557
558         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
559         we actually do recurse down into the tree, but don't stat all leaf
560         nodes.
561
562         * gnus-html.el (gnus-html-show-images): If there are no images to show,
563         then say so instead of bugging out.
564
565         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
566         files exist before trying to read them.
567
568         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
569         around <pre_int>.
570
571         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
572
573         * nnmh.el (nnmh-request-list-1): Optimize for speed.
574
575 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
576
577         * mm-util.el (mm-image-load-path): Just return the image directories,
578         not all directories in the path in addition to the image directories.
579         (mm-image-load-path): Maintain a cache of the image directories so that
580         the `g' command in Gnus doesn't have to stat dozens of directories each
581         time.
582
583         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
584         (gnus-html-wash-tags): Add a new `i' command to insert images.
585         (gnus-html-insert-image): New command and keystroke.
586         (gnus-html-redisplay-with-images): New command and keystroke.
587         (gnus-html-show-images): Renamed command.
588         (gnus-html-wash-tags): Remove more white space before <pre_int> image
589         spacers.
590         (gnus-html-wash-tags): Decode entities at the end, so that entities
591         inside the tags don't mess up the rest of the "parsing".
592
593         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
594         so that nnimap methods aren't agentized by default.  There's apparently
595         many problems related to agent/imap behaviour.
596
597         * gnus-art.el (gnus-article-copy-string): New command and key binding.
598
599         * gnus-html.el: Doc fix.
600
601 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
602
603         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
604         specifier-spec-list for Emacs 21.
605
606         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
607         glyph-width and glyph-height instead of display-graphic-p and
608         image-size; make avoidance of displaying small images work for XEmacs.
609
610         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
611         for XEmacs.
612
613         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
614         of symbol that holds plist data.
615         (gnus-process-plist): Remove plist of process after getting it.
616
617 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
618
619         * message.el (message-generate-hashcash): Change default to
620         'opportunistic if hashcash is installed.
621
622         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
623         (gnus-html-put-image): Only call image-size once, since it's somewhat
624         time-consuming on remote X servers.
625
626 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
627
628         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
629         type on data, not a file name.
630
631         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
632         window-pixel-edges for Emacs 21.
633
634         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
635         decoded contents.
636         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
637
638 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
639
640         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
641         group line format, since it isn't very interesting.
642
643         * gnus-agent.el (gnus-agent-short-article),
644         (gnus-agent-long-article): Increase values for these two variables,
645         since most people are likely to have more network connection and
646         storage than before.
647
648         * gnus.el (gnus-refer-article-method): Change default to 'current.
649         When referring an article, the common behaviour is to refer it from the
650         current select method, not the native select method.  The chances of
651         the native select method having the message in question is rather slim
652         these days.
653
654         * gnus-sum.el (gnus-auto-select-subject): Change default to
655         `unseen-or-unread'.  I think it's likely that most people want to
656         select an unseen article over a previously seen, but unread one.
657
658         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
659         means that in the article buffer none of the minor mode elements will
660         be shown, usually, and this is not desirable in most cases.
661
662         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
663         that commands like `d' (and the like) go to the next line in the
664         buffer, instead of the next unread article.  I think this is the
665         behaviour that is most natural for most users.
666         (gnus-single-article-buffer): Change default to nil, so that people can
667         have as many article buffers open as they have summary buffer.  I think
668         this is the most natural way for the groups to behave.
669
670         * message.el (message-generate-new-buffers): Change default to
671         `unsent', so that all new message buffers start their names with the
672         string "*unsent", and it's easier to find the buffers if you move from
673         them.
674
675 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
676
677         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
678         small. They're probably tracking images.
679         (gnus-html-wash-tags): Remove all <pre_int> place holders.
680         (gnus-html-rescale-image): Yet another try at getting the image sizing
681         right.
682
683         * nntp.el (nntp-request-set-mark): Refuse to do marks if
684         nntp-marks-file-name is nil.
685
686 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
687
688         * gnus-html.el (gnus-html-wash-tags)
689         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
690         Better logging.
691
692 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
693
694         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
695
696         * gnus-html.el (gnus-html-wash-tags): Check the value of
697         gnus-blocked-images in the summary buffer.
698
699 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
700
701         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
702
703 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
704
705         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
706         like "a", it seems like.
707         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
708         since it needs to be picked from the correct buffer.
709
710         * nnwfm.el: Removed.
711
712         * nnlistserv.el: Removed.
713
714 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
715
716         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
717         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
718
719 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
720
721         * nnkiboze.el: Removed.
722
723         * nndb.el: Removed.
724
725         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
726         alt text.
727         (gnus-html-rescale-image): Try to get the rescaling logic right for
728         images that are just wide and not tall.
729
730         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
731         overshadow variable bindings.
732
733 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
734
735         * gnus-html.el (gnus-html-wash-tags)
736         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
737         extra logging.
738
739 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
740
741         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
742         (gnus-max-image-proportion): New variable.
743         (gnus-html-rescale-image): New function.
744         (gnus-html-put-image): Rescale images.
745
746 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
747
748         Fix up some byte-compiler warnings.
749         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
750         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
751         (gnus-article-fill-cited-article, gnus-article-hide-citation)
752         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
753         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
754         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
755         (gnus-group-update-group): Use save-excursion and with-current-buffer.
756
757 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
758
759         * gnus-html.el (gnus-article-html): Decode contents by charset.
760
761 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
762
763         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
764         (gnus-html-frame-width, gnus-blocked-images)
765         * message.el (message-prune-recipient-rules): Add custom version.
766         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
767
768         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
769         functions.
770
771         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
772         gnus-process-get.
773
774 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
775
776         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
777         instead of lsub directly.
778
779 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
780
781         * nnwarchive.el: Removed.
782
783         * gnus-soup.el: Removed.
784
785         * nnsoup.el: Removed.
786
787         * nnultimate.el: Removed.
788
789         * gnus-html.el (gnus-blocked-images): New variable.
790
791         * message.el (message-prune-recipients): New function.
792         (message-prune-recipient-rules): New variable.
793
794         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
795         guess whether a long line is natural text or not.
796
797         * gnus-html.el (gnus-html-schedule-image-fetching): Use
798         gnus-process-plist and friends for compatibility.
799
800 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
801
802         * gnus-html.el: Require packages that define macros used in this file.
803         (gnus-article-mouse-face): Declare to silence byte-compiler.
804         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
805         process-get.
806         (gnus-html-put-image): Use plist-get to avoid getf.
807         (gnus-html-prefetch-images): Use with-current-buffer.
808
809 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
810
811         * gnus-ems.el: Provide compatibility functions for
812         gnus-set-process-plist.
813
814         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
815         header-line-format for XEmacs 21.4.
816
817         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
818         * gnus.el (gnus-valid-select-methods)
819         * message.el (message-send-mail-partially-limit)
820         * mm-decode.el (mm-text-html-renderer)
821         * mml.el (mml-insert-mime-headers-always)
822         * smiley.el (smiley-regexp-alist): Bump custom version.
823
824 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
825
826         * gnus-html.el: require mm-url.
827         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
828         with the url to `url'.
829         (gnus-html-wash-tags): Support cid: URLs/images.
830
831 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
832
833         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
834         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
835         bindings, as they aren't useful at all. `w' is moved to `W w'.
836
837         * gnus-move.el: Removed file, since it doesn't really work.
838
839         * gnus-html.el (gnus-article-html): Tell w3m that the input is
840         UTF-8. This seems to fix problems with some German web feeds.
841
842         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
843         at the top so that the proper colours are applied.
844
845         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
846         don't have dots in their names.
847
848         * gnus-art.el (gnus-article-view-part): Doc fix.
849
850         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
851         XEmacs-compatible.
852         (gnus-html-put-image): Don't do images on non-graphic displays.
853
854         * nnslashdot.el: Removed this unused backend.
855
856         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
857         actions.
858         (gnus-undo-register-1): Revert last change.
859
860         * gnus-group.el (gnus-group-completing-read): Protect against not
861         having completion-styles bound.
862
863         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
864         make broken recipients happier.
865
866         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
867
868         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
869         point parameter.
870
871         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
872
873         * gnus-group.el (gnus-group-completing-read): Add 'substring to
874         completion-styles for group selection.
875
876 2009-02-04  Andreas Schwab  <schwab@suse.de>
877
878         * gnus-score.el (gnus-score-string): Fix regex for matching extra
879         headers and regexp-quote the match if necessary.
880
881 2009-03-24  Miles Bader  <miles@gnu.org>
882
883         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
884         the blinking smiley.
885
886 2009-03-24  Simon Josefsson  <simon@josefsson.org>
887
888         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
889         blink smiley.
890
891 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
892
893         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
894         where the dribbel file lives exists.
895
896         * message.el (message-send-mail-partially-limit): Change the default to
897         nil, since most people don't want this.
898
899         * mm-url.el (mm-url-decode-entities): Also decode entities like
900         &#x3212.
901
902 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
903
904         * gnus-sum.el (gnus-summary-idna-message):
905         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
906         Hyperlink urls in docstrings with URL `...'.
907
908 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
909
910         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
911         functions.
912
913 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
914
915         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
916         say what the mouseover text should be.
917
918         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
919         version of the mm-w3m-safe-url-regexp variable to only download images
920         in the groups where we want that to happen.
921
922         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
923
924         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
925         easier debugging.
926         (gnus-article-beginning-of-window): Add kludge to allow spacing past
927         big pictures in the article buffer.
928
929         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
930         gnus-article-html.
931         (mm-text-html-renderer): gnus-article-html needs curl in addition to
932         w3m.
933
934         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
935
936 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
937
938         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
939         which doesn't exist.
940
941         * message.el (message-inhibit-ecomplete): New variable to allow some
942         function to inhibit ecomplete address storage.
943         (message-resend): Disable ecomplete message storage when resending
944         messages.
945
946         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
947
948 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
949
950         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
951         Save excursion while copying, moving, and deleting articles in order to
952         prevent the cursor from jumping to unforeseen place.
953
954 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
955
956         * lpath.el: No need to bind bookmark-current-buffer,
957         bookmark-yank-point and bookmark-make-record-function.
958
959 2010-08-17  Glenn Morris  <rgm@gnu.org>
960
961         * gnus-sync.el: Require gnus components whose functions are used.
962
963         * gnus-art.el (bookmark-make-record-function):
964         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
965         Declare for compiler.
966
967         * mm-url.el (mml-compute-boundary): Autoload.
968
969 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
970
971         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
972
973 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
974
975         Typo fix "hoo4a" -> "hook".
976
977         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
978
979 2010-08-14  Glenn Morris  <rgm@gnu.org>
980
981         * gnus-sync.el (gnus-sync): Fix defgroup version.
982
983 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
984
985         Doc fixes and keep unknown groups (ammended for nunion bug fix).
986
987         * gnus-sync.el: Fix docs.
988         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
989         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
990
991 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
992
993         Optimizations for gnus-sync.el.
994
995         * gnus-sync.el: Add docs about gnus-sync-backend
996         possibilities.
997         (gnus-sync-save): Remove unnecessary message.
998         (gnus-sync-read): Optimize and show what groups were skipped.
999
1000 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1001
1002         Minor bug fixes for gnus-sync.el.
1003
1004         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
1005         read the sync on get-new-news.
1006
1007         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
1008         quiet.
1009
1010         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
1011
1012 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
1013
1014         Make saving and restoring of hidden threads work with overlays.
1015         Patch applied by Ted Zlatanov.
1016
1017         * gnus-sum.el (gnus-hidden-threads-configuration)
1018         (gnus-restore-hidden-threads-configuration): Update to deal with text
1019         properties, rather than searching for a magic character.
1020
1021 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1022
1023         New gnus-sync.el library for synchronization of marks.
1024
1025         * gnus-sync.el: New library for synchronization of marks.
1026
1027         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1028         renamed from `gnus-registry-grep-in-list'.
1029
1030         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1031
1032         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1033
1034 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1035
1036         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1037         determining charset of text fails.
1038
1039 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1040
1041         * nnmail.el (nnmail-get-new-mail-1): Revert.
1042
1043         * nnml.el (nnml-active-number): Make sure names of newly created groups
1044         in nnml-group-alist are encoded.
1045
1046 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1047
1048         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1049         containing non-ASCII characters in active file for nnml back end.
1050
1051 2010-07-24  David Engster  <dengste@eml.cc>
1052
1053         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1054         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1055
1056 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1057
1058         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1059         tag (Bug#6654).
1060
1061 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1062
1063         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1064         the article buffer, not the summary buffer.
1065
1066 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1067
1068         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1069         Emacs 23 as well.
1070
1071 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1072
1073         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1074         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1075
1076 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1077
1078         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1079         Patch applied by Karl Fogel.
1080
1081         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1082         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1083
1084 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1085
1086         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1087         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1088         C-w still not working correctly from Article buffers; Thierry's
1089         patch to fix that will be applied after this.
1090
1091         * gnus-art.el (bookmark-make-record-function): New local variable.
1092
1093         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1094         article buffer.
1095         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1096
1097 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1098
1099         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1100         on changes in bookmark.el.
1101
1102 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1103
1104         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1105         `no-log' instead of message not to log prompt string.
1106
1107 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1108
1109         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1110         the *other* type of HTML form submission.
1111
1112 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1113
1114         * auth-source.el (auth-source-pick): If choice does not contain a
1115         questioned keyword, set the check to t.
1116
1117 2010-06-12  Romain Francoise  <romain@orebokech.com>
1118
1119         * gnus-util.el (gnus-date-get-time): Move up before first use.
1120
1121 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1122
1123         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1124         (gnus-article-edit-part): Bind it to make last part that is substituted
1125         or deleted visible.
1126         (gnus-mime-display-single): Buttonize part of which id equals to
1127         gnus-mime-buttonized-part-id.
1128
1129 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1130
1131         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1132         (gnus-dd-mmm): Use gnus-date-get-time.
1133         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1134         simplify logic.
1135         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1136         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1137
1138 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1139
1140         * auth-source.el (top): Autoload `secrets-list-collections',
1141         `secrets-create-item', `secrets-delete-item'.
1142         (auth-sources): Fix tag string.
1143         (auth-get-source, auth-source-retrieve, auth-source-create)
1144         (auth-source-delete): New defuns.
1145         (auth-source-pick): Rewrite in order to avoid 2 passes.
1146         (auth-source-forget-user-or-password): New parameter USERNAME.
1147         (auth-source-user-or-password): New parameters CREATE-MISSING and
1148         DELETE-EXISTING.  Retrieve password interactively, if needed.
1149
1150 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1151
1152         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1153         deleting unused directories when gnus-expert-user is t.
1154
1155 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1156
1157         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1158         for each temp file when gnus-article-browse-delete-temp is ask.
1159
1160 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1161
1162         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1163         Lisp calls to delete-backward-char by calls to delete-char.
1164
1165 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1166
1167         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1168
1169 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1170
1171         * password-cache.el (password-cache-remove): Fix docstring.
1172
1173 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1174
1175         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1176         article unless decoding article to be saved.
1177
1178 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1179
1180         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1181         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1182         generated within the mm-with-unibyte-current-buffer macro.
1183
1184 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1185
1186         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1187         to nil when we're in a mml-preview buffer and no group is selected.
1188
1189 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1190
1191         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1192         when catching the `C-g'.  Reported by "Leo".
1193
1194 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1195
1196         * message.el (message-forward-make-body-plain)
1197         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1198         multibyte-string-p.
1199
1200         * lpath.el: Revert.
1201
1202 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1203
1204         * message.el (message-forward-make-body-mml): Assume original message
1205         is multibyte string; error on unibyte.
1206         (message-forward-make-body-plain): Ditto; don't add excessive newline
1207         in body end.
1208
1209         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1210
1211 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1212
1213         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1214         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1215
1216 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1217
1218         * mm-extern.el (mm-extern-url): Don't use
1219         mm-with-unibyte-current-buffer.
1220         (mm-extern-cache-contents): Use with-current-buffer instead of
1221         save-excursion + set-buffer.
1222
1223 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1224
1225         * mm-util.el (mm-emacs-mule): Remove.
1226
1227 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1228
1229         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1230         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1231         change.
1232
1233 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1234
1235         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1236         bind the default value of enable-multibyte-characters to nil.
1237
1238 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1239
1240         * message.el (message-forward-make-body-plain)
1241         (message-forward-make-body-mml):
1242         Don't use mm-with-unibyte-current-buffer.
1243
1244 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1245
1246         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1247
1248 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1249
1250         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1251         (Bug#5592).
1252
1253 2010-05-07  Julien Danjou  <julien@danjou.info>
1254
1255         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1256         it to mm-pipe-part.
1257
1258         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1259         it is given.
1260
1261 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1262
1263         * binhex.el (binhex-decode-region-internal)
1264         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1265         (dns-query)
1266         * nnweb.el (nnweb-gmane-search)
1267         * pgg-parse.el (pgg-parse-armor)
1268         * pgg.el (pgg-verify-region)
1269         * sha1.el (sha1-string-external)
1270         * uudecode.el (uudecode-decode-region-internal)
1271         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1272         XEmacs.
1273
1274         * gnus-art.el (gnus-article-browse-html-parts)
1275         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1276         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1277         make-temp-file.
1278
1279         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1280         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1281         compiling.
1282
1283         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1284         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1285         XEmacs when compiling.
1286
1287         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1288         gnus-pick-mode-off-hook for XEmacs when compiling.
1289         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1290         gnus-binary-mode-off-hook for XEmacs when compiling.
1291
1292         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1293         nil if char-charset is not available.
1294
1295         * imap.el (imap-disable-multibyte)
1296         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1297         macros.
1298
1299         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1300         instead of encode-coding-string.
1301
1302         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1303         'xemacs) instead of mm-emacs-mule to switch function definitions.
1304         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1305
1306         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1307         bind temporary-file-directory for XEmacs;
1308         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1309         timer-set-function for XEmacs 21.4 and SXEmacs;
1310         bind timer-list for XEmacs 21.4 and SXEmacs;
1311         fbind char-charset and find-charset-region for non-Mule XEmacs;
1312         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1313         encode-coding-region and encode-coding-string for XEmacs having no
1314         file-coding feature.
1315
1316 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1317
1318         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1319
1320 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1321
1322         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1323         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1324
1325 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1326
1327         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1328         alias `jka-compr-delete-temp-file' no longer exists.
1329
1330 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1331
1332         Use define-minor-mode in Gnus where applicable.
1333         * mml.el (mml-mode): Use define-minor-mode.
1334         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1335         (gnus-undo-mode): Use define-minor-mode.
1336         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1337         (gnus-dead-summary-mode): Use define-minor-mode.
1338         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1339         Initialize in declaration.
1340         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1341         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1342         (gnus-mailing-list-mode): Use define-minor-mode.
1343         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1344         (gnus-draft-mode): Use define-minor-mode.
1345         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1346         (gnus-dired-mode): Use define-minor-mode.
1347
1348 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1349
1350         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1351         handles on recursive mml-to-mime translation and check them for
1352         boundary delimiter collisions.  Reported by Greg Troxel.
1353
1354 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1355
1356         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1357
1358 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1359
1360         * mm-util.el (mm-find-buffer-file-coding-system):
1361         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1362
1363 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1364
1365         * message.el (message-generate-headers): Record insertion of optional
1366         headers as well.  Otherwise the check to prevent repeated insertion of
1367         optional headers is a no-op.
1368
1369 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1370
1371         * smime.el: Don't mention CVS.
1372
1373         * nnrss.el (nnrss-fetch): Don't mention CVS.
1374
1375         * nnir.el: Don't mention CVS.
1376
1377 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1378
1379         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1380
1381 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1382
1383         * lpath.el: Fbind bookmark-default-handler,
1384         bookmark-get-bookmark-record, bookmark-make-record-default,
1385         bookmark-prop-get for Emacs <23 and XEmacs.
1386
1387 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1388
1389         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1390         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1391         Use with-current-buffer to silence the byte-compiler.
1392         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1393         bother to require `gnus'.
1394         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1395
1396 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1397
1398         * gnus-sum.el (gnus-summary-bookmark-make-record)
1399         (gnus-summary-bookmark-jump): New functions.
1400         (gnus-summary-mode): Setup bookmark support.
1401
1402 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1403
1404         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1405         if set.
1406
1407 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1408
1409         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1410         gnus-article-browse-html-save-cid-image; make it work recursively for
1411         forwarded messages as well.
1412         (gnus-article-browse-html-parts): Work when prefix arg is given.
1413         (gnus-article-browse-html-article): Doc fix.
1414
1415 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1416
1417         * message.el (message-default-mail-headers):
1418         (message-default-headers): Carry the value mail-default-headers over
1419         into message-default-mail-headers, rather than message-default-headers.
1420
1421 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1422
1423         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1424         charset.
1425
1426         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1427         charset into the <meta> tag when the article is encoded to utf-8.
1428
1429 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1430
1431         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1432         directories as well.
1433         (gnus-article-browse-html-parts): Work for images that do not specify
1434         file names; delete temp directory when quitting; insert header at the
1435         right place; use file: scheme for image files.
1436
1437 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1438
1439         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1440         (gnus-article-browse-html-parts): Use it to make temporary cid image
1441         files in addition to html file so that browser may display them.
1442
1443 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1444
1445         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1446
1447 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1448
1449         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1450
1451 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1452
1453         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1454         about Secret Service API sources.  Improve Customize options.
1455         (auth-source-pick): Change to accept any number of search parameters.
1456         Implement fallbacks iteratively, not recursively.  Add scoring on the
1457         second pass and sort by score.  Call Secret Service API when needed.
1458         (auth-source-user-or-password): Use it.  Call Secret Service API
1459         directly when needed to get the user name and the password.
1460
1461 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1462
1463         * message.el (message-interactive): Doc fix.
1464         (message-qmail-inject-args): Reflow.
1465         (message-kill-to-signature): Fix typo in docstring.
1466
1467         * smiley.el (smiley-buffer): Fix typo in docstring.
1468
1469 2010-03-24  Glenn Morris  <rgm@gnu.org>
1470
1471         * mail-source.el (gnus-message): Declare.
1472         (mail-source-delete-old-incoming): Require gnus-util.
1473
1474 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1475
1476         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1477
1478         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1479
1480         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1481         password-cache's default if it is not bound.
1482         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1483         password-cache-expiry's default if it is not bound.
1484
1485         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1486         available in Emacs 21.
1487
1488         * lpath.el: Suppress compiler warnings for:
1489         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1490         XEmacs;
1491         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1492         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1493         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1494
1495 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1496
1497         * auth-source.el (auth-sources): Fix up definition so extra parameters
1498         are always inline.
1499
1500 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1501
1502         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1503         wasn't updated after mismatch.  Clear cached mailbox info correctly
1504         when uidvalidity changes.
1505         (nnimap-group-prefixed-name): New function to avoid some code
1506         duplication.
1507         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1508         (nnimap-request-group): Use it.
1509         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1510         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1511         with many imap folders.  This is done by caching the group status from
1512         the imap server persistently in a group parameter `imap-status'.  (This
1513         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1514         but not persistently, so every Gnus startup was still very slow.)
1515
1516 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1517
1518         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1519         delete the extra newline.  Otherwise editing of :string and :number
1520         types don't work.
1521
1522 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1523
1524         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1525         secrets.el dependency.
1526         (auth-sources): Add optional user name.  Add secrets.el configuration
1527         choice (unused right now).
1528
1529 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1530
1531         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1532         `gnus-registry-install-shortcuts' fill in the functions.
1533
1534         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1535         warnings.
1536         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1537         (gnus-registry-install-shortcuts): Populate and use it in a
1538         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1539
1540 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1541
1542         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1543         In-place substitutions for the group name encoding/decoding.
1544         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1545         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1546         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1547         (nnimap-update-unseen, nnimap-request-list)
1548         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1549         (nnimap-request-set-mark, nnimap-split-to-groups)
1550         (nnimap-split-articles, nnimap-request-newgroups)
1551         (nnimap-request-create-group, nnimap-request-accept-article)
1552         (nnimap-request-delete-group, nnimap-request-rename-group)
1553         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1554         `encoded-mbx' for consistency.
1555         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1556         variable `imap-current-mailbox'.
1557
1558         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1559         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1560
1561 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1562
1563         * pop3.el (pop3-display-message-size-flag): Display message size byte
1564         counts during POP3 download.
1565         (pop3-movemail): Use it.
1566         (pop3-list): Implement listing of available messages.
1567
1568 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1569
1570         * nnir.el (nnir-get-article-nov-override-function): New function to
1571         override the normal NOV retrieval.
1572         (nnir-retrieve-headers): Use it.
1573
1574 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1575
1576         * auth-source.el (netrc-machine-user-or-password): Autoload.
1577
1578 2010-03-19  Glenn Morris  <rgm@gnu.org>
1579
1580         Stop message.el from loading about 40 libraries it doesn't always need.
1581         The general approach is to autoload rather than require, and to
1582         require in the specific functions rather than the file.  (Bug#5642)
1583
1584         * gmm-utils.el: Don't require wid-edit.
1585         (widget-create-child-value, widget-convert, widget-default-get):
1586         Autoload.
1587
1588         * gnus-util.el: Don't require time-date, netrc.
1589         (message-fetch-field, gnus-group-name-decode): Declare rather than
1590         autoloading.
1591         (gnus-fetch-field): Require message.
1592         (gnus-decode-newsgroups): Require gnus-group.
1593
1594         * ietf-drums.el: Don't require time-date.
1595
1596         * message.el: Don't require hashcash, canlock, ecomplete.
1597         Do require mail-utils.  Require nnheader only when compiling.
1598         (smtpmail-default-smtp-server): Remove declaration.
1599         (message-send-mail-function): Check smtpmail-default-smtp-server
1600         is bound rather than requiring smtpmail.
1601         (message-auto-save-directory, message-insert-signature): Use
1602         expand-file-name rather than nnheader-concat.
1603         (nnheader-insert-file-contents): Autoload.
1604         (hashcash-wait-async): Declare.
1605         (message-send-mail): Only call gnus-setup-posting-charset if
1606         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1607         (message-send-mail-with-sendmail): Require sendmail.
1608         (canlock-password, canlock-password-for-verify): Declare.
1609         (message-canlock-password): Require canlock.
1610         (nnheader-get-report): Autoload.
1611         (gnus-setup-posting-charset): Declare.
1612         (message-send-news): Require gnus-msg.
1613         (message-make-references, message-make-in-reply-to): Use mail-header-id
1614         rather than the alias mail-header-message-id.
1615         (ecomplete-add-item, ecomplete-save): Declare.
1616         (message-put-addresses-in-ecomplete): Require ecomplete.
1617         (ecomplete-display-matches): Autoload.
1618
1619         * mm-decode.el: Don't require mailcap, gnus-util.
1620         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1621         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1622         Autoload.
1623         (mailcap-mime-extensions): Declare.
1624
1625         * mm-encode.el: Don't require mailcap.
1626         (mailcap-extension-to-mime): Autoload.
1627
1628         * mml-sec.el: Don't require password-cache.
1629
1630         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1631         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1632         (mml-minibuffer-read-type): Require mailcap.
1633         (mml-preview): Require gnus-msg.
1634
1635         * mml1991.el: Require password-cache.
1636         (password-cache-expiry): Remove declaration.
1637
1638         * mml2015.el: Require password-cache.
1639         (password-cache-expiry): Remove declaration.
1640
1641         * nneething.el (mailcap): Require mailcap.
1642
1643         * nnheader.el (declare-function): Add compatibility stub.
1644         (message-remove-header): Declare rather than autoload.
1645         (nnheader-replace-header): Require message.
1646
1647         * nnimap.el (declare-function): Add compatibility stub.
1648         (netrc-parse, netrc-machine-user-or-password): Declare.
1649         (nnimap-open-connection): Require netrc.
1650
1651         * nntp.el (declare-function): Add compatibility stub.
1652         (netrc-parse, netrc-machine, netrc-get): Declare.
1653         (nntp-send-authinfo): Require netrc.
1654
1655         * rfc2047.el: Don't require qp.
1656         (quoted-printable-encode-region, quoted-printable-decode-string):
1657         Autoload.
1658
1659         * sieve-mode.el: Don't require easymenu.
1660         (easy-menu-add-item): Autoload it.
1661
1662         * spam-stat.el (time-to-number-of-days): Autoload it.
1663
1664 2010-03-19  Glenn Morris  <rgm@gnu.org>
1665
1666         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1667
1668 2010-03-18  Glenn Morris  <rgm@gnu.org>
1669
1670         * hashcash.el (declare-function): Remove duplicate definition.
1671
1672 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1673
1674         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1675         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1676         value if any backslash escapes).
1677
1678 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1679
1680         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1681         if it is available.  (bug#5647)
1682
1683         * lpath.el: Suppress compiler warning for coding-system-from-name for
1684         Emacs 21 and XEmacs.
1685
1686 2010-03-14  Juri Linkov  <juri@jurta.org>
1687
1688         * hmac-def.el:
1689         * hmac-md5.el:
1690         * netrc.el: Fix keywords.
1691
1692 2010-02-26  Glenn Morris  <rgm@gnu.org>
1693
1694         * message.el (message-send-mail-function): Change the default, so that
1695         it inherits from a customized send-mail-function.  (Bug#5643)
1696
1697 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1698
1699         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1700         shell-command-to-string signals an error (bug#5299).
1701
1702 2010-02-24  Glenn Morris  <rgm@gnu.org>
1703
1704         * message.el (message-smtpmail-send-it)
1705         (message-send-mail-with-mailclient): Doc fixes.
1706
1707 2010-02-16  Glenn Morris  <rgm@gnu.org>
1708
1709         * message.el (message-default-mail-headers): Change the default value
1710         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1711
1712 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1713
1714         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1715         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1716
1717 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1718
1719         * time-date.el (date-to-time): Doc fix (Bug#5408).
1720
1721 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1722
1723         * message.el (message-mail): Just pass yank-action on to message-setup.
1724         (message-setup): Handle (FUN . ARGS) form of yank-action.
1725         (message-with-reply-buffer, message-widen-reply)
1726         (message-yank-original): Handle non-buffer values of
1727         message-reply-buffer (Bug#4080).
1728         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1729
1730 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1731
1732         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1733         Fix typo in docstring.
1734
1735 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1736
1737         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1738         response.
1739
1740 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1741
1742         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1743
1744         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1745
1746         * message.el (message-check-news-header-syntax): Protect against a
1747         string that `rfc822-addresses' returns when parsing fails.
1748
1749 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1750
1751         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1752         (gnus-previous-char-property-change): New functions.
1753
1754         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1755
1756 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1757
1758         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1759         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1760
1761 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1762
1763         * message.el (message-exchange-point-and-mark): Rework last change to
1764         avoid using optional arg of exchange-point-and-mark, for backward
1765         compatibility.
1766
1767 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1768
1769         * message.el (message-exchange-point-and-mark): Call
1770         exchange-point-and-mark with an argument rather than setting
1771         mark-active by hand (Bug#5175).
1772
1773 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1774
1775         * nntp.el (nntp-service-to-port): Work for service expressed with
1776         numeric string; replace [:digit:] with [0-9] for XEmacs.
1777
1778 2009-12-17  Glenn Morris  <rgm@gnu.org>
1779
1780         * gnus-group.el (gnus-bug-group-download-format-alist):
1781         Change emacs entry to debbugs.gnu.org.  Bump :version.
1782
1783 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1784
1785         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1786
1787 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1788
1789         * message.el (message-info): Explain why we use `Info-goto-node'.
1790
1791 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1792
1793         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1794
1795 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1796
1797         * message.el (message-completion-in-region): New compatibility function.
1798         (message-expand-group): Use it.
1799
1800 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1801
1802         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1803         with no unread article should be listed if the 2nd arg `predicate' is
1804         given.
1805
1806 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1807
1808         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1809
1810 2009-11-29  Juri Linkov  <juri@jurta.org>
1811
1812         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1813         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1814         on `gnus-recenter'. (Bug#4698, Bug#4981)
1815
1816 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1817
1818         * sha1.el (sha1-string-external): default-directory "/" in case
1819         otherwise non-existent.  process-connection-type pipe for touch of
1820         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1821
1822 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1823
1824         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1825         it's comms related and sgml-mode.el has "comm" on that basis too.
1826
1827 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1828
1829         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1830         containing tspecial characters if they have been already quoted.
1831
1832 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1833
1834         * dns-mode.el (auto-mode-alist): Purecopy string.
1835
1836 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1837
1838         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1839
1840 2009-10-24  Glenn Morris  <rgm@gnu.org>
1841
1842         * gnus-art.el (help-xref-stack-item): Define for compiler.
1843
1844 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1845
1846         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1847
1848 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1849
1850         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1851
1852 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1853
1854         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1855         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1856
1857 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1858
1859         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1860         (gnus-overlays-in): New alias to overlays-in.
1861
1862         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1863         gnus-overlay-get, and gnus-delete-overlay.
1864         (gnus-summary-show-thread): Make it work as well for systems in which
1865         next-single-char-property-change is not available.
1866         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1867
1868         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1869         (gnus-overlay-get): New alias to extent-property.
1870         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1871
1872         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1873         SXEmacs.
1874
1875         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1876         SXEmacs.
1877
1878 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1879
1880         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1881
1882 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1883
1884         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1885         and XEmacs that don't have `remove-overlays'.
1886
1887 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1888
1889         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1890         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1891         selective display.  Use overlays instead.
1892
1893 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1894
1895         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1896
1897 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1898
1899         * spam-stat.el (spam-stat-load): Fix typo in message.
1900
1901 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
1902
1903         * dig.el (dig-invoke): Fix typo in docstring.
1904         (query-dig): Reflow docstring.
1905
1906 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1907
1908         * gnus-art.el (gnus-article-encrypt-body):
1909         * message.el (message-check-recipients):
1910         * mm-util.el (mm-codepage-setup):
1911         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1912         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1913
1914 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1915
1916         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1917         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1918         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1919         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1920         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1921
1922 2009-09-21  Kevin Ryde  <user42@zip.com.au>
1923
1924         * dig.el: Add "Keywords: comm", as per net-utils.el.
1925
1926 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1927
1928         * dig.el (dig-mode): Use define-derived-mode.
1929
1930 2009-09-19  Glenn Morris  <rgm@gnu.org>
1931
1932         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
1933
1934 2009-09-18  Glenn Morris  <rgm@gnu.org>
1935
1936         * gnus-diary.el (gnus-diary-check-message):
1937         * message.el (message-insert-formatted-citation-line):
1938         * nnbabyl.el (top-level):
1939         * nndiary.el (nndiary-schedule):
1940         Fix typos in condition-case handlers.
1941
1942 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1943
1944         * gnus-art.el (gnus-article-edit-part): Work for the buffer
1945         configuration that provides the sole article window in a frame;
1946         position point correctly after deleting a part.
1947
1948 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
1949
1950         * spam.el (spam-unregister-on-reregister): Add boolean variable.
1951         (spam-resolve-registrations-routine): Use it to unregister articles
1952         that change status.
1953
1954 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1955
1956         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
1957         with XEmacs.
1958         (parse-time-string-chars): Use it.
1959
1960 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
1961
1962         * imap.el (imap-interactive-login): Better messages.
1963         (imap-open): Fix bug with renamed buffer on reconnect.
1964         (imap-authenticate): Add buffer-local imap-last-authenticator variable
1965         for easier debugging and cleaner code.  On successful (guessed based on
1966         server capabilities) secondary authentication, set imap-state
1967         correctly.
1968         (imap-last-authenticator): Define imap-last-authenticator as a variable
1969         to avoid warnings.
1970
1971 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1972
1973         * nnrss.el (nnrss-request-article): Remove binding of
1974         default-enable-multibyte-characters that has gotten needless by
1975         the 2007-07-13 change in rfc2047-encode-message-header.
1976
1977         * mml.el (mml-insert-multipart): Error on the message header.
1978         (mml-insert-part): Error on the message header; position point at
1979         the end of a MIME tag.
1980
1981 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1982
1983         * time-date.el (autoload): Expand define-obsolete-function-alias into
1984         defalias and make-obsolete for old Emacsen that Gnus supports.
1985         (with-no-warnings): Define it for old Emacsen.
1986         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
1987         is available.
1988         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
1989         float-time is available; suppress compile warning for time-to-seconds.
1990
1991         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
1992         (gnus-float-time): Alias to float-time if it exists.
1993
1994         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
1995         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
1996         float-time is available; suppress compile warning for time-to-seconds.
1997
1998         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
1999         XEmacs.
2000
2001 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
2002
2003         * imap.el (imap-message-map): Docstring fix.
2004
2005 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2006
2007         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
2008         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
2009         Add the optional argument `encoding' that overrides the default.
2010
2011         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
2012         mm-encode-buffer.
2013
2014 2009-09-04  Glenn Morris  <rgm@gnu.org>
2015
2016         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2017         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2018         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2019         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2020         * mm-util.el (mm-with-unibyte-current-buffer)
2021         (mm-find-buffer-file-coding-system):
2022         * yenc.el (yenc-decode-region): Use default-value rather than
2023         default-enable-multibyte-characters.
2024
2025 2009-09-03  Glenn Morris  <rgm@gnu.org>
2026
2027         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2028         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2029         than default-enable-multibyte-characters.
2030
2031 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2032
2033         * gnus-art.el (gnus-article-read-summary-keys):
2034         Fix gnus-buffer-configuration's value temporarily used.
2035
2036 2009-09-02  Glenn Morris  <rgm@gnu.org>
2037
2038         * gnus-util.el (gnus-float-time): New function.
2039         * gnus-delay.el (gnus-delay-article):
2040         * gnus-sum.el (gnus-thread-latest-date):
2041         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2042         * nnspool.el (nnspool-request-newgroups):
2043         Use gnus-float-time rather than time-to-seconds.
2044         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2045
2046         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2047         (gnus-header-subject-face, gnus-header-newsgroups-face)
2048         (gnus-header-name-face, gnus-header-content-face):
2049         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2050         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2051         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2052         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2053         (gnus-cite-face-11):
2054         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2055         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2056         (gnus-server-closed-face, gnus-server-denied-face)
2057         (gnus-server-offline-face):
2058         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2059         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2060         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2061         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2062         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2063         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2064         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2065         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2066         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2067         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2068         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2069         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2070         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2071         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2072         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2073         (gnus-summary-high-undownloaded-face)
2074         (gnus-summary-low-undownloaded-face)
2075         (gnus-summary-normal-undownloaded-face)
2076         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2077         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2078         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2079         (gnus-splash-face):
2080         * message.el (message-header-to-face, message-header-cc-face)
2081         (message-header-subject-face, message-header-newsgroups-face)
2082         (message-header-other-face, message-header-name-face)
2083         (message-header-xheader-face, message-separator-face)
2084         (message-cited-text-face, message-mml-face):
2085         * sieve-mode.el (sieve-control-commands-face)
2086         (sieve-action-commands-face, sieve-test-commands-face)
2087         (sieve-tagged-arguments-face):
2088         * spam.el (spam-face):
2089         Mark face aliases with "-face" in the name as obsolete.
2090
2091 2009-09-01  Glenn Morris  <rgm@gnu.org>
2092
2093         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2094         than goto-line.
2095
2096 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2097
2098         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2099         Don't move point if the command is invoked inside the message header.
2100
2101 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2102
2103         * imap.el (imap-send-command): Simplify.
2104         (imap-wait-for-tag): point-max -> buffer-size.
2105
2106 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2107
2108         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2109         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2110         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2111         * nnir.el (nnir-swish-e-index-file):
2112         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2113         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2114         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2115         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2116         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2117         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2118
2119 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2120
2121         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2122         Don't save excursion.
2123
2124 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2125
2126         * nnheader.el (nnheader-find-file-noselect):
2127         * mm-util.el (mm-insert-file-contents):
2128         Use (default-value 'major-mode) instead of default-major-mode.
2129
2130 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2131
2132         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2133
2134 2009-08-26  Glenn Morris  <rgm@gnu.org>
2135
2136         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2137         than placing in files.el.
2138
2139 2009-08-25  Glenn Morris  <rgm@gnu.org>
2140
2141         * nnir.el (top-level): Don't require cl at run-time.
2142         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2143         Replace cl-function substitute with gnus-replace-in-string.
2144         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2145         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2146         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2147         simplified expansions.
2148
2149 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2150
2151         * dig.el (dig): Add autoload cookie.
2152
2153 2009-08-22  Glenn Morris  <rgm@gnu.org>
2154
2155         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2156         goto-line.
2157
2158 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2159
2160         * parse-time.el (parse-time-string-chars): Save match data.
2161
2162 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2163
2164         * parse-time.el (parse-time-string-chars): Compute using character
2165         classes, to handle non-ascii characters (Bug#3190).
2166
2167 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2168
2169         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2170
2171         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2172         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2173         (gnus-mm-display-part, gnus-mime-display-single)
2174         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2175         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2176
2177         * gnus-sum.el
2178         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2179         (gnus-summary-move-article): Add expirable mark to articles copied or
2180         moved to group that has auto-expire turned on if the option is non-nil.
2181
2182 2009-07-24  Glenn Morris  <rgm@gnu.org>
2183
2184         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2185         Fix typo.  (Bug#3903)
2186
2187 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2188
2189         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2190         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2191         that should not be used for draft articles.
2192         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2193         that has no concern in minor mode keys.
2194         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2195         Abolish.
2196
2197 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2198
2199         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2200         article without making inquiry to a user for unknown encoding.
2201
2202         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2203         (nnmaildir--scan): Assume i-node and device number that file-attributes
2204         returns might be cons-cell.
2205
2206         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2207
2208         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2209
2210 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2211
2212         * auth-source.el: Remove docs now in auth.texi.  Don't use
2213         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2214         `auth-source-hide-passwords' and use them.
2215
2216 2009-07-15  Glenn Morris  <rgm@gnu.org>
2217
2218         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2219
2220 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2221
2222         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2223         excessive whitespace from the default values of title and description.
2224
2225 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2226
2227         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2228         mail-fetch-field to fetch Content-Description header in order to
2229         exclude newlines.
2230
2231 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2232
2233         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2234         format used by GnuPG 2.0.11.
2235
2236 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2237
2238         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2239         to deleted part.
2240
2241 2009-05-30  David Engster  <dengste@eml.cc>
2242
2243         * nnmairix.el: Remove old documentation in the commentary block.
2244         (nnmairix-request-group): Do not update active file for nnml back ends.
2245         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2246         end so that overview files are ignored.
2247         (nnmairix-update-groups): Make updating the groups more robust by using
2248         marks.
2249         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2250         with dollar characters in message-id.
2251
2252 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2253
2254         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2255         2008-12-25 in dns.el.
2256
2257 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2258
2259         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2260         could happen if the text is only composed of spaces and/or tabs.
2261
2262 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2263
2264         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2265         when sending a queued message to avoid extra mml tags.
2266
2267 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2268
2269         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2270
2271 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2272
2273         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2274         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2275         rmail-toggle-header for XEmacs;
2276         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2277
2278 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2279
2280         * gnus-dired.el: Remove autoload for gnus-setup-message.
2281         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2282         displaying Gnus logo; always use compose-mail.
2283
2284 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2285
2286         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2287
2288 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2289
2290         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2291         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2292         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2293         available.
2294         (gnus-nocem-epg-verify): New function.
2295
2296 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2297
2298         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2299
2300 2009-02-15  Glenn Morris  <rgm@gnu.org>
2301
2302         * gnus-util.el (rmail-insert-rmail-file-header)
2303         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2304         autoloads.
2305         (rmail-default-rmail-file): Remove unnecessary declaration.
2306         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2307
2308 2009-02-14  Glenn Morris  <rgm@gnu.org>
2309
2310         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2311         variable (only used in gnus-util, which declares it anyway).
2312         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2313         which was only needed by gnus-art (changed to not use it any more).
2314         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2315         only used in gnus-util, which autoloads it itself.
2316         (rmail-update-summary): Fix autoload.
2317
2318         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2319         rather than rmail-output-to-rmail-file.
2320
2321 2009-02-07  Glenn Morris  <rgm@gnu.org>
2322
2323         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2324         autoload of function that no longer exists.
2325         (rmail-toggle-header): Declare.
2326         (message-forward-rmail-make-body): Handle mbox Rmail.
2327
2328 2009-01-31  Glenn Morris  <rgm@gnu.org>
2329
2330         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2331         2009-01-09 change.
2332
2333 2009-01-31  Dave Love  <fx@gnu.org>
2334
2335         * imap.el (imap-fetch-safe): Bind debug-on-error.
2336         (imap-debug): Add imap-fetch-safe.
2337
2338 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2339
2340         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2341         (auth-source-forget-all-cached): New convenience function.
2342         (auth-source-user-or-password): Accept list of modes or a single mode.
2343
2344         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2345         auth-source modes.
2346
2347         * netrc.el (netrc-machine-user-or-password): Use list of
2348         auth-source modes.
2349
2350         * nnimap.el (nnimap-open-connection): Use list of
2351         auth-source modes.
2352
2353         * nntp.el (nntp-send-authinfo): Use list of
2354         auth-source modes.
2355
2356 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2357
2358         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2359         now.
2360
2361 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2362
2363         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2364         coding system in XEmacs; add a workaround for XEmacs.
2365
2366         * lpath.el: Fbind coding-system-aliasee.
2367
2368 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2369
2370         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2371         of current-language-environment.
2372
2373 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2374
2375         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2376         available at runtime.
2377
2378 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2379
2380         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2381
2382 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2383
2384         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2385         the greatest positive fixnum value doesn't work under an XEmacs with
2386         bignum support; use the most-positive-fixnum constant instead,
2387         available since Emacs 21.1 with cl and XEmacs 21.1.
2388
2389 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2390
2391         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2392         XEmacs gets not to work.
2393
2394 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2395
2396         * mm-util.el (mm-coding-system-priorities): Allow the value like
2397         "Japanese (UTF-8)" of current-language-environment.
2398
2399 2009-01-09  Glenn Morris  <rgm@gnu.org>
2400
2401         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2402         with last-command-event.
2403
2404 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2405
2406         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2407         in the doc string.
2408
2409         * message.el (message-fix-before-sending): Amend comment.
2410
2411 2009-01-08  Dave Love  <fx@gnu.org>
2412
2413         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2414
2415 2009-01-07  David Engster  <dengste@eml.cc>
2416
2417         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2418         simplified server definitions by converting it via
2419         gnus-server-to-method.
2420
2421 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2422
2423         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2424         parameter's operands.
2425
2426 2009-01-06  David Engster  <dengste@eml.cc>
2427
2428         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2429         primary select method (for gnus-group-mark-article-as-read).
2430
2431 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2432
2433         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2434         `(gnus)Face', not `(gnus)X-Face'.
2435
2436 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2437
2438         * mm-util.el (mm-ucs-to-char): New function.
2439
2440         * mm-url.el (mm-url-decode-entities): Use it.
2441
2442         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2443         unicode-to-char.
2444
2445 2009-01-05  Dave Love  <fx@gnu.org>
2446
2447         * time-date.el: Require cl for `declare'.
2448
2449 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2450
2451         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2452         Dave Love.
2453
2454 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2455
2456         * message.el (message-fix-before-sending): Add `eight-bit' to
2457         illegible-text check.
2458
2459 2009-01-03  Michael Olson  <mwolson@gnu.org>
2460
2461         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2462         `headers' is nil.  This can occur if the IMAP server does not have
2463         permissions to read messages from a folder, but can write new messages
2464         to the folder.
2465         (nnimap-request-article-part): Do not insert `data' if it is nil.
2466
2467         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2468         characters which will confuse `read', so skip past them.
2469
2470 2009-01-01  Dave Love  <fx@gnu.org>
2471
2472         * imap.el (imap-string-to-integer): Fix typo.
2473         (imap-fetch-safe): New function.
2474         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2475
2476         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2477
2478         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2479         (imap-parse-greeting): Fix doc strings.
2480         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2481         (imap-parse-flag-list): Make messages unique.
2482         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2483
2484         * nnimap.el: Fix author email.
2485         (nnimap-split-rule): Add FIXME comment.
2486         (nnimap-debug): Fix doc string.
2487
2488 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2489
2490         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2491
2492 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2493
2494         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2495         nslookup if resolv.conf isn't available.
2496         (dns-query): Rename from query-dns.
2497         (dns-query-cached): Rename from query-dns-cached.
2498
2499 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2500
2501         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2502         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2503         to check if those variables exist (first appeared in Emacs 18.50).
2504
2505 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2506
2507         * mm-util.el (mm-line-number-at-pos): New function.
2508
2509         * spam-report.el (spam-report-process-queue): Use it.
2510
2511 2008-12-24  David Engster  <dengste@eml.cc>
2512
2513         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2514         parameters that haven't existed as variables as buffer-local variables.
2515
2516 2008-12-23  Dave Love  <fx@gnu.org>
2517
2518         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2519         cadar.
2520
2521         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2522         imap-starttls-p.
2523         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2524
2525 2008-12-22  Dave Love  <fx@gnu.org>
2526
2527         * imap.el: Fix author email.  Doc fixes.
2528         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2529         reply.
2530
2531 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2532
2533         * spam-report.el (spam-report-gmane-max-requests): New constant.
2534         (spam-report-gmane-wait): New variable.
2535         (spam-report-gmane-ham, spam-report-gmane-spam)
2536         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2537         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2538         the server.
2539
2540         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2541         Add explanations.
2542
2543         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2544         nnheader-accept-process-output and nnheader-read-timeout if available.
2545         (pop3-movemail): Use it.
2546
2547         * message.el (message-check-news-body-syntax): Fix signature check if
2548         there's an attachment.
2549
2550 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2551
2552         * mm-util.el: Add comments to the mm- emulating functions.
2553
2554 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2555
2556         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2557         by Stephen Berman <stephen.berman@gmx.net>.
2558
2559 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2560
2561         * mm-util.el (mm-substring-no-properties): New function.
2562         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2563         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2564         (mm-string-to-multibyte): Doc fix.
2565
2566         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2567
2568 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2569
2570         * mml.el (mml-attach-file): Strip text properties from file name.
2571         (Bug#1574)
2572
2573 2008-12-16  Glenn Morris  <rgm@gnu.org>
2574
2575         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2576
2577 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2578
2579         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2580         knows since the charset specified might be a bogus alias that
2581         mm-charset-synonym-alist provides.
2582
2583 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2584
2585         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2586         "ISO_8859-1".
2587
2588         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2589
2590 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2591
2592         * mm-util.el (mm-charset-eval-alist):
2593         Define it before mm-charset-to-coding-system.
2594         (mm-charset-to-coding-system): Add optional argument `silent';
2595         define it before mm-charset-override-alist.
2596         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2597         default value if it can be used in Emacs currently running;
2598         silence mm-charset-to-coding-system.
2599
2600 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2601
2602         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2603         `allow-override' which says whether to use `mm-charset-override-alist'.
2604         (rfc2047-decode-encoded-words): Use it.
2605
2606         * mm-util.el (mm-charset-override-alist): Fix custom type;
2607         add `(gb2312 . gbk)' to choices.
2608
2609 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2610
2611         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2612         fast.
2613
2614         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2615
2616         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2617
2618 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2619
2620         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2621         on links.
2622
2623         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2624
2625 2008-12-03  Lute Kamstra  <lute@gnu.org>
2626
2627         * sha1.el: Remove leading * from docstrings of defcustoms,
2628         deffaces, defconsts and defuns.
2629
2630 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2631
2632         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2633         users' addresses that don't have domain parts.
2634         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2635         rather than message-narrow-to-head since there will be the message
2636         header separator.
2637
2638 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2639
2640         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2641         since the result is inserted in a unibyte buffer anyway.
2642         (nnimap-demule-use-string-to-multibyte): Remove.
2643         (nnimap-demule): Alias it to mm-string-to-multibyte.
2644
2645 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2646
2647         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2648         variable for debugging bug#464 and bug#1174.
2649         (nnimap-demule): Use it.
2650
2651 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2652
2653         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2654         score calculation correctly.
2655
2656 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2657
2658         * message.el (message-send-mail): Just set the buffer to unibyte
2659         rather than use mm-with-unibyte-current-buffer which does a lot more.
2660         (message-send-mail-partially): Don't bother with
2661         mm-with-unibyte-current-buffer since it's already been made unibyte by
2662         message-send-mail.
2663
2664 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2665
2666         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2667
2668 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2669
2670         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2671
2672 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2673
2674         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2675         require itself and to remove `with-no-warnings'.
2676
2677 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2678
2679         * starttls.el (starttls-any-program-available): Get the name of the
2680         available TLS layer program.
2681         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2682         well as the host name in the "opening" message.
2683
2684         * auth-source.el (auth-source-cache, auth-source-do-cache)
2685         (auth-source-user-or-password): Cache passwords and logins by default,
2686         allow override with `auth-source-do-cache'.
2687         (auth-source-forget-user-or-password): Allow users to remove cache
2688         entries if needed.
2689
2690 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2691
2692         * md4.el (md4-buffer): Fix typo in docstring.
2693         (md4, md4-64): Doc fixes.
2694         (md4-pack-int32): Reflow docstring.
2695
2696 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2697
2698         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2699         condition-case to only the forward-sexp call.
2700
2701 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2702
2703         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2704         quotes contained.  Make it more robust regardless by an extra
2705         condition-case wrapper.
2706
2707 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2708
2709         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2710
2711 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2712
2713         * nnml.el (nnml-request-expire-articles): Check if the function set to
2714         `nnmail-expiry-target' returns the symbol `delete'.
2715
2716         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2717
2718         * nnmail.el (nnmail-expiry-target): Fix custom type.
2719
2720 2008-10-02  Glenn Morris  <rgm@gnu.org>
2721
2722         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2723         Silence compiler warning.
2724
2725 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2726
2727         * tls.el (open-tls-stream): Show the actual command being
2728         executed, instead of the format string.
2729
2730 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2731
2732         * lpath.el: Fbind codepage-setup for Emacs 23.
2733
2734 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2735
2736         * mml.el (mml-menu): Don't assume mml2015 is bound.
2737
2738 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2739
2740         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2741         exists.
2742
2743 2008-09-27  Glenn Morris  <rgm@gnu.org>
2744
2745         * gnus-util.el (mail-header-remove-comments): Autoload it.
2746
2747 2008-09-27  Andreas Schwab  <schwab@suse.de>
2748
2749         * gnus-util.el (gnus-split-references): Strip comments.
2750         (gnus-parent-id): Likewise.
2751
2752 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2753
2754         * message.el (message-confirm-send): Fix version.
2755
2756 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2757
2758         * message.el (message-idna-to-ascii-rhs-1): Use
2759         mail-extract-address-components rather than mail-header-parse-addresses
2760         that is an alias by default to ietf-drums-parse-addresses that does not
2761         support non-ASCII names in headers' contents.
2762
2763 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2764
2765         * message.el (message-confirm-send): Fixed variable documentation to
2766         avoid the "y/n" wording.
2767
2768 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2769
2770         * message.el (message-set-auto-save-file-name): Save to a different
2771         filename so multiple messages (especially drafts) can be recovered.
2772
2773 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2774
2775         * message.el (message-confirm-send): Add appropriate version.
2776
2777 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2778
2779         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2780         defvar.
2781
2782 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2783
2784         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2785         (mm-pkcs7-enveloped-magic): Ditto.
2786
2787 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2788
2789         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2790         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2791
2792 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2793
2794         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2795         default, it's better.
2796
2797 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2798
2799         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2800         summary line gnus-number property and ignore them (with a warning
2801         message).
2802
2803 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2804
2805         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2806         macro caddr in the interactive form since it won't be expanded.
2807
2808 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2809
2810         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2811         `charset'; fix name of function called recursively.
2812         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2813
2814 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2815
2816         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2817         (gnus-mime-set-charset-parameters): New function.
2818         (gnus-mime-view-part-as-charset): Use it to correctly display part
2819         specifying wrong charset.
2820
2821 2008-09-08  David Engster  <dengste@eml.cc>
2822
2823         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2824         in completing-read for back end server.
2825
2826 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2827
2828         * message.el (message-confirm-send): New variable to confirm sending a
2829         message.
2830         (message-send): Use it.
2831
2832 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2833
2834         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2835
2836 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2837
2838         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2839
2840 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2841
2842         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2843         prevent tracking too many groups.
2844         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2845         Use it.
2846
2847 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2848
2849         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2850         moving point to the bottom of the window in order to avoid recentering.
2851
2852 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2853
2854         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2855
2856         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2857         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2858         (gnus-article-beginning-of-window): Fix calculation.
2859
2860 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2861
2862         * gnus-msg.el (gnus-summary-supersede-article)
2863         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2864         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2865         message header.
2866
2867 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2868
2869         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2870         pending output coming after the status change.
2871
2872 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2873
2874         * message.el:
2875         * gnus-start.el:
2876         * gnus-registry.el: Remove VMS support.
2877
2878 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2879
2880         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2881         macro.
2882         (rfc2104-hash): Use it.
2883
2884 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2885
2886         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2887         (gnus-summary-sort-by-most-recent-date): New commands.
2888         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2889         and menu entries.
2890
2891 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2892
2893         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2894         don't redisplay article for raw contents; remove plural articles stuff.
2895
2896         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2897         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2898         on gnus-summary-save-article; display results properly.
2899
2900 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2901
2902         * lpath.el: No need to fbind ns-focus-frame.
2903
2904 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2905
2906         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2907
2908 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2909
2910         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2911         gnus-save-all-headers.
2912
2913 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2914
2915         * gnus-util.el (ns-focus-frame): Remove declaration.
2916         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2917         like x.
2918
2919 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2920
2921         * rfc2104.el (rfc2104-zero): Delete defconst.
2922         (rfc2104-hex-alist): Likewise.
2923         (rfc2104-hex-to-int): Delete func.
2924         (rfc2104-hexstring-to-bitstring): Likewise.
2925         (rfc2104-nybbles): New defconst.
2926         (rfc2104-hash): Rewrite for speed.
2927
2928 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2929
2930         * tls.el (open-tls-stream): Make it work with the 2nd argument
2931         BUFFER that is a string but does not exist as a buffer object, as
2932         mentioned in the doc-string.
2933
2934 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2935
2936         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
2937         SXEmacs.
2938
2939 2008-07-16  Glenn Morris  <rgm@gnu.org>
2940
2941         * gnus-util.el (ns-focus-frame): Declare for compiler.
2942
2943 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2944
2945         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
2946         set as a group parameter.
2947         (gnus-summary-save-in-pipe): Work when it is called independently.
2948         (gnus-summary-pipe-to-muttprint): Don't modify
2949         gnus-summary-pipe-output-default-command.
2950
2951 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2952
2953         * message.el (message-send-mail-with-sendmail):
2954         Display the error message.
2955
2956 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2957
2958         * gnus-art.el (gnus-default-article-saver):
2959         Add gnus-summary-save-in-pipe to choices.
2960         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
2961         gnus-summary-pipe-output-default-command as the default command.
2962         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
2963         instead of gnus-last-shell-command.
2964
2965         * gnus-sum.el (gnus-summary-pipe-output-default-command):
2966         New user option.
2967         (gnus-summary-muttprint-program): Mention the value will be changed.
2968         (gnus-summary-save-article): Force showing of all headers.
2969         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
2970
2971 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
2972
2973         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
2974
2975 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
2976
2977         * nnimap.el (nnimap-id):
2978         * sieve-manage.el (sieve-manage-open): Doc fixes.
2979
2980 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
2981
2982         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
2983         if available.
2984
2985 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2986
2987         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
2988
2989         * nnkiboze.el (nnkiboze-generate-group):
2990         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
2991
2992         * nnmairix.el: Require CL.
2993
2994 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2995
2996         * dgnushack.el: Autoload get-display-table and put-display-table for
2997         XEmacs 21.5.
2998
2999         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
3000         21.4 and SXEmacs.
3001
3002 2008-06-15  David Engster  <dengste@eml.cc>
3003
3004         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
3005
3006 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
3007
3008         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
3009         New macros that expand to an `aset'/`aref' call under Emacs, and to a
3010         runtime choice under XEmacs.
3011
3012         * gnus-sum.el (gnus-summary-set-display-table):
3013         Use `gnus-put-display-table', `gnus-get-display-table',
3014         `gnus-set-display-table' for the display table, instead of `aset'.
3015
3016         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3017         Use `gnus-put-display-table', `gnus-get-display-table',
3018         `gnus-set-display-table' for the display table.
3019
3020 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3021
3022         * nnmairix.el: Add autoloads.
3023
3024 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3025
3026         * nnmairix.el (nnmairix-delete-recreate-group)
3027         (nnmairix-update-and-clear-marks): Fix error messages.
3028
3029 2008-06-14  David Engster  <dengste@eml.cc>
3030
3031         * nnmairix.el: Upgrade to version 0.6.
3032         (nnmairix-group-toggle-propmarks-this-group)
3033         (nnmairix-group-toggle-readmarks-this-group)
3034         (nnmairix-group-delete-recreate-this-group)
3035         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3036         (nnmairix-remove-tick-mark-original-article): New commands.
3037         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3038         (nnmairix-propagate-marks-to-nnmairix-groups)
3039         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3040         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3041         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3042         functions needed for marks propagation and manipulation of read marks.
3043         (nnmairix-update-groups): New function.
3044         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3045         (nnmairix-determine-original-group-from-registry)
3046         (nnmairix-determine-original-group-from-path)
3047         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3048         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3049         New helper functions.
3050         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3051         keystrokes for new commands.
3052         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3053         (nnmairix-request-group): Check allow-fast group parameter.
3054         (nnmairix-request-create-group): Set allow-fast group parameter if
3055         nnmairix-allowfast-default is set.
3056         (nnmairix-close-group): Propagate marks upon closing if needed.
3057         (nnmairix-group-toggle-threads-this-group): Use new.
3058         nnmairix-group-toggle-parameter helper function.
3059         (nnmairix-search): Better check for empty search result.
3060         (nnmairix-goto-original-article): Use new helper functions for
3061         determining original article.
3062         (nnmairix-show-original-article): Make sure message-id is in brackets.
3063         (nnmairix-call-mairix-binary): Change variable name.
3064         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3065         helper function.
3066         (nnmairix-widget-toggle-activate): Fix doc string.
3067
3068 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3069
3070         * nnir.el: Require edmacro when compiling with XEmacs.
3071         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3072         available in Emacs 21.
3073
3074 2008-06-11  Glenn Morris  <rgm@gnu.org>
3075
3076         * gnus-util.el (x-focus-frame):
3077         * gnus.el (image-size):
3078         * mm-decode.el (image-size): Declare.
3079
3080         * gnus-picon.el (declare-function): Add compat definition.
3081         (image-size): Declare.
3082
3083         * gnus-group.el (tool-bar-map):
3084         * gnus-sum.el (tool-bar-map): Define for compiler.
3085
3086         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3087
3088         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3089
3090         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3091         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3092         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3093         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3094         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3095         * sieve-manage.el, spam-report.el, spam.el:
3096         Remove unnecessary eval-and-compile of autoloads.
3097
3098 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3099
3100         * auth-source.el: Precise Tramp doc.
3101
3102 2008-06-07  Glenn Morris  <rgm@gnu.org>
3103
3104         * nnmairix.el: Remove unnecessary eval-when-compile.
3105
3106 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3107
3108         * lpath.el: Fbind propertize for XEmacs 21.4.
3109
3110 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3111
3112         * nnir.el: Move here from ../contrib.
3113
3114 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3115
3116         * gnus-util.el (gnus-read-shell-command): New function.
3117         * mm-decode.el (mm-pipe-part):
3118         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3119
3120 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3121
3122         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3123
3124 2008-06-03  Glenn Morris  <rgm@gnu.org>
3125
3126         * pop3.el (nnheader-accept-process-output): Autoload it.
3127
3128 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3129
3130         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3131         are not 2-digit hexadecimal characters that follow `%'s.
3132
3133 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3134
3135         * message.el (message-bogus-recipient-p): Fix type in doc string.
3136         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3137         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3138         Improve custom options.
3139         (message-bogus-recipient-p): Adjust accordingly.
3140
3141 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3142
3143         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3144         long-form month and day names.
3145
3146 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3147
3148         * dgnushack.el: Autoload debug, eudc-expand-inline and
3149         pgg-snarf-keys-region for XEmacs.
3150
3151         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3152
3153         * nnmairix.el: Require edmacro when compiling with XEmacs.
3154
3155 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3156
3157         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3158         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3159
3160 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3161
3162         * auth-source.el: Add more docs.
3163
3164         * netrc.el (netrc-machine): Always match if the port is not given.
3165
3166 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3167
3168         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3169         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3170         retrieval faster in some cases, but might make CPU usage larger.  If
3171         this has any bad side effects, we might revert this change.
3172
3173         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3174         seems to make mail retrieval much, much faster.
3175         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3176         unconditionally.
3177
3178         * gnus-draft.el (gnus-group-send-queue): Bind
3179         message-send-mail-partially-limit to nil to avoid being prompted.
3180
3181 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3182
3183         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3184
3185         * message.el (message-bogus-address-regexp): Fix and improve custom
3186         type.
3187         (message-setup-hook): Add message-check-recipients as custom option.
3188
3189 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3190
3191         * message.el (message-cite-function): Remove bogus autoload which crept
3192         in during merge from v5-10.
3193
3194 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3195
3196         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3197
3198         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3199
3200         * auth-source.el: Preliminary Tramp docs.
3201         (auth-sources): Change the default auth-sources to use
3202         EPA .gpg files.
3203
3204 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3205
3206         * nntp.el: Autoload `auth-source-user-or-password'.
3207         (nntp-send-authinfo): Use it.
3208
3209         * nnimap.el: Autoload `auth-source-user-or-password'.
3210         (nnimap-open-connection): Use it.
3211
3212         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3213         for the gnus-message function.
3214         (auth-source-user-or-password): Use it.
3215
3216 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3217
3218         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3219         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3220         (rfc2104-hash): Use it.
3221
3222 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3223
3224         * gnus-art.el (gnus-article-toggle-truncate-lines):
3225         Don't use `iff' in docstring.
3226
3227 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3228
3229         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3230
3231         * gnus-util.el (gnus-extract-address-component-name)
3232         (gnus-extract-address-component-email): Convenience functions around
3233         `gnus-extract-address-components'.
3234
3235         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3236         Use `gnus-extract-address-component-email' to fix bug of comparing full
3237         sender name to `user-mail-address'.
3238
3239 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3240
3241         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3242         catch/throw to optimize.
3243         (gnus-registry-find-keywords): Just use member to find a keyword.
3244
3245 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3246
3247         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3248         is current before calling gnus-server-prepare.
3249         (gnus-server-setup-buffer, gnus-server-update-server)
3250         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3251
3252 2008-05-04  Juri Linkov  <juri@jurta.org>
3253
3254         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3255         (mailcap-file-default-commands): Use mailcap-replace-in-string
3256         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3257         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3258
3259 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3260
3261         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3262
3263 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3264
3265         * gnus.el: Bump version to 0.11.
3266
3267 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3268
3269         * gnus.el: No Gnus v0.10 is released.
3270
3271 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3272
3273         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3274         hooks.
3275         (gnus-update-read-articles): Speed up non-marks-using users.
3276         (gnus-use-marks): Define gnus-use-marks.
3277         (gnus-propagate-marks): Rename variable to something more sensible.
3278
3279 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3280
3281         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3282         (gmm-image-load-path-for-library): Fix typos in docstrings.
3283         (gmm-message): Reflow docstring.
3284
3285 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3286
3287         * mail-source.el (mail-source-set-1, mail-source-bind):
3288         Move auth-source code out of the macro to clean it up and fix bugs.
3289
3290 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3291
3292         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3293         by sender if it's equal to user-mail-address, it's likely to be
3294         useless.
3295
3296         * mail-source.el (mail-source-bind): Don't use user or password if they
3297         are not bound.  Unintern them if they are nil.  Don't use server unless
3298         it's bound, and default it to empty string otherwise.
3299
3300 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3301
3302         * mail-source.el: Load auth-source.el.
3303         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3304         get user name or password, if auth-sources is set up.
3305
3306         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3307         strategy of splitting with parent.
3308         (gnus-registry-split-fancy-with-parent)
3309         (gnus-registry-post-process-groups): Use it and fix prior
3310         bug (returning a list as the split result).
3311
3312         * auth-source.el (auth-sources): Remove server parameter.
3313         (auth-source-pick, auth-source-user-or-password)
3314         (auth-source-user-or-password-imap)
3315         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3316         (auth-source-user-or-password-sftp)
3317         (auth-source-user-or-password-smtp): Remove server parameter.
3318
3319 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3320
3321         * smime.el (smime-sign-region, smime-encrypt-region)
3322         (smime-decrypt-region):
3323         Remove redundant calls to `generate-new-buffer-name'.
3324
3325 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3326
3327         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3328         Don't use QP for message/rfc822.
3329         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3330
3331 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3332
3333         * sieve-manage.el (sieve-string-bytes): Remove.
3334         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3335         correct byte-length only if the process's coding-system is the same as
3336         the one used internally by Emacs to represent strings.
3337
3338 2008-04-22  Juri Linkov  <juri@jurta.org>
3339
3340         * mailcap.el (mailcap-file-default-commands): New function.
3341
3342 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3343
3344         * message.el (message-signature-separator, message-cite-function):
3345         Change custom version.
3346
3347 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3348
3349         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3350         commands.
3351         (tls-checktrust): Ditto.
3352
3353 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3354
3355         * mm-decode.el (mm-display-external): Make temp file read-only.
3356
3357 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3358
3359         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3360         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3361         `C-c C-f d'.
3362
3363 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3364
3365         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3366
3367 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3368
3369         * gnus.el: Bump version to 0.9.
3370
3371 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3372
3373         * gnus.el: No Gnus v0.8 is released.
3374
3375 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3376
3377         * mail-source.el (mail-source-value):
3378         Prefer fboundp to functionp so it works with macros as well.
3379
3380 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3381
3382         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3383         Fix last change in case the element is not even a symbol.
3384
3385 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3386
3387         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3388         Prefer fboundp to functionp so it works with macros as well.
3389
3390 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3391
3392         * auth-source.el: Added docs.
3393         (auth-sources): Modify format to support server.
3394         (auth-source-pick, auth-source-user-or-password)
3395         (auth-source-user-or-password-imap)
3396         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3397         (auth-source-user-or-password-sftp)
3398         (auth-source-user-or-password-smtp): Add server parameter.
3399
3400 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3401
3402         * gnus-registry.el: Initialize the registry when gnus-registry-install
3403         is t.
3404
3405 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3406
3407         * compface.el (uncompface): Make buffer unibyte.
3408
3409 2008-04-05  Glenn Morris  <rgm@gnu.org>
3410
3411         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3412
3413 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3414
3415         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3416         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3417
3418         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3419         multibyteness after rather than before erasing it.
3420
3421         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3422         mm-with-multibyte.
3423         (gnus-request-article-this-buffer): Make sure the proper decoding is
3424         used if gnus-original-article-buffer happens to be unibyte.
3425
3426         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3427         default-enable-multibyte-characters.
3428
3429         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3430         default-enable-multibyte-characters.
3431
3432         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3433
3434         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3435
3436 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3437
3438         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3439         (imap-message-copyuid-1): Use it.
3440         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3441         J. Williams in
3442         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3443
3444         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3445         imap-enable-exchange-bug-workaround.
3446         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3447
3448 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3449
3450         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3451         a 100 byte status-checks into a 2-3MB transfer for each group.
3452         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3453         to enable bug workaround or not.
3454         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3455
3456 2008-03-31  Glenn Morris  <rgm@gnu.org>
3457
3458         * message.el (mml2015-use): Declare for compiler.
3459         (message-info): Require mml2015 when appropriate.
3460
3461 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3462
3463         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3464         whitespace.
3465
3466 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3467
3468         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3469         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3470         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3471         (nntp-service-to-port): New function.
3472         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3473         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3474         (nntp-open-netcat-stream): New function.
3475         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3476
3477 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3478
3479         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3480
3481 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3482
3483         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3484
3485 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3486
3487         * dns.el (dns-write): Use set-buffer-multibyte.
3488
3489 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3490
3491         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3492
3493 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3494
3495         * message.el (message-signature-separator): Change default.
3496         Improve custom type.
3497         (message-cite-function): Change default to
3498         message-cite-original-without-signature.
3499
3500         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3501         toggle.
3502
3503         * message.el (message-check-news-body-syntax): Fix signature check.
3504         (message-setup-1): Mark buffer as unmodified _after_ running
3505         message-setup-hook and handling message-alternative-emails.
3506         (message-shorten-references): Be more strict when building list of
3507         valid references to comply with GNKSA.
3508
3509         * gnus-group.el (gnus-read-ephemeral-bug-group)
3510         (gnus-read-ephemeral-debian-bug-group)
3511         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3512
3513         * message.el (message-info): Don't use booleanp which isn't supported
3514         in Emacs 21 and XEmacs.
3515
3516 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3517
3518         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3519         gnus-group-gmane-group-download-format.
3520         (gnus-group-read-ephemeral-gmane-group): Rename from
3521         gnus-group-read-ephemeral-gmane-group.
3522         (gnus-read-ephemeral-gmane-group-url): Rename from
3523         gnus-group-read-ephemeral-gmane-group-url.
3524         (gnus-bug-group-download-format-alist): New variable.
3525         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3526         (gnus-read-ephemeral-emacs-bug-group): New commands.
3527
3528 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3529
3530         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3531         (gnus-visible-headers): Improve custom type.
3532
3533 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3534
3535         * mml.el (mml-menu): Add workarounds for XEmacs.
3536
3537         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3538         X-Boundary header.
3539
3540         * message.el (message-simplify-recipients): Fix previous commit.
3541
3542 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3543
3544         * mm-util.el (mm-set-buffer-multibyte): New function.
3545         * mm-decode.el (mm-copy-to-buffer): Use it.
3546
3547 2008-03-19  Glenn Morris  <rgm@gnu.org>
3548
3549         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3550         Accidentally removed in the sync process with Emacs.
3551
3552 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3553
3554         * message.el (message-alter-recipients-discard-bogus-full-name):
3555         New function.
3556         (message-alter-recipients-function): New variable.
3557         (message-get-reply-headers): Use it.
3558         (message-replace-header): New helper function.
3559         (message-recipients-without-full-name): New variable.
3560         (message-simplify-recipients): New command.
3561
3562         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3563
3564         * message.el (message-info): Handle EasyPG manual.
3565
3566         * mml.el (mml-menu): Add entry for EasyPG.
3567
3568 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3569
3570         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3571         parameter.
3572
3573         * message.el (message-disassociate-draft): Specify drafts group name
3574         fully.
3575
3576 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3577
3578         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3579         unnecessary duplicates from the match list.
3580
3581 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3582
3583         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3584
3585         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3586
3587         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3588         args of `how-many' of which the XEmacs version doesn't take; declare
3589         Info-index-next as function.
3590
3591 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3592
3593         * gnus-score.el (gnus-score-headers): Fix handling of
3594         gnus-inhibit-slow-scoring.
3595
3596         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3597         string.
3598         (gnus-button-url-regexp): Improve handling of parenthesis.
3599         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3600         (gnus-button-handle-info-keystrokes): Handle index entries.
3601
3602 2008-03-15  Glenn Morris  <rgm@gnu.org>
3603
3604         * parse-time.el (parse-time-string): Simplify.
3605
3606 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3607
3608         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3609         Incoming* files.
3610
3611 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3612
3613         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3614         (auth-source-pick): Use it.
3615
3616 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3617
3618         * binhex.el (binhex-decode-region-internal):
3619         * uudecode.el (uudecode-decode-region-internal):
3620         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3621         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3622         setting default-enable-multibyte-characters.
3623
3624 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3625
3626         * auth-source.el (auth-source-protocols)
3627         (auth-source-protocols-customize, auth-source-choices): Added and
3628         modified variable customizations and defaults.
3629         (auth-source-pick, auth-source-user-or-password)
3630         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3631         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3632         (auth-source-user-or-password-sftp)
3633         (auth-source-user-or-password-smtp): Use new variables and provide an
3634         interface to netrc.el.
3635
3636 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3637
3638         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3639         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3640         Make sure the nntp port to specify is a string.
3641
3642 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3643
3644         * nntp.el: Use with-current-buffer.
3645         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3646         dubious mm-with-unibyte-current-buffer.
3647         (nntp-with-open-group-function): New function extracted from
3648         nntp-with-open-group macro.
3649         (nntp-with-open-group): Use the function, so it's easier to debug.
3650         Add indentation and debugging info.
3651         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3652         the use of the netcat alternatives.
3653
3654         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3655         Avoid mm-string-as-multibyte as well.
3656
3657         * nnweb.el (nnweb-insert-html):
3658         Remove use of nnheader-string-as-multibyte.
3659
3660         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3661         (nnheader-string-as-multibyte): Remove.
3662
3663         * mm-view.el: Use inhibit-read-only.
3664         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3665         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3666         or unibyte-string.
3667
3668         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3669         (mm-uu-yenc-extract): Use with-current-buffer.
3670
3671         * gnus-soup.el (gnus-soup-send-packet): Don't use
3672         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3673
3674         * nnmh.el: Use with-current-buffer.
3675         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3676         mm-string-as-multibyte on the output of mm-encode-coding-string.
3677
3678         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3679         (nnimap-request-move-article): Use with-current-buffer.
3680
3681         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3682         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3683         conversion uses string-make-unibyte rather than string-as-unibyte.
3684
3685         * gnus-msg.el: Use with-current-buffer.
3686
3687         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3688
3689 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3690
3691         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3692         string for caching if it is 'PIN.
3693
3694 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3695
3696         * lpath.el: Consider the case without Emacs/W3.
3697
3698 2008-03-08  Glenn Morris  <rgm@gnu.org>
3699
3700         * time-date.el (date-to-time, time-subtract, time-add)
3701         (safe-date-to-time): Doc fixes.
3702
3703 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3704
3705         * mail-source.el (mail-source-delete-old-incoming-confirm):
3706         Change default to nil.
3707         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3708
3709 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3710
3711         * lpath.el: Rearrange.
3712
3713         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3714         (gnus-article-goto-prev-page): Work for articles having ^L's.
3715
3716         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3717
3718         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3719
3720 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3721
3722         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3723         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3724         (gnus-bookmark-jump): Adjust some variable names.
3725
3726 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3727
3728         * auth-source.el: New package.
3729         (auth-source-choices): Add customization entry point variable.
3730
3731         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3732         bug.
3733
3734 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3735
3736         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3737         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3738         (gnus-registry-install-shortcuts): Rename from
3739         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3740         the `gnus-registry-mark-map' keymap dynamically from
3741         `gnus-registry-marks'.  The generated functions update the summary line
3742         when a registry mark is added or deleted, and will call
3743         `gnus-registry-install-p' (see the comments in the code).
3744         (gnus-registry-user-format-function-M): Use concat intelligently.
3745
3746         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3747         the registry mark functions.
3748
3749 2008-03-05  Glenn Morris  <rgm@gnu.org>
3750
3751         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3752         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3753         gnus-art.
3754         (top-level): No need to load own source when compiling.
3755
3756 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3757
3758         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3759         Suggested by <chris.anderton@zetnet.co.uk>.
3760
3761 2008-03-04  Glenn Morris  <rgm@gnu.org>
3762
3763         * gnus-sum.el (top-level): No need to require gnus when compiling,
3764         since unconditionally required near start of file.
3765         (gnus-summary-display-while-building): Move definition before use.
3766
3767 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3768
3769         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3770         formatting function.
3771
3772 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3773
3774         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3775         with plists.
3776         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3777         Use new format.
3778
3779 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3780
3781         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3782         `where-is-internal' that returns a range of key sequences.
3783
3784 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3785
3786         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3787
3788         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3789         (gnus-summary-jump-to-group): Consider windows on other displayed
3790         frames as well.  Similar changes might be needed elsewhere, but that's
3791         the one I've bumped into during my use.
3792
3793         * nndoc.el (nndoc-oe-dbx-type-p):
3794         * gnus-msg.el (gnus-debug):
3795         * gnus-group.el (gnus-update-group-mark-positions):
3796         Use mm-string-to-multibyte.
3797
3798 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3799
3800         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3801         doesn't handle NotDashEscaped.
3802
3803         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3804         (mml-dnd-attach-options): Fix typo in custom choice.
3805
3806         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3807         nndoc-article-type to mbox.
3808         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3809
3810         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3811         to nil, instead of html2text.
3812
3813         * imap.el (imap-debug): Add `imap-ping-server'.
3814
3815         * gnus-bookmark.el: Add FIXMEs.
3816
3817         * message.el (message-form-letter-separator)
3818         (message-send-form-letter-delay): New variables.
3819         (message-send-form-letter): Use them.  New command to send form
3820         letters.  Requested by Uwe Siart.
3821         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3822
3823 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3824
3825         * Update copyright years.
3826
3827 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3828
3829         Sync from EMACS_22_BASE.
3830
3831         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3832
3833 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3834
3835         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3836         empty author.
3837
3838 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3839
3840         * gnus-registry.el (gnus-registry-marks): Add variable for
3841         customization of marks and their appearance.
3842         (gnus-registry-read-mark): Use it.
3843         (gnus-registry-do-marks): Add utility function to loop through
3844         `gnus-registry-marks'.
3845         (gnus-registry-install-shortcuts-and-menus): Add function to install
3846         shortcuts and menus.
3847         (gnus-registry-initialize): Use it.
3848         (gnus-registry-default-mark): Clarify documentation.
3849
3850 2008-02-29  Glenn Morris  <rgm@gnu.org>
3851
3852         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3853         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3854         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3855         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3856         Change defcustom :version from 23.0 to 23.1.
3857
3858 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3859
3860         * gnus-registry.el (gnus-registry-follow-group-p)
3861         (gnus-registry-post-process-groups): Add functions to aid registry
3862         splitting and improve logging.  Clarify behavior in function
3863         documentation.
3864         (gnus-registry-split-fancy-with-parent): Use them.
3865
3866 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3867
3868         * gnus-art.el: Use with-current-buffer.
3869
3870 2008-02-27  David Engster  <dengste@eml.cc>
3871
3872         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3873         Express real group name in the response.
3874
3875 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3876
3877         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3878         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3879         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3880         autoload gnus-registry-fetch-group when compiling.
3881         (nnmairix-request-group-with-article-number-correction): Remove
3882         unreferenced argument passed to nnmairix-call-backend.
3883
3884 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3885
3886         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3887         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3888         Wilde.
3889
3890 2008-02-27  Glenn Morris  <rgm@gnu.org>
3891
3892         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3893         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3894         variables to defconsts.  Convert comments to doc-strings.
3895         (nnmairix-last-server, nnmairix-current-server): Convert from free
3896         variables to defvars.  Convert comments to doc-strings.
3897         (gnus-registry-fetch-group): Autoload.
3898         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3899         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3900         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3901         caddr.
3902         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3903         nnmairix-request-group-with-article-number-correction call.
3904         (nnmairix-fast, nnmairix-group): New, less general names, for free
3905         variables passed from nnmairix-request-group to
3906         nnmairix-request-group-with-article-number-correction.  Declare.
3907         (nnmairix-request-group-with-article-number-correction):
3908         Use nnmairix-fast, nnmairix-group rather than fast, group.
3909
3910 2008-02-26  David Engster  <dengste@eml.cc>
3911
3912         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3913         version 0.5.
3914
3915 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3916
3917         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3918         instead of making an extra function call.  Don't add the current group
3919         to articles only when they have the group.  Use
3920         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3921         Reported by David <de_bb@arcor.de>.
3922
3923 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3924
3925         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
3926         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
3927
3928 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
3929
3930         * mail-source.el (mail-source-delete-incoming): Change default.
3931         Supplement doc string.
3932
3933         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
3934
3935 2008-02-14  Glenn Morris  <rgm@gnu.org>
3936
3937         * time-date.el (format-seconds): New function.
3938
3939 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
3940
3941         * nnmail.el (nnmail-message-id-cache-file): Derive from
3942         `gnus-home-directory'.
3943
3944 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
3945
3946         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
3947         Document negative prefix.
3948
3949         * gnus-group.el (gnus-group-read-group): Document negative prefix.
3950
3951 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3952
3953         * message.el (message-unsent-separator): Add the Exim bounce
3954         separator.
3955
3956 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
3957
3958         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
3959         list.
3960         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
3961         recipient/signer list.
3962
3963 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3964
3965         * Makefile.in (datarootdir): Define.
3966         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
3967         name that might contain whitespace.
3968
3969 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
3970
3971         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
3972         fbound (Emacs 23 unicode), signal an error.
3973
3974 2008-02-08  Glenn Morris  <rgm@gnu.org>
3975
3976         * gnus-art.el (pgg-display-output-buffer): Declare as function.
3977
3978 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
3979
3980         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
3981         ports to the calls to `netrc-machine-user-or-password' in addition to
3982         "imap" and "imaps".
3983
3984 2008-02-01  Zhang Wei  <id.brep@gmail.com>
3985
3986         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
3987
3988         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
3989
3990 2008-02-01  Kenichi Handa  <handa@m17n.org>
3991
3992         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
3993         rfc2104-hexstring-to-bitstring and changed to return a byte list.
3994         (rfc2104-hash): Convert the result of concat to unibyte string.
3995
3996 2008-02-01  Dave Love  <fx@gnu.org>
3997
3998         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
3999         coding-system-for-read.
4000         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
4001
4002 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
4003
4004         * gnus.el (gnus-group-startup-message): Add `find-image' call before
4005         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
4006         <hanche@math.ntnu.no>.
4007
4008 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4009
4010         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
4011
4012         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4013
4014 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4015
4016         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4017         * message.el (message-beginning-of-line): Use featurep instead of bound
4018         tests in order to resolve conditionals at compile time.
4019
4020 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4021
4022         * mail-source.el (mail-sources): Add `group' choice.
4023
4024         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4025         parameter `in-group' to control into which group the articles go.
4026         Add treatment of `group' mail-source.
4027
4028 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4029
4030         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4031
4032         * mm-decode.el (mm-dissect-buffer): Decode description.
4033
4034         * mml.el (mml-to-mime): Encode message header first.
4035
4036 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4037
4038         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4039         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4040
4041         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4042         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4043
4044 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4045
4046         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4047
4048 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4049
4050         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4051         prefix keys.
4052         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4053         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4054         gnus-xmas.el.
4055
4056         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4057         (gnus-xmas-article-describe-bindings): New function.
4058         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4059         gnus-xmas-article-describe-bindings.
4060
4061         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4062
4063 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4064
4065         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4066         Add new variables for article mark management.
4067         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4068         list of extra data entries which, when present, will indicate that the
4069         article ID should not be trimmed from the registry.
4070         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4071         functions.
4072         (gnus-registry-read-mark): New function to read a mark name from the
4073         user.
4074         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4075         (gnus-registry-set-article-mark-internal): New functions to add and
4076         remove marks.
4077         (gnus-registry-get-article-marks): New function to show the marks for
4078         an article, or retrieve them for further use.
4079
4080 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4081
4082         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4083         keys when no argument is given.
4084
4085 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4086
4087         * imap.el (imap-ping-server): New variable.
4088         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4089         (imap-ping-server): Minor doc string fixes.
4090
4091 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4092
4093         * imap.el (imap-ping-server): New function.
4094         (imap-opened): Call imap-ping-server.
4095
4096 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4097
4098         * gnus-sum.el (gnus-article-sort-by-random)
4099         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4100         jidanni@jidanni.org.
4101
4102 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4103
4104         * gnus-art.el (gnus-article-describe-bindings): New function.
4105         (gnus-article-read-summary-keys): Use it.
4106         (gnus-article-mode-map): Bind `C-h b' to it.
4107
4108 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4109
4110         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4111         XEmacs.
4112         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4113         against non-character events.
4114
4115         * lpath.el: Fbind map-keymap for Emacs 21.
4116
4117 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4118
4119         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4120         command.
4121         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4122         instead of END.  Change name of the temp file.
4123         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4124         customizable.
4125
4126 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4127
4128         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4129         bind `S W' to gnus-article-wide-reply-with-original; set default
4130         binding to gnus-article-read-summary-send-keys.
4131         (gnus-article-read-summary-keys): Fix the order of keys; display
4132         continuation keys correctly in the echo area; describe bindings
4133         correctly when keys end with `C-h'.
4134         (gnus-article-read-summary-send-keys): New function.
4135         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4136         for gnus-article-read-summary-send-keys; display continuation keys
4137         correctly in the echo area.
4138         (gnus-article-reply-with-original): Ignore prefix argument.
4139         (gnus-article-wide-reply-with-original): New function.
4140
4141         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4142         Emacs 21.
4143
4144 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4145
4146         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4147         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4148
4149 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4150
4151         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4152         (gnus-group-read-ephemeral-gmane-group): New command.
4153
4154 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4155
4156         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4157
4158 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4159
4160         * message.el (message-send-mail-function): Increase custom version.
4161
4162         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4163         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4164
4165 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4166
4167         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4168         for the cases where imap-authenticate is called with a nil buffer
4169         parameter.
4170
4171 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4172
4173         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4174         html parts correctly; support forwarded messages.
4175         (gnus-article-browse-html-article): Remove work buffers.
4176
4177         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4178         compiling.
4179         (netrc-bound-and-true-p): New macro.
4180         (netrc-parse): Use it instead of bound-and-true-p that is not available
4181         in XEmacs 21.4.
4182
4183 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4184
4185         * gnus-registry.el (gnus-registry-mark-article)
4186         (gnus-registry-article-marks): Add functionality to mark articles
4187         through the Gnus registry.
4188
4189         * encrypt.el: Clarify documentation for the new pgg method.
4190         (encrypt-file-alist): Add PGG option.
4191         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4192         functionality.  Abstract password key and messaging to external
4193         functions.
4194         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4195         (encrypt-message-method-and-cipher): Add new convenience external
4196         functions.
4197         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4198         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4199
4200         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4201         (netrc-parse): Use encrypt-file-alist to determine if
4202         encrypt-find-model or encrypt-insert-file-contents should be used.
4203
4204         * encrypt.el: Clarify documentation.  Load password-cache or
4205         password, whichever one is found first, instead of autoloading.
4206
4207 2007-12-19  Glenn Morris  <rgm@gnu.org>
4208
4209         * mml.el (message-options-set, message-narrow-to-head)
4210         (message-in-body-p, message-mail-p, message-encode-message-body):
4211         Autoload.
4212         (message-remove-header, message-narrow-to-headers-or-head)
4213         (message-subscribed-p, message-make-mail-followup-to)
4214         (message-position-on-field, message-news-p)
4215         (message-options-set-recipient, message-generate-headers)
4216         (message-sort-headers): Declare as functions.
4217
4218 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4219
4220         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4221         convention in doc string.
4222
4223 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4224
4225         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4226         title to html parts.
4227         (gnus-article-browse-html-article): Pass message header to it.
4228
4229         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4230
4231 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4232
4233         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4234         or password compatible with XEmacs.
4235
4236 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4237
4238         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4239         format document.
4240         (gnus-mime-delete-part): Don't write description line if empty.
4241         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4242
4243 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4244
4245         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4246         (gnus-summary-mark-read-and-unread-as-read)
4247         (gnus-summary-mark-current-read-and-unread-as-read)
4248         (gnus-summary-mark-unread-as-ticked): Doc fix.
4249         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4250
4251 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4252
4253         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4254         Christoph Conrad <christoph.conrad@gmx.de>.
4255
4256 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4257
4258         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4259         yes-or-no-p.
4260
4261 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4262
4263         * mm-decode.el (mm-add-meta-html-tag): New function.
4264         (mm-save-part-to-file, mm-pipe-part): Use it.
4265
4266         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4267         gnus-y-or-n-p instead of y-or-n-p.
4268         (gnus-article-browse-html-parts): Work with message/external-body; use
4269         mm-add-meta-html-tag.
4270
4271 2007-12-11  Glenn Morris  <rgm@gnu.org>
4272
4273         * gnus-cache.el: Require gnus-sum not just when compiling.
4274
4275         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4276
4277         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4278         definitions before use.
4279
4280         * mm-decode.el: Require gnus-util.
4281         (mm-remove-part): Only call delete-annotation on XEmacs.
4282
4283         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4284
4285         * nnmail.el: Require gnus-int.
4286
4287         * spam.el: Move `require's before `eval-when-compile's.
4288
4289         * gnus-ems.el (gnus-alive-p):
4290         * gnus-fun.el (message-goto-eoh):
4291         * gnus-util.el (gnus-group-name-decode):
4292         * mail-source.el (gnus-compress-sequence):
4293         * message.el (Info-goto-node, format-spec):
4294         * mm-bodies.el (message-options-get):
4295         * mm-decode.el (mm-view-pkcs7):
4296         * mm-util.el (gmm-write-region):
4297         * mml-smime.el (mml-compute-boundary)
4298         (gnus-completing-read-with-default):
4299         * mml.el (widget-button-press, gnus-make-hashtable):
4300         * mml1991.el (mm-decode-content-transfer-encoding)
4301         (mm-encode-content-transfer-encoding)
4302         (message-options-get, message-options-set):
4303         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4304         * nnfolder.el (gnus-request-group):
4305         * nnheader.el (ietf-drums-unfold-fws):
4306         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4307         * smime.el (gnus-run-mode-hooks):
4308         * spam-stat.el (gnus-message): Autoload.
4309
4310         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4311         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4312         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4313         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4314         Add declare-function compatibility definition.
4315
4316         * gnus-cache.el (nnvirtual-find-group-art):
4317         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4318         (gnus-add-image, gnus-add-wash-type):
4319         * gnus-group.el (nnkiboze-score-file):
4320         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4321         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4322         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4323         (message-tokenize-header, gnus-get-buffer-create)
4324         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4325         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4326         * gnus.el (gnus-group-decoded-name):
4327         * mail-source.el (imap-capability):
4328         * mm-bodies.el (message-options-set):
4329         * mm-decode.el (gnus-configure-windows):
4330         * mm-extern.el (message-goto-body):
4331         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4332         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4333         (epg-sub-key-validity, message-options-set):
4334         * mml.el (widget-event-point, gnus-configure-windows):
4335         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4336         * mml2015.el (epg-check-configuration, epg-configuration)
4337         (message-options-set):
4338         * nndb.el (nndb-request-article):
4339         * nnfolder.el (gnus-request-create-group):
4340         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4341         * nnmaildir.el (gnus-group-mark-article-read):
4342         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4343         * rfc1843.el (message-fetch-field):
4344         * spam.el (gnus-extract-address-components):
4345         Declare as functions.
4346
4347 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4348
4349         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4350
4351         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4352
4353         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4354         bind show-trailing-whitespace for XEmacs.
4355
4356 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4357
4358         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4359         new no-op macro for backward compatibility.
4360
4361         * imap.el (imap-string-to-integer): New function.
4362
4363 2007-12-09  Glenn Morris  <rgm@gnu.org>
4364
4365         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4366
4367         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4368         * message.el, mm-view.el, sieve-manage.el, smime.el:
4369         Add declare-function compatibility definition.
4370
4371         * gnus-art.el (w3-region, w3m-region, Info-menu):
4372         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4373         * gnus-sum.el (gnus-get-predicate):
4374         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4375         * message.el (mail-abbrev-in-expansion-header-p):
4376         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4377         (w3m-detect-meta-charset, w3m-region):
4378         * sieve-manage.el (password-read, password-cache-add)
4379         (password-cache-remove):
4380         * smime.el (password-read-and-add): Declare as functions.
4381
4382 2007-12-08  David Kastrup  <dak@gnu.org>
4383
4384         * gnus-sum.el (gnus-summary-simplify-subject-query):
4385         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4386         `message'.
4387
4388 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4389
4390         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4391         it to bind idna-program, installation-directory, defined-colors, and
4392         face-attribute for XEmacs of the version that compiles defcustom forms.
4393
4394 2007-12-07  Glenn Morris  <rgm@gnu.org>
4395
4396         * gnus-art.el (article-make-date-line): Revert previous change.
4397
4398 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4399
4400         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4401
4402 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4403
4404         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4405         Call gnus-add-to-range ranges only once with a prepared article-list.
4406
4407 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4408
4409         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4410         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4411         group names with backslashes.  Reported by Tassilo Horn
4412         <tassilo@member.fsf.org>.
4413
4414 2007-12-06  Deepak Goel  <deego3@gmail.com>
4415
4416         * gnus-art.el (article-make-date-line):
4417         * gnus-start.el (gnus-load):
4418         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4419
4420 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4421
4422         * gnus-art.el (gnus-use-idna)
4423         * gnus-start.el (gnus-site-init-file)
4424         * message.el (message-use-idna)
4425         * mm-uu.el (mm-uu-hide-markers)
4426         * smiley.el (smiley-style): Revert changes that suppress warnings.
4427
4428 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4429
4430         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4431         specify charset to html source.  Reported by Christoph Conrad
4432         <christoph.conrad@gmx.de>.
4433
4434 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4435
4436         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4437         idna-program in order to suppress byte compile warning issued by XEmacs
4438         that came to byte compile the default value section of defcustom forms
4439         recently.
4440
4441         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4442         value of installation-directory.
4443
4444         * message.el (message-use-idna): Don't directly refer to the value of
4445         idna-program.
4446
4447         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4448
4449         * smiley.el (smiley-style): Don't directly call face-attribute.
4450
4451 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4452
4453         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4454
4455         * gnus-dired.el: Reduce Gnus dependencies.
4456         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4457         require.  Use autoloads instead.
4458         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4459         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4460         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4461         (gnus-dired-mode): Adjust doc string.
4462         (gnus-dired-mail-mode): New variable.
4463         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4464         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4465         (gnus-dired-mail-buffers): New function.  Return mail or message
4466         composition buffers.
4467         (gnus-dired-attach): Use it.
4468         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4469         NO-DECODE.
4470         (gnus-dired-print): Use `gnus-print-buffer' depending on
4471         `gnus-dired-mail-mode'.
4472
4473 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4474
4475         * rfc2047.el (rfc2047-encoded-word-regexp)
4476         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4477         explaining what regexp patterns are for.
4478
4479 2007-12-04  Glenn Morris  <rgm@gnu.org>
4480
4481         * password.el: Move to password-cache.el.
4482
4483         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4484         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4485         * mml-smime.el (password-read, password-cache-add)
4486         (password-cache-remove):
4487         No need to autoload, since mml-sec requires password.
4488
4489         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4490         * message.el (gnus-extract-address-components):
4491         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4492
4493         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4494         password.
4495
4496 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4497
4498         * mailcap.el: Reduce dependencies.
4499         (mail-header-parse-content-type): Autoload.
4500         (mailcap-delete-duplicates): New alias.
4501         (mailcap-mime-info): Add optional argument NO-DECODE.
4502         (mailcap-mime-types): Use mailcap-delete-duplicates.
4503
4504         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4505
4506 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4507
4508         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4509         (imap-parse-status): Upcase status-att for servers that sends them
4510         lower-case (e.g., MS Exchange 2007).
4511
4512 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4513
4514         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4515         function.
4516
4517         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4518         (gnus-uu-yenc-article): New function.
4519
4520         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4521
4522         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4523         buffer.
4524
4525 2007-12-02  Glenn Morris  <rgm@gnu.org>
4526
4527         * binhex.el (binhex): New custom group.
4528         (binhex-decoder-program, binhex-decoder-switches)
4529         (binhex-use-external): Move to the binhex custom group.
4530
4531         * uudecode.el (uudecode): New custom group.
4532         (uudecode-decoder-program, uudecode-decoder-switches)
4533         (uudecode-use-external): Move to the uudecode custom group.
4534
4535         * netrc.el (top-level): Don't load `encrypt' features.
4536         (netrc-parse): Don't use encrypt.
4537         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4538
4539         * encrypt.el: Remove file.
4540
4541 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4542
4543         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4544         matches on patches.
4545
4546         * gnus-art.el (gnus-article-browse-html-article): Mention
4547         `mm-text-html-renderer' in the doc string.
4548
4549         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4550         string.  Add comments.
4551
4552         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4553         if rhs is ASCII.
4554
4555 2007-12-01  Glenn Morris  <rgm@gnu.org>
4556
4557         * mail-source.el (top-level): Require format-spec before
4558         eval-when-compile.
4559
4560 2007-11-30  Glenn Morris  <rgm@gnu.org>
4561
4562         * encrypt.el: Require password, rather than autoloading password-read.
4563
4564 2007-11-29  Glenn Morris  <rgm@gnu.org>
4565
4566         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4567         (sasl-make-client, sasl-next-step, sasl-step-data)
4568         (sasl-step-set-data): Declare as functions.
4569
4570 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4571
4572         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4573
4574 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4575
4576         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4577         certs should be verified and what is to be done in the event of a
4578         verification failure.
4579
4580         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4581         caller can indicate whether the cache should be disregarded for this
4582         call.  This way the result of the call is reproducible at all times and
4583         can be considered a canonical server name for the supplied method.
4584         (gnus-agent-method-p): Canonicalize server names by pushing their
4585         method through `gnus-method-to-server' using the no-cache argument.
4586
4587         * gnus-srvr.el (gnus-server-insert-server-line): Call
4588         `gnus-method-to-server' with `no-cache' argument.
4589
4590         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4591         gnus-agent-possibly-synchronize-flags as this should be called when the
4592         server is actually being opened.
4593         (gnus-agent-possibly-synchronize-flags)
4594         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4595         flags file of an agentized server to the latter function.
4596
4597         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4598         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4599         after a connection has been established successfully.
4600
4601 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4602
4603         * gnus-art.el (article-display-face): Force to display face if called
4604         interactively; check if gnus-article-x-face-too-ugly matches author.
4605         (article-display-x-face): Display face even if From header is missing
4606         as article-display-face does.
4607
4608 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4609
4610         * hashcash.el (message-narrow-to-headers-or-head)
4611         (message-fetch-field, message-goto-eoh)
4612         (message-narrow-to-headers): Declare as functions.
4613
4614 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4615
4616         * mail-source.el (mail-sources): Default to fetch from file for
4617         compatibility with default of nnmail-spool-file.
4618
4619 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4620
4621         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4622         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4623         to look for encoded word that should be encoded again.
4624         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4625         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4626         encoding pattern.
4627         (rfc2047-decode-region): Switch strict regexp and loose one according
4628         to rfc2047-allow-irregular-q-encoded-words.
4629
4630 2007-11-25  Romain Francoise  <romain@orebokech.com>
4631
4632         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4633
4634 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4635
4636         * tls.el (tls-program): Provide more custom choices from
4637         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4638         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4639
4640 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4641
4642         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4643         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4644
4645         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4646         `nnmail-spool-file'.
4647
4648         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4649         `nnmail-spool-file'.
4650
4651         * gnus-move.el (gnus-change-server): Ditto.
4652
4653         * gnus-kill.el (gnus-batch-score): Ditto.
4654
4655         * gnus-cache.el (gnus-jog-cache): Ditto.
4656
4657         * gnus-msg.el (gnus-summary-reply):
4658         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4659
4660 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4661
4662         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4663         version.  Minor improvement to doc strings.
4664         (tls-program): Add comment.
4665
4666 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4667
4668         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4669         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4670         mismatch between the hostname provided in the certificate and the name
4671         of the host connnecting to.
4672         (open-tls-stream): Use them.  Check certificates against trusted root
4673         certificates.
4674
4675 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4676
4677         * gnus-cache.el (gnus-cache-generate-nov-databases):
4678         Use nnml-generate-nov-databases-directory instead of
4679         nnml-generate-nov-databases-1.
4680
4681 2007-11-24  Glenn Morris  <rgm@gnu.org>
4682
4683         * message.el (message-tool-bar-retro): Update for rename
4684         mail_send.xpm->mail-send.xpm.
4685
4686 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4687
4688         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4689         `smime-ldap-search' for Emacs 22 and up.
4690
4691 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4692
4693         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4694
4695         * message.el (message-send-mail-function): Fix error convention.
4696         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4697         (message-widen-reply, message-send-mail, message-talkative-question)
4698         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4699         (message-clone-locals, message-send-news): Use with-current-buffer.
4700         (message-insert-or-toggle-importance): Remove unused var `valid'.
4701         (message-make-references): Remove unused var `new-references'.
4702         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4703
4704 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4705
4706         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4707         (spam-split-symbolic-return-positive): Reflow docstring.
4708         (spam-backends, spam-summary-exit-behavior)
4709         (spam-mark-ham-unread-before-move-from-spam-group)
4710         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4711         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4712         (spam-clear-cache, spam-backend-check, spam-install-backend)
4713         (spam-install-statistical-backend, spam-list-of-processors)
4714         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4715         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4716         (spam-check-crm114, spam-initialize, spam-unload-hook):
4717         Fix typos in docstrings.
4718
4719 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4720
4721         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4722         been checked if they have never been read and those group levels are
4723         higher than the one that a user specified.
4724
4725 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4726
4727         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4728         foreign groups unless a group level is specified by a user.
4729         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4730
4731 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4732
4733         * message.el (message-send-mail-function): Require sendmail.
4734
4735 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4736
4737         * message.el (message-send-mail-function): Check for smtpmail too.
4738
4739         * utf7.el (utf7-encode, utf7-decode): Use coding system
4740         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4741
4742         * message.el (message-send-mail-function): New function.
4743         (message-send-mail-function): Set default using
4744         message-send-mail-function.  Adjust doc string.
4745         (message-send-mail-with-mailclient): New function.
4746
4747 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4748
4749         * smime.el (from):
4750         * rfc2047.el (message-posting-charset):
4751         * qp.el (mm-use-ultra-safe-encoding):
4752         * pop3.el (parse-time-months):
4753         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4754         * nnml.el (files):
4755         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4756         (jka-compr-compression-info-list, ange-ftp-path-format)
4757         (efs-path-regexp):
4758         * nndiary.el (files):
4759         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4760         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4761         (epg-digest-algorithm-alist, inhibit-redisplay)
4762         (password-cache-expiry):
4763         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4764         (pgg-output-buffer, password-cache-expiry):
4765         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4766         (efs-path-regexp):
4767         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4768         (inhibit-redisplay):
4769         * mm-uu.el (file-name, start-point, end-point, entry)
4770         (gnus-newsgroup-name, gnus-newsgroup-charset):
4771         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4772         (latin-unity-ucs-list):
4773         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4774         (mm-uu-binhex-decode-function):
4775         * message.el (gnus-message-group-art, gnus-list-identifiers)
4776         (rmail-enable-mime-composing, gnus-local-organization)
4777         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4778         (gnus-read-active-file, facemenu-add-face-function)
4779         (facemenu-remove-face-function, gnus-article-decoded-p)
4780         (tool-bar-mode):
4781         * mail-source.el (display-time-mail-function):
4782         * gnus-util.el (nnmail-pathname-coding-system)
4783         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4784         (gnus-original-article-buffer, gnus-user-agent)
4785         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4786         (xemacs-codename, sxemacs-codename, emacs-program-version):
4787         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4788         * gnus-start.el (gnus-agent-covered-methods)
4789         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4790         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4791         (gnus-newsgroup-headers, gnus-group-list-mode)
4792         (gnus-group-mark-positions, gnus-newsgroup-data)
4793         (gnus-newsgroup-unreads, nnoo-state-alist)
4794         (gnus-current-select-method, mail-sources)
4795         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4796         (nnmail-spool-file, gnus-cache-active-hashtb):
4797         * gnus-mh.el (mh-lib-progs):
4798         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4799         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4800         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4801         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4802         (gnus-group-buffer):
4803         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4804         (font-lock-set-defaults):
4805         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4806         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4807         (gnus-summary-post-menu, total-parts, type, condition, length):
4808         * gnus-agent.el (gnus-agent-read-agentview):
4809         * flow-fill.el (show-trailing-whitespace):
4810         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4811         eval-and-compile wrappers for byte compiler pacifiers.
4812
4813         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4814         (mm-display-inline-fontify): Check for featurep 'xemacs not
4815         extent-list.
4816
4817         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4818         itimer-list.
4819         (mm-create-image-xemacs): Only do something for XEmacs.
4820         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4821
4822         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4823
4824         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4825         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4826
4827 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4828
4829         * nnimap.el (nnimap-split-download-body):
4830         * gnus-demon.el (gnus-demon):
4831         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4832
4833 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4834
4835         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4836         macros.
4837         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4838         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4839         copy data from unibyte buffer to multibyte current buffer.
4840         (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
4841         to copy data from unibyte current buffer to multibyte buffer.
4842         (nntp-make-process-buffer): Make process buffer unibyte.
4843
4844         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4845
4846 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4847
4848         * pop3.el (pop3-open-server): Accept and process data more robustly at
4849         connexion start to avoid spurious "POP SSL connexion failed" errors.
4850
4851 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4852
4853         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4854         read group names.
4855
4856 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4857
4858         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4859
4860 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4861
4862         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4863         (nnmail-save-active): Use a unibyte buffer when saving active file,
4864         which may contain non-ASCII group names.
4865
4866         * nnml.el (nnml-request-group): Decode group names in messages.
4867
4868 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4869
4870         * message.el (message-citation-line-function)
4871         (message-insert-formatted-citation-line): Fix spelling of
4872         `message-insert-formated-citation-line'.
4873
4874 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4875
4876         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4877
4878 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4879
4880         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4881         nnmail-pathname-coding-system.
4882
4883         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4884         that a user enters; decode group names in messages.
4885
4886         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
4887
4888 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
4889
4890         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
4891
4892         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
4893
4894         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
4895         risky local variable.
4896
4897         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
4898
4899 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4900
4901         * encrypt.el: Improve documentation to fix function name typo.
4902         Reported by Daiki Ueno <ueno@unixuser.org>.
4903
4904 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4905
4906         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
4907         even if the point is not in the last page of an article.
4908         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
4909         back to the previous page.
4910
4911 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
4912
4913         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
4914
4915 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4916
4917         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
4918
4919 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4920
4921         * message.el (message-check-news-body-syntax): Avoid
4922         mm-string-as-multibyte.
4923         (message-hide-headers): Don't assume (point-min)==1.
4924
4925 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
4926
4927         * message.el (message-remove-blank-cited-lines): Fix if remove is
4928         given.
4929         (message-bogus-address-regexp): New variable.
4930         (message-bogus-recipient-p): New function.
4931         (message-check-recipients): New command.
4932         (message-syntax-checks): Add `bogus-recipient'.
4933         (message-fix-before-sending): Add `bogus-recipient'.
4934
4935         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
4936         (gnus-treat-body-boundary): Don't test window-system.
4937
4938 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
4939
4940         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
4941
4942 2007-10-28  Miles Bader  <miles@gnu.org>
4943
4944         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
4945         at compile-time too.
4946
4947 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
4948
4949         * gnus-msg.el (gnus-message-setup-hook): Add
4950         `message-remove-blank-cited-lines' to options.
4951
4952 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
4953
4954         * message.el (message-remove-blank-cited-lines): New function.
4955         Suggested by Karl Plästerer.
4956
4957 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4958
4959         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
4960         mapc.
4961
4962         * imap.el (imap-open): Replace mapcar called for effect with mapc.
4963         (top-level): Use mapc to set functions to be traced for debugging.
4964
4965         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
4966         called for effect with while loop.
4967
4968         * message.el (message-talkative-question): Replace mapcar called for
4969         effect with mapc.
4970
4971         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
4972         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
4973         called for effect with dolist.
4974
4975         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
4976
4977         * nndiary.el: Use dolist instead of mapcar to add diary headers to
4978         gnus-extra-headers and nnmail-extra-headers.
4979
4980         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
4981         called for effect with dolist.
4982         (top-level): Use mapc to set functions to be traced for debugging.
4983
4984         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
4985         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
4986         dolist.
4987
4988         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
4989         Replace mapcar called for effect with mapc.
4990         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
4991         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
4992         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
4993         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
4994
4995         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
4996         remove-if that's a cl function.
4997
4998         * webmail.el (webmail-debug): Replace mapcar called for effect with
4999         dolist.
5000
5001         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
5002         with mapc.
5003
5004 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5005
5006         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
5007         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
5008         with while loop.
5009
5010         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
5011         functions from article-* functions.
5012         (gnus-multi-decode-header): Replace mapcar called for effect with
5013         dolist.
5014
5015         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5016         (gnus-bookmark-show-details): Replace mapcar called for effect with
5017         while loop.
5018
5019         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5020         called for effect with while loop.
5021
5022         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5023         with dolist.
5024
5025         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5026         mapcar called for effect with dolist.
5027
5028         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5029
5030         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5031         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5032         Replace mapcar called for effect with dolist.
5033         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5034         mapc.
5035
5036         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5037         Replace mapcar called for effect with dolist.
5038         (gnus-topic-list): Replace mapcar called for effect with mapc.
5039
5040         * gnus.el: Use mapc instead of mapcar to add autoloads.
5041
5042 2007-10-23  Richard Stallman  <rms@gnu.org>
5043
5044         * gnus-group.el (gnus-group-highlight): Mark as risky.
5045
5046 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5047
5048         * gnus.el (gnus-server-to-method): Return method found first in
5049         gnus-newsrc-alist.
5050
5051         * gnus-art.el (gnus-article-highlight-signature)
5052         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5053         button overlay without the front stickiness.
5054
5055 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5056
5057         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5058         overview buffer needed a catch to receive its throw.
5059         (gnus-agent-flush-cache): Declared as interactive to make this function
5060         easier to use.
5061
5062 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5063
5064         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5065         `next-line'.
5066
5067 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5068
5069         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5070         exclude address matching message-dont-reply-to-names.
5071
5072 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5073
5074         * gnus-util.el (gnus-string<): New function.
5075
5076         * gnus-sum.el (gnus-article-sort-by-author)
5077         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5078
5079 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5080
5081         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5082         the frame-focus tag is set in gnus-buffer-configuration.
5083
5084 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5085
5086         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5087         the front stickiness.
5088
5089 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5090
5091         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5092         url pattern; remove duplicate one.
5093         (gnus-article-extend-url-button): New function.
5094         (gnus-article-add-buttons): Use it.
5095         (gnus-button-push): Use concatenated url that it makes.
5096
5097 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5098
5099         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5100
5101 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5102
5103         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5104         Don't hardcode point-min==1.
5105
5106 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5107
5108         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5109         Fix comment about "iso8859-1".
5110
5111 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5112
5113         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5114         ones returned from the verify-function.
5115
5116         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5117         mml2015-extract-cleartext-signature if extraction failed.
5118
5119 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5120
5121         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5122         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5123         failed.
5124
5125 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5126
5127         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5128
5129 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5130
5131         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5132         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5133         recommends to use EasyPG instead of PGG.
5134
5135         * pgg.el: Revert to revision 6.23.2.16.
5136
5137         * pgg-def.el: Revert to revision 6.6.2.14.
5138
5139         * pgg-gpg.el: Revert to revision 6.23.2.34.
5140
5141 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5142
5143         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5144         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5145         thread for both the null and zero (kill/expire thread) universal prefix
5146         cases.
5147         (gnus-summary-expire-thread): Add new function to expire a thread,
5148         using gnus-summary-kill-thread.
5149         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5150         shortcuts for gnus-summary-expire-thread.
5151         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5152         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5153
5154 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5155
5156         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5157         extras value, so an extras entry can be deleted.
5158         (gnus-registry-delete-extra-entry): Use it.
5159         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5160         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5161         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5162         storage through the gnus-registry, and provide an appropriate API for
5163         it.
5164
5165 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5166
5167         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5168         Suggested by Leo <sdl.web@gmail.com>.
5169
5170         * gnus.el: Do.
5171
5172 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5173
5174         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5175         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5176
5177         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5178
5179         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5180         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5181
5182 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5183
5184         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5185         newline.
5186         (nnmbox-request-accept-article): Don't change article in source buffer;
5187         narrow to header to use message-fetch-field rather than
5188         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5189         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5190         as delimiters; make sure article ends with newline.
5191         (nnmbox-delete-mail): Correct last position of article to be deleted;
5192         ignore X-Gnus-Newsgroup header in article body.
5193         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5194         positions; make sure article ends with newline.
5195
5196         * message.el (message-display-abbrev): Don't infloop when a user
5197         inserts SPC in the beginning of header.
5198
5199         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5200         coding-system-for-read and coding-system-for-write for XEmacs having no
5201         file-coding feature.
5202
5203         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5204
5205 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5206
5207         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5208         list of groups not followed by default.  Fix type to be regexp.
5209         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5210
5211 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5212
5213         * hmac-def.el (define-hmac-function): Switch from old-style to
5214         new-style backquotes.
5215
5216         * md4.el (md4-make-step): Likewise.
5217
5218 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5219
5220         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5221         raw-text coding system when saving .newsrc file, which may contain
5222         non-ASCII group names.
5223
5224 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5225
5226         * gnus-cus.el (gnus-score-extra): New widget.
5227         (gnus-score-extra-convert): New function.
5228         (gnus-score-customize): Use it for Extra.
5229
5230 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5231
5232         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5233         (mml2015-mailcrypt-clear-verify): Use it.
5234         (mml2015-gpg-clear-verify): Use it.
5235         (mml2015-pgg-clear-verify): Use it.
5236         (mml2015-epg-clear-verify): Replace the current part with the output
5237         from GnuPG; don't extract the plaintext by itself.
5238
5239         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5240         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5241         mml2015-clear-verify-function; don't touch the armor headers or
5242         dash-escaped text here.
5243
5244 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5245
5246         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5247         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5248         parts, or application/octet-stream as a last resort.
5249         (gnus-mime-view-part-as-type): Don't toggle display.
5250         (gnus-mime-view-part-as-charset): Don't turn off display before
5251         querying charset.
5252
5253         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5254         stuff to undisplayer function in Emacs.
5255         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5256
5257         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5258         text/calendar parts.
5259
5260 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5261
5262         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5263         decoding text/calendar parts.
5264
5265         * message.el (message-forward-make-body-mime): Always mark body as
5266         having no illegible text; remove signed-or-encrypted argument.
5267         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5268
5269         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5270         (mml-generate-mime-1): Don't encode body if it is specified to be in
5271         raw form; don't make buffer be unibyte when inserting multibyte string.
5272
5273 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5274
5275         * sha1.el: Fix up comment style.
5276         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5277         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5278
5279         * hex-util.el: Fix up comment style.
5280         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5281
5282         * gnus-salt.el: Use with-current-buffer.
5283         (gnus-pick-setup-message): Fix long-standing typo.
5284
5285 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5286
5287         * imap.el (imap-logout-timeout): New variable.
5288         (imap-logout, imap-logout-wait): New functions.
5289         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5290
5291         * nnimap.el (nnimap-logout-timeout): New server variable.
5292         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5293         nnimap-logout-timeout.
5294
5295         * gnus-art.el (gnus-article-summary-command-nosave)
5296         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5297
5298 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5299
5300         * gnus.el (gnus-maximum-newsgroup): New variable.
5301
5302         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5303         according to gnus-maximum-newsgroup.
5304
5305         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5306         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5307         Limit the range of articles according to gnus-maximum-newsgroup.
5308
5309 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5310
5311         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5312         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5313         Don't perform gnus-configure-windows here; reuse existing sticky
5314         article buffer.
5315
5316         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5317         it doesn't exist in gnus-article-mode.
5318
5319 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5320
5321         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5322         (gnus-agent-decoded-group-name): New function.
5323         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5324         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5325
5326 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5327
5328         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5329         Add binding for gnus-sticky-article.
5330         (gnus-summary-exit): Don't kill sticky article buffers.
5331
5332         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5333         article buffer.
5334         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5335         (gnus-kill-sticky-article-buffers): New commands.
5336
5337 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5338
5339         * nntp.el (nntp-xref-number-is-evil): New server variable.
5340         (nntp-find-group-and-number): If it is non-nil, don't trust article
5341         numbers in the Xref header.
5342
5343 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5344
5345         * gnus-agent.el (gnus-agent-read-group): New function.
5346         (gnus-agent-flush-group, gnus-agent-expire-group)
5347         (gnus-agent-regenerate-group): Use it.
5348         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5349         nnmail-pathname-coding-system.
5350
5351 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5352
5353         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5354
5355         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5356         that are unread as unread, and also as selected so that information of
5357         marks having been changed by a user may be updated when exiting group.
5358
5359 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5360
5361         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5362         calculated ignoring signature parts to gnus-treat-article.
5363
5364 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5365
5366         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5367         a point here in order to keep the window start.
5368         (gnus-insert-mime-security-button): Make a button overlay without the
5369         front stickiness.
5370         (gnus-mime-display-security): Goto the end of a button.
5371
5372         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5373
5374 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5375
5376         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5377         group-name-at-point.
5378         (gnus-group-completing-read): New function that offers decoded
5379         non-ASCII group names for completion.
5380         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5381         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5382         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5383         (gnus-group-fetch-control): Use it.
5384         (gnus-fetch-group): Use group-name-at-point for the initial value
5385         rather than the default value; use gnus-alive-p.
5386
5387         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5388         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5389         (gnus-summary-post-news): Use gnus-group-completing-read.
5390
5391         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5392         (gnus-read-move-group-name): Decode group name for completion.
5393
5394 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5395
5396         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5397         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5398         Yamaoka slightly modified the code).
5399
5400 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5401
5402         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5403         (nnmail-split-incoming): Bind it.
5404
5405         * nnml.el (nnml-group-name-charset): New function.
5406         (nnml-decoded-group-name): Use it; don't decode group name if
5407         nnmail-group-names-not-encoded-p is non-nil.
5408         (nnml-encoded-group-name): New function.
5409         (nnml-group-pathname): Inline nnml-decoded-group-name.
5410         (nnml-request-expire-articles): Decode group name in message.
5411         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5412         nnmail-pathname-coding-system.
5413         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5414         not decoded ones according to nnmail-group-names-not-encoded-p.
5415         (nnml-generate-active-info): Use nnml-encoded-group-name.
5416
5417 2007-08-08  Glenn Morris  <rgm@gnu.org>
5418
5419         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5420         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5421         doc-strings and comments.
5422
5423 2007-07-25  Glenn Morris  <rgm@gnu.org>
5424
5425         * Relicense all FSF files to GPLv3 or later.
5426
5427 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5428
5429         * gnus-sum.el (gnus-summary-move-article): Make
5430         gnus-summary-respool-article work.
5431
5432 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5433
5434         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5435         string.
5436
5437 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5438
5439         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5440         that should be ignored when comparing distant RSS articles with local
5441         ones.
5442         (nnrss-make-hash-index): New function.  Create a hash index according
5443         to the ignored fields.
5444         (nnrss-check-group): Use it.
5445
5446 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5447
5448         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5449
5450         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5451
5452         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5453         the new optional argument ENCODED is non-nil.
5454         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5455         coding system for encoding group name.
5456         (gnus-group-make-rss-group): Pass un-encoded group name to
5457         gnus-group-make-group.
5458         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5459         encoded.
5460
5461         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5462         Encode group name to which articles are moved or copied.
5463         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5464         coding system for encoding Newsgroup, Followup-To and Xref headers.
5465
5466         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5467         marks; use nnheader-file-coding-system to write a file.
5468         (nnagent-retrieve-headers): Bind file-name-coding-system to
5469         nnmail-pathname-coding-system.
5470
5471         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5472
5473         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5474         (nnml-request-article, nnml-request-create-group)
5475         (nnml-request-rename-group, nnml-find-id)
5476         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5477         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5478         (nnml-save-marks): Use nnml-group-pathname instead of
5479         nnmail-group-pathname.
5480
5481         (nnml-request-create-group, nnml-request-expire-articles)
5482         (nnml-request-move-article, nnml-request-delete-group)
5483         (nnml-deletable-article-p, nnml-possibly-create-directory)
5484         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5485         (nnml-open-marks): Bind file-name-coding-system to
5486         nnmail-pathname-coding-system.
5487
5488         (nnml-request-article): Pass server argument to nnml-find-group-number.
5489         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5490         server argument to nnml-possibly-create-directory.
5491         (nnml-request-accept-article): Pass server argument to
5492         nnml-active-number and nnml-save-mail.
5493         (nnml-find-group-number): Pass server argument to nnml-find-id.
5494         (nnml-request-update-info): Pass server argument to
5495         nnml-marks-changed-p.
5496
5497         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5498         (nnml-save-mail, nnml-active-number): Add server argument.
5499
5500         (nnml-request-delete-group): Warn if group is missing.
5501         (nnml-get-nov-buffer): Decode group name.
5502         (nnml-generate-active-info): Encode group name.
5503         (nnml-open-marks): Decode group name in messages.
5504
5505 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5506
5507         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5508         if it is not specified.
5509         (gnus-article-pipe-part, gnus-article-save-part)
5510         (gnus-article-interactively-view-part, gnus-article-copy-part)
5511         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5512         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5513         (gnus-article-replace-part, gnus-article-delete-part)
5514         (gnus-article-view-part-as-type): Pass raw prefix argument to
5515         gnus-article-part-wrapper.
5516
5517 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5518
5519         * gnus-agent.el (gnus-agent-save-active): Bind
5520         nnheader-file-coding-system to gnus-agent-file-coding-system.
5521
5522         * gnus-cache.el (gnus-cache-save-buffers)
5523         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5524         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5525         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5526         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5527         (gnus-cache-generate-active, gnus-cache-rename-group)
5528         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5529         (gnus-cache-update-overview-total-fetched-for): Bind
5530         file-name-coding-system to nnmail-pathname-coding-system.
5531         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5532         variables.
5533         (gnus-cache-decoded-group-name): New function.
5534         (gnus-cache-file-name): Use it.
5535         (gnus-cache-generate-active): Use non-decoded group name for active.
5536
5537         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5538         right place.
5539         (gnus-write-active-file): Don't break non-ASCII group names.
5540
5541         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5542         nnmail-pathname-coding-system.
5543
5544         * lpath.el: Bind default-file-name-coding-system,
5545         file-name-coding-system and language-info-alist for XEmacs.
5546
5547         * gnus-uu.el (gnus-uu-decode-save): Typo.
5548
5549 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5550
5551         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5552
5553 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5554
5555         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5556         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5557         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5558         (gnus-agent-flush-group, gnus-agent-flush-cache)
5559         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5560         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5561         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5562         (gnus-agent-regenerate-group)
5563         (gnus-agent-update-files-total-fetched-for)
5564         (gnus-agent-update-view-total-fetched-for): Bind
5565         file-name-coding-system to nnmail-pathname-coding-system.
5566         (gnus-agent-group-pathname): Don't encode file names by
5567         nnmail-pathname-coding-system.
5568         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5569         coding-system-for-write instead of buffer-file-coding-system to
5570         gnus-agent-file-coding-system.
5571
5572         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5573         Decode group name.
5574
5575         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5576
5577         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5578         (gnus-read-newsrc-el-file): Make group names unibyte.
5579
5580         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5581         nnmail-pathname-coding-system.
5582
5583         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5584         (nnrss-request-delete-group): Bind file-name-coding-system to
5585         nnmail-pathname-coding-system.
5586         (nnrss-read-server-data, nnrss-read-group-data): Bind
5587         file-name-coding-system correctly.
5588         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5589
5590         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5591         (nntp-server-to-method-cache): New variable.
5592         (nntp-group-pathname): New function that decodes non-ASCII group names.
5593         (nntp-possibly-create-directory, nntp-marks-changed-p)
5594         (nntp-save-marks, nntp-open-marks): Use it.
5595         (nntp-possibly-create-directory, nntp-open-marks):
5596         Bind file-name-coding-system to nnmail-pathname-coding-system.
5597         (nntp-open-marks): Decode group names when bootstrapping marks.
5598
5599         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5600         Newsgroups and Folowup-To headers.
5601
5602 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5603
5604         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5605         (gnus-server-closed-face, gnus-server-denied-face)
5606         (gnus-server-offline-face): Remove variable.
5607         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5608
5609         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5610         of modifying message-stack directly for XEmacs.
5611
5612         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5613         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5614         if the coding-system argument is nil for XEmacs.
5615
5616         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5617         mm-charset-override-alist.
5618
5619         * rfc2047.el: Don't require base64; require rfc2045 for the function
5620         rfc2045-encode-string.
5621         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5622         to quote the parameter value.
5623
5624 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5625
5626         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5627         form in gnus-group-name-charset-method-alist.
5628
5629         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5630         overrides the default layout edit-form.
5631
5632         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5633
5634         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5635
5636 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5637
5638         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5639         as unfetched articles.
5640
5641 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5642
5643         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5644
5645 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5646
5647         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5648         original back end that keeps marks in the local system.
5649
5650 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5651
5652         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5653         arg of pop-to-buffer for XEmacs.
5654         (gnus-article-read-summary-keys): Ditto; don't restore window
5655         configuration if summary command ends up with neither article buffer
5656         nor summary buffer; describe bindings if summary keys end with C-h.
5657
5658 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5659
5660         * message.el (message-fix-before-sending): Skip raw message part to be
5661         forwarded while checking illegible text.
5662         (message-forward-make-body-mime, message-forward-make-body): Mark
5663         signed or encrypted raw message as having no illegible text.
5664
5665 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5666
5667         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5668         (gnus-message-with-timestamp-1): New macro.
5669         (gnus-message-with-timestamp): New function.
5670         (gnus-message): Use them.
5671
5672         * nnheader.el (nnheader-message): Use them.
5673
5674 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5675
5676         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5677         .newsrc.eld file.
5678
5679 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5680
5681         * gnus-agent.el (gnus-agent-fetch-headers)
5682         (gnus-agent-retrieve-headers): Bind
5683         gnus-decode-encoded-address-function to identity.
5684
5685         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5686         available also when the server returns simply a dot.
5687
5688         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5689
5690 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5691
5692         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5693
5694 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5695
5696         * gnus-ems.el (gnus-x-splash): Make it work.
5697
5698         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5699         from being used.
5700
5701         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5702
5703 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5704
5705         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5706         4th and the 5th arguments.
5707
5708         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5709         the front stickiness.
5710         (gnus-article-summary-command-nosave): Correct the order of the
5711         arguments passed to pop-to-buffer.
5712         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5713         summary command ends up with the article buffer.
5714
5715         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5716         the same faces.
5717
5718 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5719
5720         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5721
5722 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5723
5724         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5725         * gnus-sum.el (gnus-summary-highlight):
5726         * pgg.el (pgg-sign-region, pgg-sign):
5727         * mail-source.el (mail-source-delete-old-incoming-confirm):
5728         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5729
5730 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5731
5732         * gnus-art.el (gnus-mime-view-part-externally)
5733         (gnus-mime-view-part-internally): Fix predicate function passed to
5734         completing-read.
5735
5736         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5737
5738         * gnus.el (gnus-update-message-archive-method): Add :version.
5739
5740 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5741
5742         * gnus.el (gnus-update-message-archive-method): New variable.
5743
5744         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5745         according to gnus-message-archive-method if
5746         gnus-update-message-archive-method is non-nil.
5747
5748 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5749
5750         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5751         by Loic Dachary <loic@dachary.org>.
5752         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5753
5754 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5755
5756         * message.el (message-pop-to-buffer): Add switch-function argument.
5757         (message-mail): Pass switch-function argument to it.
5758
5759 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5760
5761         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5762         Improve doc string.
5763
5764 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5765
5766         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5767         (gnus-header-content)
5768         * gnus-cite.el (gnus-cite-10)
5769         * gnus-srvr.el (gnus-server-closed)
5770         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5771         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5772         (gnus-group-mail-3-empty, gnus-group-mail-low)
5773         (gnus-group-mail-low-empty, gnus-splash)
5774         * message.el (message-header-to, message-header-cc)
5775         (message-header-subject, message-header-other, message-header-name)
5776         (message-header-xheader, message-separator, message-cited-text)
5777         (message-mml): Lighten colors of faces used for dark background.
5778
5779 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5780
5781         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5782         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5783
5784 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5785
5786         * message.el (message-narrow-to-headers-or-head):
5787         Ignore mail-header-separator in the body.
5788
5789 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5790
5791         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5792         same as window size.
5793
5794 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5795
5796         * message.el (message-font-lock-keywords): Use message-header-xheader
5797         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5798         ahead of the anything pattern, to get it recognised.
5799
5800 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5801
5802         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5803         spam.el loads uses it in the compiled defadvice form.
5804
5805 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5806
5807         * gnus-sum.el (gnus-articles-to-read)
5808         (gnus-summary-insert-old-articles): Don't truncate group name for
5809         `read-string'.
5810
5811         * gnus-util.el (gnus-limit-string): Delete this function.
5812
5813         * gnus-sum.el (gnus-simplify-subject-fully): Use
5814         `truncate-string-to-width' instead.
5815
5816 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5817
5818         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5819         if, on summary exit, the next group has to be selected.
5820         (gnus-summary-exit): Use it.
5821
5822 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5823
5824         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5825         non-break space.
5826
5827 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5828
5829         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5830         Check if group is not a directory.
5831         (nnfolder-request-expire-articles): Don't delete articles if the target
5832         group is not available.
5833
5834         * nnml.el (nnml-request-create-group): Properly check if group is not a
5835         file.
5836         (nnml-request-expire-articles): Don't delete articles if the target
5837         group is not available.
5838
5839         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5840         Don't quote characters that are within parentheses.
5841
5842 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5843
5844         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5845         (gnus-handle-ephemeral-exit): Select article according to it.
5846
5847 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5848
5849         * message.el (message-insert-formated-citation-line): Remove newline.
5850         (message-citation-line-format): Add final \n here so that the user can
5851         avoid a blank line.
5852
5853 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5854
5855         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5856         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5857         Update lanl/arXiv support.
5858
5859 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5860
5861         * gnus.el: Bump version number.
5862
5863 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5864
5865         * gnus.el (gnus-version-number): Bump version.
5866
5867 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5868
5869         * gnus.el: No Gnus v0.6 is released.
5870
5871 2007-04-27  Didier Verna  <didier@xemacs.org>
5872
5873         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5874         * gmm-utils.el (gmm-regexp-concat): here.
5875         * message.el: Don't require 'gnus-util.
5876         (message-dont-reply-to-names): Handle name change above.
5877         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5878
5879 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5880
5881         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5882         since the initial value varies according to the system.
5883
5884 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5885
5886         * mm-util.el (mm-charset-synonym-alist): Defcustom.
5887
5888 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5889
5890         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
5891
5892 2007-04-24  Didier Verna  <didier@xemacs.org>
5893
5894         Improve the type of gnus-ignored-from-addresses.
5895         * gnus-util.el (gnus-orify-regexp): New function.
5896         * message.el (gnus-util): Require it.
5897         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
5898         * gnus-sum.el (gnus-ignored-from-addresses): New function.
5899         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
5900
5901 2007-04-24  Didier Verna  <didier@xemacs.org>
5902
5903         * gnus-sum.el:
5904         * gnus-utils.el: Fix some trailing whitespaces.
5905
5906 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5907
5908         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
5909         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
5910         article's Message-ID; refer parent article in summary buffer.
5911
5912         * message.el (message-bounce): Call mime-to-mml.
5913
5914         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
5915         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
5916         optimize and/or forms properly.
5917
5918 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
5919
5920         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
5921         URL.
5922
5923 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5924
5925         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
5926
5927 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5928
5929         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
5930         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
5931         displayed of multipart/alternative part if it is invoked from summary
5932         buffer.
5933
5934         * mm-view.el (mm-inline-text-html-render-with-w3m)
5935         (mm-inline-text-html-render-with-w3m-standalone)
5936         (mm-inline-render-with-function): Use mail-parse-charset by default.
5937
5938 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
5939
5940         * parse-time.el (parse-time-string-chars): Check if CHAR
5941         is less than the length of parse-time-syntax.
5942
5943 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5944
5945         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
5946         from gnus-newsgroup-processable.
5947
5948 2007-04-16  Didier Verna  <didier@xemacs.org>
5949
5950         * gnus-msg.el (gnus-configure-posting-styles): Handle
5951         message-signature-directory properly with :file syntax.  Reported by
5952         "Leo".
5953
5954 2007-04-11  Didier Verna  <didier@xemacs.org>
5955
5956         New user option: message-signature-directory.
5957         * gnus-msg.el (gnus-configure-posting-styles): Support it.
5958         * message.el (message-insert-signature): Ditto.
5959         * message.el (message-signature-file): Doc update.
5960         * message.el (message-signature-directory): New.
5961
5962 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5963
5964         * gnus-msg.el (gnus-inews-yank-articles): Use
5965         message-exchange-point-and-mark instead of exchange-point-and-mark.
5966
5967 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5968
5969         * message.el (message-yank-original): Make sure cited text ends with
5970         newline; don't exchange point and mark.
5971
5972 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
5973
5974         * tls.el (open-tls-stream): Properly handle case where there
5975         is no associated buffer.
5976
5977 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
5978
5979         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
5980         message-yank-original, make sure (< mark TEXT point).
5981
5982 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
5983
5984         * message.el (message-fill-column): New variable.
5985         (message-mode): Use it.  Add comment on a possible new hook.
5986
5987         * nnmail.el (nnmail-spool-file): Mark as obsolete.
5988         (nnmail-get-new-mail): Reformat.
5989
5990         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
5991
5992         * gmm-utils.el: Fix Commentary.
5993         (gmm-tool-bar-from-list): Fix typo in doc string.
5994
5995 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
5996
5997         * message.el (message-yank-original): Don't switch point and mark
5998         unnecessarily to put point and mark as documented.
5999
6000 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6001
6002         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
6003         from the message heads.
6004
6005 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
6006
6007         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
6008         article buffer does not have a window.  This may not be the best
6009         solution but is certainly better than setting the start of the null,
6010         that is the current, window.
6011
6012 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6013
6014         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6015         (gnus-draft-setup): Run it.
6016
6017         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6018         gnus-score-fast-scoring.  Allow regexp.
6019         (gnus-score-headers): Use it.
6020
6021         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6022         XEmacs.
6023
6024         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6025         string.
6026         (gnus-button-alist): Also catch `<f1> k ...'.
6027         (gnus-treat-display-x-face): Fix doc string.
6028
6029 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6030
6031         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6032         evaluation of gnus-extended-version to ensure correct generation of the
6033         User-Agent header when message-generate-headers-first is used.
6034
6035 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6036
6037         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6038         hashcash-path is nil.  Don't call callback with incorrect number of
6039         parameters if val is 0.
6040
6041 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6042
6043         * message.el (message-required-news-headers):
6044         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6045
6046 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6047
6048         * tls.el (open-tls-stream): In handshake-waiting loop,
6049         don't wait more if there is output available to process.
6050
6051 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6052
6053         * tls.el (tls-program): Doc fix.
6054
6055 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6056
6057         * message.el (message-generate-new-buffers): Change the meaning of the
6058         nil value; add `standard' to the choices; treat t as `unique'; improve
6059         doc string.
6060         (gnus-select-frame-set-input-focus): Autoload.
6061         (message-buffer-name): Search for the existing message buffer if
6062         message-generate-new-buffers is nil or `standard'; treat the value t of
6063         message-generate-new-buffers as `unique'.
6064         (message-pop-to-buffer): Raise the frame already displaying the message
6065         buffer; clear the echo area after querying.
6066         (message-setup): Pass the `continue' argument to compose-mail.
6067         (message-mail): Prefer `switch-function' if it is given; search for the
6068         existing message buffer if the `continue' argument is non-nil; pass
6069         continue and switch-function arguments to compose-mail by way of
6070         message-setup.
6071         (message-mail-other-window): Adjust argument of message-setup.
6072         (message-mail-other-frame): Ditto.
6073
6074 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6075
6076         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6077         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6078         to turn font-lock on when turning gnus-message-citation-mode on.
6079
6080 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6081
6082         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6083         (mml-smime-function-alist): New variable; add epg as the backend.
6084         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6085         mml-smime- functions instead.
6086         * mm-view.el: Require smime.
6087
6088 2007-03-05  Didier Verna  <didier@xemacs.org>
6089
6090         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6091         instead of just inheritance for posting styles.
6092         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6093
6094 2007-02-24  Chris Moore  <dooglus@gmail.com>
6095
6096         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6097         * pgg-pgp.el (pgg-pgp-encrypt-region):
6098         * pgg-gpg.el (pgg-gpg-encrypt-region):
6099         Check pgg-encrypt-for-me if no other recipients.
6100
6101 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6102
6103         * tls.el (tls-certtool-program): Fix custom type.
6104
6105 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6106
6107         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6108         and point-at-eol instead of line-(beginning|end)-position.
6109
6110         * assistant.el (assistant-parse-buffer): Ditto.
6111
6112         * netrc.el (netrc-parse-services): Ditto.
6113
6114 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6115
6116         * mml2015.el (mml2015-epg-find-usable-key): New function.
6117         (mml2015-epg-sign): Use it.
6118         (mml2015-epg-encrypt): Use it.
6119
6120 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6121
6122         * message.el (message-make-in-reply-to): Quote name containing
6123         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6124         if there are special characters.  Reported by NAKAJI Hiroyuki
6125         <nakaji@jp.freebsd.org>.
6126
6127 2007-02-27  Didier Verna  <didier@xemacs.org>
6128
6129         Include the group parameters as well as the topic ones in the
6130         inheritance filter process.
6131         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6132         argument GROUP-PARAMS-LIST.
6133         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6134
6135 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6136
6137         * nntp.el (nntp-never-echoes-commands)
6138         (nntp-open-connection-functions-never-echo-commands): New variables.
6139         (nntp-send-command): Use them.
6140
6141 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6142
6143         * mml2015.el (mml2015-epg-verify): Simplified.
6144
6145 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6146
6147         * mml.el (mml-content-disposition-alist): New user option.
6148         (mml-content-disposition): New function.
6149         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6150         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6151
6152 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6153
6154         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6155         verification.
6156
6157 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6158
6159         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6160         articles posted in the last 24 hours.
6161
6162 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6163
6164         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6165
6166 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6167
6168         * nntp.el (nntp-send-command): Don't wait for echoes when
6169         nntp-open-ssl-stream is used.
6170
6171 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6172
6173         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6174         (gnus-message-add-citation-keywords)
6175         (gnus-message-remove-citation-keywords): Remove.
6176         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6177         directly, make the variables in font-lock-defaults buffer-local, add
6178         gnus-message-citation-keywords to them and then update the value of
6179         font-lock-keywords.
6180
6181 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6182
6183         * message.el (message-cite-original-1): Don't call
6184         gnus-article-highlight-citation.
6185
6186         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6187         citations; fix line count.
6188
6189 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6190
6191         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6192         (gnus-message-add-citation-keywords)
6193         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6194         versions of font-lock-add-keywords and font-lock-remove-keywords to
6195         work with XEmacs correctly.
6196
6197 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6198
6199         * gnus-cite.el (gnus-cite-face-list): Set the values of
6200         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6201         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6202         (gnus-message-cite-prefix-regexp): New variable.
6203         (gnus-message-search-citation-line): Use it; protect against long
6204         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6205         the 0th match data for Emacs.
6206         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6207         (gnus-message-add-citation-keywords): Append keywords rather than
6208         prepending; emulate font-lock-add-keywords if it is not available.
6209         (gnus-message-remove-citation-keywords): Emulate
6210         font-lock-remove-keywords if it is not available.
6211
6212         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6213
6214         * message.el (message-cite-prefix-regexp): Set the value of
6215         gnus-message-cite-prefix-regexp.
6216
6217 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6218
6219         * nnweb.el (nnweb-google-parse-1): Update parser.
6220
6221 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6222
6223         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6224
6225 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6226
6227         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6228         regexp.
6229
6230 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6231
6232         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6233         string-to-multibyte.
6234         (uudecode-decode-region-internal): Use it.
6235
6236         * lpath.el: Fbind string-as-multibyte for XEmacs.
6237
6238 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6239
6240         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6241         custom choice.
6242
6243         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6244
6245 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6246
6247         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6248
6249         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6250         `write-region' to respect `mm-inhibit-file-name-handlers'.
6251
6252 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6253
6254         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6255         Use gnus-home-directory instead of "~/" or "$HOME".
6256
6257 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6258
6259         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6260         to mention filename.
6261         Add comments at beginning regarding usage.
6262         (encrypt-write-file-contents): Change interactive so a string is
6263         acceptable.  If the file has no associated model, show an error instead
6264         of a nonsense prompt.
6265
6266 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6267
6268         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6269         Thanks to Yoshihiko Yamada for kind notification of this typo.
6270
6271 2007-01-12  Kenichi Handa  <handa@m17n.org>
6272
6273         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6274         multibyte buffer.
6275
6276 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6277
6278         * gnus-score.el (gnus-score-fast-scoring): New variable.
6279         (gnus-score-headers): Use it.
6280
6281         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6282
6283         * message.el (message-cite-original-1): Call
6284         gnus-article-highlight-citation if requested.
6285         (message-make-from): Allow name and address as optional arguments.
6286
6287         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6288
6289         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6290         bugs to doc string.
6291         (gnus-button-alist): Add mid\\|message-id.
6292         (gnus-button-fetch-group): Extend for use in
6293         `browse-url-browser-function'.
6294         (gnus-button-url-regexp): Try to catch paired parentheses like in
6295         Wikipedia URLs.
6296
6297         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6298         Suggested by Simon Krahnke <overlord@gmx.li>.
6299
6300 2007-01-13  Romain Francoise  <romain@orebokech.com>
6301
6302         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6303         Update copyright.
6304
6305 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6306
6307         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6308
6309 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6310
6311         * gnus-registry.el (gnus-registry-unfollowed-groups)
6312         (gnus-registry-split-fancy-with-parent): Fix documentation.
6313
6314 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6315
6316         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6317         from nnweb groups.
6318
6319 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6320
6321         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6322         Xref urls.  Erase buffer before requesting head.
6323
6324 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6325
6326         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6327         customizable.
6328
6329 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6330
6331         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6332         no signing key is found.
6333         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6334         no encrypting and/or signing key is found.
6335
6336 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6337
6338         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6339
6340 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6341
6342         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6343         headers read from disk with the ones newly found in the current search.
6344         This should no longer cause problems, because the article numbers in
6345         Gmane's `nov.php' output are ignored since the previous change.
6346
6347 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6348
6349         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6350
6351 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6352
6353         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6354         replace-regexp-in-string; bind url-version; fbind display-images-p and
6355         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6356         find-face and set-itimer-function for Emacs; bind itimer-list for
6357         Emacs.
6358
6359         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6360
6361 2007-01-01  Romain Francoise  <romain@orebokech.com>
6362
6363         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6364
6365 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6366
6367         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6368         `define-minor-mode' macro definition expanded properly.
6369         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6370         exclude it there.
6371
6372         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6373         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6374         `fboundp' test.
6375         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6376         This is OK to autoload in (S)XEmacs now.
6377
6378 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6379
6380         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6381         keystroke.
6382         (gnus-summary-limit-to-singletons): Fix typo.
6383
6384         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6385         else fails.
6386
6387 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6388
6389         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6390         docstring.
6391
6392         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6393         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6394         (gnus-summary-insert-dormant-articles): Fix typo in message.
6395
6396 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6397
6398         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6399         nil for XEmacs.
6400         (gnus-message-citation-mode): Don't autoload in XEmacs.
6401
6402         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6403
6404 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6405
6406         * nnimap.el (nnimap-expunge-search-string): Mention
6407         nnimap-search-uids-not-since-is-evil in docstring.
6408
6409 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6410
6411         * spam.el: Revert to make-obsolete-variable because
6412         define-obsolete-variable-alias is not supported in Emacs 21.
6413
6414         * spam.el (spam-ifile-path, spam-ifile-database-path)
6415         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6416         make-obsolete-variable.
6417         (spam-bsfilter-path, spam-bsfilter-program)
6418         (spam-spamassassin-path, spam-spamassassin-program)
6419         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6420         use "path" inappropriately.
6421         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6422         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6423         variable names.
6424
6425 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6426
6427         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6428         summary buffer.
6429
6430         * password.el (password-cache-remove): Use clear-string to burn
6431         password, if available.
6432
6433 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6434
6435         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6436
6437         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6438
6439         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6440         (gnus-message-highlight-citation): Move defcustom here from
6441         gnus-cite.el.
6442         (gnus-message-citation-mode): Autoload.
6443
6444         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6445         checks to make it compile with XEmacs.
6446         (gnus-message-citation-mode): New minor mode.
6447         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6448         (gnus-message-highlight-citation): New variables.
6449         (gnus-message-search-citation-line)
6450         (gnus-message-add-citation-keywords)
6451         (gnus-message-remove-citation-keywords)
6452         (turn-on-gnus-message-citation-mode)
6453         (turn-off-gnus-message-citation-mode): New functions.
6454
6455 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6456
6457         * gnus-cite.el: Enable highlighting of different citation levels in
6458         message-mode.
6459
6460 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6461
6462         * message.el (message-make-fqdn): Fix comment.
6463         (message-bogus-system-names): Add ".local".
6464
6465         * spam.el (spam-ifile-path, spam-ifile-program)
6466         (spam-ifile-database-path, spam-ifile-database)
6467         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6468         Don't use "path" inappropriately.
6469         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6470         strings.
6471         (spam-check-ifile, spam-ifile-register-with-ifile)
6472         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6473         new variable names.
6474
6475         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6476         (gnus-treat-display-smileys): Simplify using
6477         gnus-image-type-available-p.
6478
6479         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6480         available.
6481
6482         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6483         `display-images-p' if available.
6484
6485 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6486
6487         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6488         one after turning on the buffer's multibyteness instead of decoding
6489         them directly in the unibyte buffer that causes unexpected conversion
6490         in Emacs 23 (unicode).
6491
6492 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6493
6494         * message.el (message-generate-hashcash): Fix custom type.
6495
6496 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6497
6498         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6499
6500 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6501
6502         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6503         disconnect icons.  Add help text.
6504
6505 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6506
6507         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6508         negated to be consistent with the others we handle.
6509
6510 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6511
6512         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6513         version of gnus-summary-buffer to something, so that we can use two
6514         article buffers at the same time.
6515
6516 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6517
6518         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6519         trigger all the extra headers.
6520         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6521         sorting.
6522
6523 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6524
6525         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6526         solid groups.
6527
6528 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6529
6530         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6531
6532 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6533
6534         * legacy-gnus-agent.el: Add Copyright notice.
6535
6536 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6537
6538         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6539
6540 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6541
6542         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6543
6544         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6545         to make it work reliably in CVS Emacs.
6546         (gnus-summary-limit-strange-charsets-predicate)
6547         (gnus-summary-limit-to-predicate): New functions.
6548
6549 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6550
6551         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6552         specifying array size.
6553         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6554         array if it is too small.
6555         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6556         (gnus-sort-threads-loop): New function.
6557
6558 2006-12-06  Chris Moore  <dooglus@gmail.com>
6559
6560         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6561         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6562
6563 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6564
6565         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6566         options.
6567
6568 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6569
6570         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6571         DOS-ing the recipient.
6572
6573         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6574         the headers when creating the mapping to avoid mismappings.
6575         (nnweb-gmane-create-mapping): Always nix out old mapping.
6576
6577 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6578
6579         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6580         and mm-verify-option to never.
6581
6582 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6583
6584         * message.el (message-signed-or-encrypted-p): New function.
6585         (message-forward-make-body): Use it.
6586
6587         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6588         Replace encode-coding-string with mm-encode-coding-string.
6589
6590 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6591
6592         * nneething.el (nneething-decode-file-name): Replace
6593         decode-coding-string with mm-decode-coding-string.
6594
6595         * gnus-int.el (gnus-open-server): Say failed server's name.
6596
6597 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6598
6599         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6600         strings to a single string.  Quote `errors-file-name'.
6601         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6602         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6603         Adjust calls.  Use `shell-quote-argument'.
6604
6605 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6606
6607         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6608         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6609
6610         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6611         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6612         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6613         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6614         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6615         (gnus-subscribe-newsgroup, gnus-1):
6616         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6617         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6618         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6619         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6620
6621 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6622
6623         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6624         keystroke.
6625         (gnus-summary-limit-to-bodies): Implement headersp.
6626
6627 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6628
6629         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6630
6631 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6632
6633         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6634
6635 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6636
6637         * message.el (message-generate-hashcash): Expand range of values to
6638         include `opportunistic'.
6639         (message-send-mail): Use it.
6640
6641 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6642
6643         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6644         and comment it.
6645
6646         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6647
6648 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6649
6650         * gnus-util.el (gnus-extract-address-components): Improve comment.
6651
6652 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6653
6654         * gnus-util.el (gnus-extract-address-components): Work with address in
6655         which the name portion contains @.
6656
6657         * lpath.el: Fbind custom-autoload.
6658
6659 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6660
6661         * gnus.el (gnus-start): Move custom group up.
6662         (gnus-select-method): Don't autoload, but make it available for
6663         `customize-variable'.
6664         (gnus-getenv-nntpserver): Don't autoload.
6665
6666 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6667
6668         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6669
6670 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6671
6672         * message.el (message-sendmail-extra-arguments): New variable.
6673         (message-send-mail-with-sendmail): Use it.
6674
6675 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6676
6677         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6678         mm-with-unibyte-current-buffer to make string unibyte.
6679
6680         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6681         mm-string-as-multibyte.
6682
6683 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6684
6685         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6686         Reported by Werner Koch <wk@gnupg.org>.
6687
6688 2006-11-14  Daiki Ueno  <ueno@p360>
6689
6690         * mml2015.el: Autoload epa-select-keys when compiling.
6691
6692 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6693
6694         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6695         message-options.
6696         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6697
6698 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6699
6700         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6701         EasyPG (< 0.0.6).
6702         (mml2015-always-trust): New user option.
6703         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6704         prompt.
6705
6706 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6707
6708         * nntp.el (nntp-authinfo-force): New variable.
6709         (nntp-send-authinfo): Use it.
6710
6711 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6712
6713         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6714         decode encoded words.  Improve prompt.  Add comment about forwarding.
6715         (message-replacement-char): Move up.
6716
6717 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6718
6719         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6720         instead of gnus-intersection because arguments of gnus-sorted-nunion
6721         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6722
6723 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6724
6725         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6726         (message-simplify-subject-functions): Enable
6727         message-strip-subject-encoded-words by default.
6728
6729 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6730
6731         * message.el (message-strip-subject-encoded-words): New function.
6732         (message-simplify-subject-functions): New variable.
6733         (message-simplify-subject): Use it.  Fix typo in doc string.
6734         Support message-strip-subject-encoded-words.
6735
6736 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6737
6738         * gnus-diary.el (gnus-diary-delay-format-function):
6739         * nndiary.el (nndiary-reminders):
6740         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6741
6742 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6743
6744         * gnus-art.el (article-hide-boring-headers): Fetch date from
6745         gnus-original-article-buffer to avoid problems with localized date
6746         strings.
6747
6748 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6749
6750         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6751
6752 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6753
6754         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6755         New variables.
6756         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6757         (mm-charset-synonym-alist): Move some entries to
6758         mm-codepage-iso-8859-list.
6759         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6760         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6761
6762 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6763
6764         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6765
6766 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6767
6768         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6769         with Emacs 21 and XEmacs.
6770
6771 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6772
6773         * spam.el (spam-parse-address): New function for better parsing,
6774         catching errors, etc.
6775         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6776
6777 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6778
6779         * mm-view.el: Add interactive arg to html2text autoload.
6780
6781 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6782
6783         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6784
6785 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6786
6787         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6788         variables.
6789         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6790         (mm-charset-synonym-alist): Move some entries to
6791         mm-codepage-iso-8859-list.
6792
6793         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6794
6795 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6796
6797         * message.el (message-citation-line-format)
6798         (message-insert-formated-citation-line): Fix implementation of %E, %N
6799         and %n according to the doc string.
6800
6801 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6802
6803         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6804         car-safe to avoid bad parses.
6805
6806 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6807
6808         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6809         names.
6810
6811         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6812
6813 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6814
6815         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6816         header.
6817
6818         * message.el (message-draft-headers): Add Date.
6819         (message-headers-to-generate): Fix typo in docstring.
6820
6821         * nndraft.el (nndraft-required-headers): New variable.
6822         (nndraft-generate-headers): Use it.
6823
6824         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6825
6826 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6827
6828         * gnus-registry.el (gnus-registry-wash-for-keywords)
6829         (gnus-registry-find-keywords): New functions to allow easy searching of
6830         articles that are in the registry.
6831
6832 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6833
6834         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6835         ietf-drums-parse-address instead of gnus-extract-address-components.
6836         Reported by Damien Elmes <damien@repose.cx>.
6837
6838 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6839
6840         * gnus.el (gnus-mime): Remove unused custom group.
6841
6842 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6843
6844         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6845         "blank line" when searching for end of armor headers.
6846
6847 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6848
6849         * gmm-utils.el (gmm-write-region): Fix variable name.
6850
6851 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6852
6853         * gmm-utils.el (gmm-write-region): New function based on compatibility
6854         code from `mm-make-temp-file'.
6855
6856         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6857
6858         * nnmaildir.el (nnmaildir--update-nov)
6859         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6860         Use `gmm-write-region'.
6861
6862 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6863
6864         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6865         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6866
6867         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6868
6869         * message.el (message-replacement-char): New variable.
6870         (message-fix-before-sending): Use it.
6871         (message-simplify-subject): New function to remove duplicate code.
6872         (message-reply, message-followup): Use it.
6873
6874         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6875         gnus-summary-limit-to-articles.
6876
6877 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6878
6879         * gnus-util.el (gnus-with-local-quit): New macro.
6880
6881         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6882
6883 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6884
6885         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
6886         ignore non-string data.
6887
6888 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
6889
6890         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
6891         non-string data (needs to be done in the registry too).
6892
6893 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6894
6895         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
6896         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
6897         (gnus-registry-split-fancy-with-parent)
6898         (gnus-registry-fetch-simplified-message-subject-fast)
6899         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
6900         Remove text properties on ingress into the registry and when it's saved.
6901         (gnus-registry-clean-empty-function): Fix bug with cleaning the
6902         registry from entries with no groups.
6903
6904 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6905
6906         * gnus-util.el (gnus-string-remove-all-properties): Add utility
6907         function to remove string properties.
6908
6909 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
6910
6911         * gmm-utils.el (gmm): Adjust custom version.
6912
6913         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
6914         custom version.
6915
6916         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
6917
6918 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
6919
6920         * gnus-art.el (gnus-insert-prev-page-button)
6921         (gnus-insert-next-page-button): Simplify.  Reformat.
6922
6923 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6924
6925         * gnus-art.el (gnus-insert-prev-page-button)
6926         (gnus-insert-next-page-button): Apply gnus-article-button-face.
6927
6928 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
6929
6930         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
6931
6932 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6933
6934         * gnus-art.el (gnus-insert-mime-button)
6935         (gnus-insert-mime-security-button):
6936         Apply gnus-article-button-face to MIME and security buttons.
6937
6938 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
6939
6940         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
6941         readable.
6942
6943 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6944
6945         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
6946
6947 2006-09-20  Steve Youngs  <steve@sxemacs.org>
6948
6949         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
6950         `browse-url-of-file' instead of `browse-url'.
6951
6952 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6953
6954         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6955         regexp.  Articles containing quotation were cut prematurely.
6956
6957 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6958
6959         * message.el (message-cite-original-1): Use nobody by default for the
6960         value of From header.
6961         (message-reply): Ditto.
6962
6963 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
6964
6965         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
6966         to the gnus-info.  This fixes a bug of inline-PGP message verification.
6967         Reported by Michael Piotrowski <mxp@dynalabs.de>.
6968
6969 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
6970
6971         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
6972         mails in the doc string.  Add some URLs in comment.
6973         (pop3-movemail): Warn about pop3-leave-mail-on-server.
6974
6975 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6976
6977         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
6978         backslashes handling and the way to find boundaries of quoted strings.
6979
6980 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
6981
6982         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
6983         mml1991-encrypt-to-self is set and mml1991-signers is not set.
6984         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
6985         mml2015-encrypt-to-self is set and mml2015-signers is not set.
6986
6987 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
6988
6989         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
6990         doc string.
6991         (gnus-button-regexp, gnus-button-last): Remove unused variables.
6992
6993 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6994
6995         * lpath.el: Fbind epg-check-configuration.
6996
6997 2006-09-06  Simon Josefsson  <jas@extundo.com>
6998
6999         * mml2015.el (mml2015-use): Doc fix, mention epg.
7000
7001 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7002
7003         * mml2015.el (mml2015-use): Default to epg, if available.
7004
7005 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7006
7007         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
7008         message-sender.
7009         (mml1991-epg-encrypt): Ditto.
7010         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
7011         message-sender.
7012         (mml2015-epg-encrypt): Ditto.
7013
7014 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7015
7016         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7017         several common directories.
7018
7019 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7020
7021         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7022         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7023
7024 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7025
7026         * gnus-art.el (article-decode-encoded-words): Make it fast.
7027
7028 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7029
7030         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7031
7032         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7033         in quoted string into `\'.
7034
7035 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7036
7037         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7038         Use standard-syntax-table.
7039
7040 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7041
7042         * gnus-art.el (gnus-decode-address-function): New variable.
7043         (article-decode-encoded-words): Use it to decode headers which are
7044         assumed to contain addresses.
7045         (gnus-mime-delete-part): Remove useless `or'.
7046
7047         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7048         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7049         (gnus-nov-parse-line): Use it to decode From header.
7050         (gnus-get-newsgroup-headers): Ditto.
7051         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7052
7053         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7054         (mail-decode-encoded-address-string): New alias.
7055
7056         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7057         New function.
7058         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7059         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7060         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7061         (rfc2047-decode-string): Ditto.
7062         (rfc2047-decode-address-region): New function.
7063         (rfc2047-decode-address-string): New function.
7064
7065 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7066
7067         * message.el (message-caesar-buffer-body): Allow rotating headers.
7068
7069         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7070
7071         * message.el (message-insert-formated-citation-line): Fix %f.
7072         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7073
7074 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7075
7076         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7077         (gnus-bookmark-mouse-available-p): New macro.
7078         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7079         (gnus-bookmark-bmenu-show-infos): Use it.
7080         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7081         (gnus-bookmark-bmenu-hide-infos): Ditto.
7082         (gnus-bookmark-remove-properties): New function.
7083         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7084         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7085         (gnus-bookmark-write-file): Bind coding-system-for-write.
7086         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7087         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7088         group before selecting it.
7089         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7090         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7091         quit-window if it is not available; use gnus-mouse-2 and bind it to
7092         gnus-bookmark-bmenu-select-by-mouse.
7093         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7094         (gnus-bookmark-bmenu-select-by-mouse): New function.
7095
7096 2006-08-13  Romain Francoise  <romain@orebokech.com>
7097
7098         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7099         space.
7100
7101 2006-08-10  Romain Francoise  <romain@orebokech.com>
7102
7103         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7104         (dns-mode-soa-auto-increment-serial): New user option.
7105         (dns-mode-soa-maybe-increment-serial): New function.
7106         (dns-mode): Add the latter to `write-contents-functions'.
7107
7108 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7109
7110         * compface.el (uncompface): Use binary rather than raw-text-unix.
7111
7112 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7113
7114         * compface.el (uncompface): Make sure the eol conversion doesn't take
7115         place when communicating with the external programs.  Reported by
7116         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7117
7118 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7119
7120         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7121
7122 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7123
7124         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7125         Make it more robust by parsing author and date independently.
7126
7127 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7128
7129         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7130
7131 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7132
7133         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7134         first matching secret key.
7135         (mml2015-epg-encrypt): Ditto.
7136
7137         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7138         first matching secret key.
7139         (mml1991-epg-encrypt): Ditto.
7140
7141         * mml2015.el (mml2015-encrypt-to-self): New user option.
7142         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7143         mml2015-epg-encrypt-to-self is set.
7144
7145         * mml1991.el (mml1991-encrypt-to-self): New variable.
7146         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7147         mml1991-epg-encrypt-to-self is set.
7148
7149         * mml2015.el (mml2015-signers): New user option.
7150         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7151         (mml2015-epg-encrypt): Allow to select signing keys.
7152
7153         * mml1991.el (mml1991-signers): New variable.
7154         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7155         (mml1991-epg-encrypt): Allow to select signing keys.
7156
7157 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7158
7159         * nnheader.el (nnheader-insert-head): Make it work even if the file
7160         uses CRLF for the line-break code.
7161
7162 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7163
7164         * mml2015.el: Require mml-sec instead of password.
7165         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7166         (mml2015-cache-passphrase): Inherit the default value from
7167         mml-secure-cache-passphrase.
7168         (mml2015-passphrase-cache-expiry): Inherit the default value from
7169         mml-secure-passphrase-cache-expiry.
7170
7171         * mml1991.el: Require mml-sec instead of password.
7172         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7173         (mml1991-cache-passphrase): Inherit the default value from
7174         mml-secure-cache-passphrase.
7175         (mml1991-passphrase-cache-expiry): Inherit the default value from
7176         mml-secure-passphrase-cache-expiry.
7177
7178         * mml-sec.el: Require password.
7179         (mml-secure-verbose): New user option.
7180         (mml-secure-cache-passphrase): New user option.
7181         (mml-secure-passphrase-cache-expiry): New user option.
7182
7183 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7184
7185         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7186         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7187         andreas@altroot.de (Andreas Vögele).
7188
7189         FIXME: Use `tiny change'?
7190
7191 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7192
7193         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7194         workaround for the url package included with Emacs.
7195
7196         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7197
7198 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7199
7200         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7201         correctly.  This fixes a bug caused by the 2006-05-12 change.
7202
7203 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7204
7205         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7206         some information about the error when saying that the `bogus' mail
7207         group will be used.
7208
7209 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7210
7211         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7212         string.
7213
7214 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7215
7216         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7217
7218 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7219
7220         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7221
7222 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7223
7224         * mml1991.el (mml1991-function-alist): Add epg.
7225         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7226         (mml1991-epg-encrypt): New functions.
7227
7228 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7229
7230         * mml2015.el (mml2015-verbose): New variable.
7231         (mml2015-cache-passphrase): Ditto.
7232         (mml2015-passphrase-cache-expiry): Ditto.
7233         (mml2015-function-alist): Add epg.
7234         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7235         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7236         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7237         functions.
7238
7239 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7240
7241         * message.el (message-cite-original-1): Preserve region when removing
7242         quoted text due to X-No-Archive in order to avoid bogus attribution
7243         when citing multiple messages.
7244
7245 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7246
7247         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7248         Kenneth Jacker <khj@be.cs.appstate.edu>.
7249
7250 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7251
7252         * gnus-diary.el (gnus-user-format-function-d)
7253         (gnus-user-format-function-D): Autoload.
7254
7255         * imap.el (Commentary): Fix typo.
7256
7257         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7258         2006-04-22 contribution.
7259
7260 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7261
7262         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7263         It didn't really fix the bogosity I'm seeing with solid web groups.
7264
7265 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7266
7267         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7268         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7269         created using server names.  If we use the feature without declaring
7270         it, Gnus does not properly manage server and group state.
7271
7272         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7273         bound.
7274
7275 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7276
7277         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7278         looking up the method using GROUP's prefix before inventing a new one.
7279         It is used on killed/unknown groups in various places where returning
7280         an all-new method isn't expected by the caller.
7281
7282         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7283         and match semantics of gnus-group-real-prefix.
7284
7285 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7286
7287         * nnmail.el (nnmail-broken-references-mailers): New variable.
7288         (nnmail-ignore-broken-references): New function generalizing
7289         nnmail-fix-eudora-headers.
7290         (nnmail-fix-eudora-headers): Now obsolete.
7291
7292         * gnus-art.el (gnus-button-handle-custom): Support
7293         `customize-apropos*'.
7294
7295 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7296
7297         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7298
7299         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7300         articles.
7301
7302 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7303
7304         * message.el (message-cite-reply-above): New variable.
7305         (message-yank-original): Use it.
7306
7307 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7308
7309         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7310
7311 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7312
7313         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7314         as read.
7315
7316         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7317
7318 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7319
7320         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7321         (gnus-bookmark-default-file): Use gnus-directory.
7322         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7323         Remove "*" in doc string.
7324         (gnus-bookmark-write-file): Simplify.
7325         (gnus-bookmark-maybe-sort-alist): Use `when'.
7326         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7327         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7328         FIXME about Emacs 21 and XEmacs compatibility.
7329         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7330         compatibility.
7331         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7332         compatibility.
7333         (gnus-bookmark-menu-heading): Fix version.
7334
7335 2006-06-19  Bastien Guerry  <bzg@altern.org>
7336
7337         * gnus-bookmark.el: New file.
7338
7339 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7340
7341         * message.el (message-syntax-checks): Doc fix.
7342
7343 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7344
7345         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7346         unsubscribed groups as if they were killed ones.  It causes duplicate
7347         entries in gnus-newsrc-alist.
7348
7349 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7350
7351         * message.el (message-syntax-checks): Doc fix.
7352         (message-send-mail): Add check for continuation headers.
7353         (message-check-news-header-syntax): Fix regexp used to check for
7354         continuation headers.
7355
7356 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7357
7358         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7359
7360 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7361
7362         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7363
7364 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7365
7366         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7367         default-truncate-lines.
7368
7369 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7370
7371         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7372         to fill the utf-8 entry.
7373
7374         * lpath.el: Fbind unicode-precedence-list.
7375
7376 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7377
7378         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7379
7380 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7381
7382         * gnus-agent.el (directory-files-and-attributes): Move all the way
7383         forward (the third and final move).
7384         (gnus-agent-read-agentview): Trap reconstruction errors due to
7385         nonexistant directory.  Handle by returning nil.
7386
7387 2006-05-30  Didier Verna  <didier@xemacs.org>
7388
7389         * message.el (message-dont-reply-to-names): Update the custom type.
7390         * message.el (message-dont-reply-to-names): New defsubst: potentially
7391         convert a list of regexps into a single one.
7392         * message.el (message-get-reply-headers): Use it.
7393         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7394
7395 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7396
7397         * gnus-agent.el (directory-files-and-attributes): Move forward.
7398
7399 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7400
7401         * gnus-ml.el (gnus-mailing-list-subscribe)
7402         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7403         (gnus-mailing-list-message): Fix doc strings.
7404
7405 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7406
7407         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7408         of doing it manually.
7409
7410 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7411
7412         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7413         comment.
7414
7415 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7416
7417         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7418         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7419         (gnus-agent-read-local): All symbols allocated in my-obarray.
7420         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7421         (gnus-agent-regenerate-group): Check numeric names to see if they are
7422         messages or groups.
7423         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7424         better way of do this...)
7425
7426         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7427         'dummy.group' (there should be a better way of do this...)
7428
7429 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7430
7431         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7432         (gnus-saved-headers): Ditto.
7433         (gnus-default-article-saver): Mention functions may have properties.
7434         (gnus-article-save): Override gnus-save-all-headers and
7435         gnus-saved-headers by :headers property which saver function may have.
7436         (gnus-summary-save-in-file): Add :headers property.
7437         (gnus-summary-write-to-file): Ditto.
7438
7439         * gnus-sum.el (gnus-summary-save-article): Bind
7440         gnus-prompt-before-saving to t when saving many articles in a file;
7441         always show all headers.
7442
7443         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7444
7445 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7446
7447         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7448         marks.
7449
7450         * message.el (message-indent-citation): Add optional arguments to allow
7451         using it outside of message buffers.
7452
7453         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7454         (gnus-article-treat-unfold-headers): Use it.
7455         (gnus-article-truncate-lines): New variable.
7456         (gnus-article-mode): Use it.
7457         (gnus-article-toggle-truncate-lines): New function.
7458
7459         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7460         gnus-article-toggle-truncate-lines.
7461
7462         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7463         coding system in XEmacs, use binary.
7464
7465 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7466
7467         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7468         after-load-alist.
7469
7470         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7471         this function should save decoded articles.
7472         (gnus-summary-write-to-file): Use property to specify this function
7473         should save decoded articles and specify gnus-summary-save-in-file
7474         should be used to save articles other than the first one when saving
7475         many articles.
7476         (gnus-summary-save-body-in-file): Use property to specify this
7477         function should save decoded articles.
7478         (gnus-summary-write-body-to-file): Use property to specify this
7479         function should save decoded articles and specify
7480         gnus-summary-save-body-in-file should be used to save articles other
7481         than the first one when saving many articles.
7482
7483         * gnus-sum.el (gnus-summary-save-article): Simplify.
7484
7485 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7486
7487         * gnus-art.el (gnus-default-article-saver): Add
7488         gnus-summary-write-body-to-file.
7489         (gnus-article-save-coding-system): Don't use coding system object
7490         in XEmacs.
7491         (gnus-read-save-file-name): Add optional `dir-var' argument which
7492         specifies directory in which files are saved; work even if optional
7493         `variable' argument is not specified.
7494         (gnus-summary-write-to-file): Read file name.
7495         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7496         (gnus-summary-write-body-to-file): New function.
7497
7498         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7499         (gnus-summary-local-variables): Add it.
7500         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7501         (gnus-summary-save-article): Remove optional `decode' argument;
7502         determine whether to decode articles by the value of
7503         gnus-default-article-saver; when saving many files using
7504         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7505         it first and use gnus-summary-save-in-file or
7506         gnus-summary-save-body-in-file thereafter unless
7507         gnus-prompt-before-saving is always; move point to article which
7508         will be saved.
7509         (gnus-summary-save-article-file): Revert.
7510         (gnus-summary-write-article-file): Revert.
7511         (gnus-summary-save-article-body-file): Revert.
7512         (gnus-summary-write-article-body-file): New function.
7513
7514 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7515
7516         * gnus-art.el (gnus-default-article-saver): Doc fix.
7517         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7518         from gnus-summary-save-article-coding-system, and default to a
7519         certain coding system.
7520         (gnus-output-to-file): Add coding cookie and encode text according
7521         to gnus-article-save-coding-system; don't use mm-append-to-file.
7522
7523         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7524         gnus-art.el and rename to gnus-article-save-coding-system.
7525         (gnus-summary-save-article): Require gnus-art; don't show all
7526         headers if it decodes articles; don't add coding cookie here;
7527         don't bind mm-text-coding-system-for-write.
7528         (gnus-summary-save-article-file): Save decoded articles.
7529         (gnus-summary-write-article-file): When saving many files, use
7530         gnus-summary-write-to-file first and gnus-summary-save-in-file
7531         thereafter unless gnus-prompt-before-saving is always.
7532         (gnus-summary-save-article-body-file): Save decoded articles.
7533
7534         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7535
7536 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7537
7538         * nnrss.el (nnrss-check-group): Bind hash-index.
7539
7540 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7541
7542         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7543         its hash index.  Store this hash in `nnrss-group-data'.
7544         (nnrss-read-group-data): Update accordingly.
7545
7546 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7547
7548         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7549         entry.
7550
7551         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7552         gnus-article-browse-html-article.
7553
7554 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7555
7556         * gnus-sum.el (gnus-summary-mime-map): Add
7557         gnus-article-browse-html-article.
7558
7559         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7560
7561 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7562
7563         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7564         suitable coding systems in customize.
7565
7566 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7567
7568         * mail-source.el (mail-sources): Fix custom type.
7569
7570 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7571
7572         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7573         (gnus-summary-expire-articles-now): Shorten prompt.
7574
7575         * gmm-utils.el (wid-edit): Require.
7576         (defun-gmm): Renamed from `gmm-defun-compat'.
7577         (gmm-image-search-load-path): Use it.
7578         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7579
7580 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7581
7582         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7583         variable.
7584         (gnus-summary-save-article): Add optional `decode' argument.  If
7585         it is set and gnus-summary-save-article-coding-system is non-nil,
7586         save decoded article.
7587         (gnus-summary-write-article-file): Save decoded article if
7588         gnus-summary-save-article-coding-system is non-nil.
7589
7590         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7591         type.
7592
7593 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7594
7595         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7596
7597 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7598
7599         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7600         first to test gnus-single-article-buffer which may be buffer-local.
7601
7602         * gnus-sum.el (gnus-summary-setup-buffer): Make
7603         gnus-single-article-buffer buffer-local and nil in ephemeral
7604         group; make gnus-article-buffer, gnus-article-current, and
7605         gnus-original-article-buffer always buffer-local.
7606         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7607         group.
7608         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7609
7610 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7611
7612         * nnml.el (nnml-request-compact-group): Compressed files might not
7613         have .gz extension.
7614
7615 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7616
7617         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7618         (mm-copy-to-buffer): Use with-current-buffer.
7619         (mm-display-part): Simplify.
7620         (mm-inlinable-p): Add optional arg `type'.
7621
7622 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7623
7624         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7625         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7626         Try harder to show the attachment internally or externally using
7627         gnus-mime-view-part-as-type.
7628
7629 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7630
7631         * message.el (message-from-style, message-signature-separator)
7632         (message-user-organization-file, message-send-mail-function)
7633         (message-citation-line-function, message-yank-prefix)
7634         (message-indent-citation-function, message-signature)
7635         (message-signature-file, message-signature-insert-empty-line):
7636         Remove autoloads.
7637
7638         * gnus-art.el (gnus-buttonized-mime-types): Remove
7639         "multipart/signed".  Revert 2006-04-26 change.
7640
7641 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7642
7643         * gnus.el (gnus-version-number): Bump version.
7644
7645 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7646
7647         * gnus.el: No Gnus v0.5 is released.
7648
7649 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7650
7651         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7652         fetching articles by message-id.
7653
7654 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7655
7656         * message.el (hashcash): Require hashcash as normal.
7657
7658         * ecomplete.el (ecomplete-highlight-match-line): Use
7659         point-at-eol.
7660         (ecomplete-highlight-match-line): Use `highlight', because that
7661         face exists in both Emacs and XEmacs.
7662
7663         * message.el (message-display-abbrev): Use point-at-bol.
7664
7665         * mail-source.el: Don't require timer/timer-funcs.
7666
7667         * gnus-async.el: Ditto.
7668
7669         * password.el: Ditto.
7670
7671         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7672
7673         * mm-url.el: Ditto.
7674
7675         * gnus-xmas.el: Don't require timer-funcs.
7676
7677         * mm-util.el: Require timer/timer-funcs.
7678
7679 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7680
7681         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7682         Close.
7683
7684 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7685
7686         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7687         unibyte after clear-decrypt function runs.
7688
7689         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7690         returns as a unibyte string.
7691
7692 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7693
7694         * lpath.el: Revert.
7695
7696         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7697         (pgg-gpg-process-sentinel): Revert.
7698
7699         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7700         (pgg-pgp-lookup-key): Revert.
7701
7702         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7703         (pgg-pgp5-lookup-key): Revert.
7704
7705         * pgg.el (pgg-fetch-key): Revert.
7706
7707 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7708
7709         * lpath.el: Fbind string-as-multibyte for XEmacs.
7710
7711         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7712         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7713         (mml1991-pgg-encrypt): Ditto.
7714
7715         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7716         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7717         a multibyte buffer.
7718
7719         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7720         (pgg-pgp-lookup-key): Ditto.
7721
7722         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7723         (pgg-pgp5-lookup-key): Ditto.
7724
7725         * pgg.el (pgg-fetch-key): Ditto.
7726
7727 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7728
7729         * message.el (message-user-organization-file): Check several
7730         locations of the organization file.
7731
7732         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7733         Add gnus-article-view-part-as-type.
7734
7735         * gnus-art.el (gnus-article-view-part-as-type): New function.
7736
7737         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7738         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7739
7740         * mml.el: Simplify autoload.
7741         (mml-mode): defvar dnd-protocol-alist instead of using
7742         symbol-value.
7743         (mml-default-directory): New variable.
7744         (mml-minibuffer-read-file): Use it.
7745         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7746
7747         * message.el (message-citation-line-format): New variable.
7748         (message-insert-formated-citation-line): New function.
7749         (message-citation-line-function): Add
7750         `message-insert-formated-citation-line' to custom type.
7751
7752         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7753         to doc string.
7754
7755         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7756         depending on mm-verify-option.
7757
7758 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7759
7760         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7761         binding pgg-* variables; reimplement the section which prevents
7762         MIME header from being signed.
7763         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7764         pgg-text-mode; remove a blank line at the top of body.
7765
7766         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7767         lines at the top of body; use gnus-newsgroup-charset if there's no
7768         Charset header.
7769
7770 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7771
7772         * message.el (message-self-insert-commands): Doc fix.
7773
7774         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7775         (mm-uu-pgp-encrypted-test): Ditto.
7776         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7777         between header and body; return application/pgp-encrypted handle
7778         if decryption failed; decode decrypted body by charset.
7779
7780         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7781         element match to application/pgp-*.
7782
7783 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7784
7785         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7786         HTML.
7787
7788 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7789
7790         * mail-source.el (mail-source-call-script): Message the error
7791         string.
7792
7793 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7794
7795         * gnus-util.el (gnus-byte-compile): Use it.
7796
7797 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7798
7799         * gnus-util.el (kill-empty-logs): New function.
7800
7801 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7802
7803         * message.el (message-mail-alias-type): Doc fix.
7804         (message-mail-alias-type-p): New function.
7805         (message-send): Use it.
7806         (message-mode): Ditto.
7807         (message-strip-forbidden-properties): Ditto.
7808
7809         * ecomplete.el (ecomplete-database-file-coding-system): New
7810         variable.
7811         (ecomplete-save): Use it.
7812         (ecomplete-setup): Use it.
7813
7814 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7815
7816         * message.el (message-self-insert-commands): New variable.
7817         (message-strip-forbidden-properties): Use it.
7818
7819 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7820
7821         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7822         that doesn't make XEmacs choke.
7823
7824 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7825
7826         * gnus-util.el (gnus-replace-in-string):
7827         Prefer replace-regexp-in-string over of replace-in-string.
7828
7829 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7830
7831         * gnus-util.el (gnus-select-frame-set-input-focus):
7832         Use select-frame-set-input-focus if it is available in XEmacs; use
7833         definition defined in Emacs 22 for old Emacsen.
7834
7835         * dgnushack.el: Autoload unmorse-region for XEmacs.
7836
7837         * lpath.el: Bind cursor-in-non-selected-windows and
7838         select-frame-set-input-focus for XEmacs.
7839
7840 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7841
7842         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7843
7844 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7845
7846         * gnus-registry.el (gnus-registry-cache-save): Remove text
7847         properties when saving via the temp buffer.
7848
7849 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7850
7851         * message.el (message-generate-hashcash): Honor custom type.
7852
7853 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7854
7855         * message.el (message-generate-hashcash): Default to non-nil when
7856         hashcash is found.
7857
7858         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7859         (gnus-refer-thread-limit): Increase default to 500.
7860
7861         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7862
7863         * flow-fill.el (fill-flowed): Allow delete-space.
7864
7865 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7866
7867         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7868         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7869         Remove autoloads.
7870
7871 2006-04-18  Simon Josefsson  <jas@extundo.com>
7872
7873         * message.el (message-generate-hashcash): Default to.
7874
7875 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7876
7877         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7878         concatenating segments rather than before concatenating them.
7879
7880 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7881
7882         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7883
7884 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7885
7886         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
7887
7888         * message.el (message-forward-make-body-plain): Allow
7889         message-forward-ignored-headers to be a list.
7890         (message-remove-ignored-headers): Factor out into function.
7891         (message-forward-make-body-mml): Use it.
7892
7893         * imap.el (imap-quote-specials): New function.
7894         (imap-login-auth): Quote specials.
7895
7896         * rfc2231.el (rfc2231-parse-string): Remove dead code.
7897         (rfc2231-parse-string): Allow concatanation of parameters that
7898         aren't contiguous.  The test case is
7899           (mail-header-parse-content-type "message/external-body;
7900             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
7901             access-type=LOCAL-FILE;
7902             name*1*=plugh%2fhello-sailor%2fbing.pdf")
7903
7904 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7905
7906         * nntp.el (nntp-accept-process-output): Return the value of
7907         `nnheader-accept-process-output'.
7908
7909 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7910
7911         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
7912         (gnus-button-alist): Recognize more diff formats.
7913         (gnus-button-patch): Strip directory.
7914
7915 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7916
7917         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
7918         Emacs 22 when setting focus.
7919
7920 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7921
7922         * gnus-art.el (gnus-article-treat-types): Do treatment of
7923         text/x-verbatim parts.
7924         (gnus-button-patch): New command.
7925
7926         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
7927         addresses that contain invalid characters.
7928
7929 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7930
7931         * message.el (message-put-addresses-in-ecomplete): Use
7932         gnus-replace-in-string.
7933         (message-is-yours-p): Use the more correct
7934         mail-header-parse-address instead of
7935         mail-extract-address-components.
7936         (message-put-addresses-in-ecomplete): Fix typo.
7937
7938         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
7939         keystroke.
7940
7941         * gnus-art.el (gnus-treatment-function-alist): Change order of
7942         newsgroups/generic header folding to avoid double-folding.
7943
7944         * message.el (message-hidden-headers): Add X-Draft-From.
7945
7946         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
7947         command.
7948         (gnus-summary-repeat-search-article-backward): New command.
7949
7950         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
7951         groups in the parent topic.
7952
7953 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
7954
7955         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
7956         (spam-extra-header-to-number): Return the CRM114 number as a
7957         number instead of a string.
7958
7959 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7960
7961         * gnus-art.el (gnus-face-properties-alist): Moved here from
7962         gnus-fun.
7963
7964         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
7965
7966 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7967
7968         * message.el (message-strip-forbidden-properties): Only display on
7969         self-insert-command.
7970
7971         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
7972         reindent.
7973         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
7974
7975 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
7976
7977         * smiley.el (smiley-style): Fix typo.
7978
7979 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7980
7981         * hashcash.el (hashcash-insert-payment-async-2): Use
7982         message-goto-eoh instead of doing it manually.
7983         (mail-add-payment): Use message-narrow-to-header instead of trying
7984         to do the same itself.
7985
7986         * message.el (message-hidden-headers): Add Face.
7987
7988         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
7989         reparenting code.
7990         (gnus-summary-reparent-children): Refactored out code.
7991         (gnus-summary-thread-map): New keystroke.
7992         (gnus-summary-reparent-children): Make into command.
7993
7994         * smiley.el (smiley-style): Default to `medium' if using a large
7995         font.
7996
7997         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
7998         does it itself.
7999
8000         * message.el (message-point-in-header-p): Simplify definition.
8001
8002 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8003
8004         * nnagent.el (nnagent-request-set-mark): Silence log file
8005         writing.
8006         (nnagent-request-set-mark): Use write-region instead of
8007         append-to-file.
8008
8009         * gnus-sum.el (gnus-read-header): Fudge article number if using a
8010         strange select method.
8011
8012         * ecomplete.el (ecomplete-display-matches): Get highlightling
8013         right.
8014         (ecomplete-display-matches): Use literals.
8015         (ecomplete-display-matches): Disable message logging.
8016
8017         * message.el (message-display-abbrev): Small optimization.
8018
8019         * ecomplete.el (ecomplete-display-matches): Allow automatic
8020         display.
8021
8022         * message.el (message-strip-forbidden-properties): Display
8023         abbrevs.
8024         (message-display-abbrev): Get automatic display right.
8025
8026         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8027         keystrokes.
8028
8029 2006-04-13  Romain Francoise  <romain@orebokech.com>
8030
8031         TODO: Backport to v5-10!
8032
8033         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8034         Moved here (and renamed) from gnus-registry.el.
8035
8036         * gnus-registry.el: Require gnus-util.
8037         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8038
8039 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8040
8041         * gnus-group.el (gnus-group-catchup-current): Change
8042         if-then-else-if-then-else into cond.
8043         (gnus-group-catchup): Indent.
8044         (group-name-at-point): New function.
8045         (gnus-fetch-group): Provide default from thing at point.
8046
8047 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8048
8049         * message.el (message-display-abbrev): Fix regexp.
8050
8051         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8052         choosing.
8053         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8054         dead variables.
8055
8056         * message.el (message-newline-and-indent): Remove debugging.
8057         (message-display-abbrev): Use new implementation.
8058
8059 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8060
8061         * gnus-art.el (gnus-article-mode): Set
8062         cursor-in-non-selected-windows to nil.
8063
8064         * smiley.el: Revert previous change.
8065         (smiley-data-directory): defvar it before using it in the
8066         defcustom of `smiley-style'.
8067
8068 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8069
8070         * message.el (message-newline-and-indent): New function.
8071
8072         * ecomplete.el: Implement more bits.
8073
8074         * message.el (message-put-addresses-in-ecomplete): Clean up the
8075         string.
8076
8077         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8078
8079         * gnus-sum.el (gnus-summary-save-parts): Bind
8080         gnus-summary-save-parts-counter and use it to make unique file
8081         names.
8082
8083         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8084
8085         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8086         parameter to say whether to actually parse the individual
8087         addresses.
8088
8089         * message.el (message-put-addresses-in-ecomplete): New function.
8090         (ecomplete): Require.
8091         (message-mail-alias-type): Add ecomplete as an option.
8092
8093 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8094
8095         * flow-fill.el (fill-flowed): Remove trailing space from blank
8096         quoted lines.
8097
8098 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8099
8100         * smiley.el (smiley-style): Move definition later to avoid a
8101         compilation warning.
8102
8103 2006-04-12  Kenichi Handa  <handa@m17n.org>
8104
8105         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8106         buffer and then decode the buffer text if necessary.
8107         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8108         first, and after mm-encode-body, change the buffer to unibyte.
8109         Use mm-disable-multibyte instead of set-buffer-multibyte.
8110
8111 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8112
8113         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8114         Content-Type header instead of Content-Disposition header.
8115         (gnus-mime-inline-part): Ditto.
8116         (gnus-mime-view-part-as-charset): Ignore charset that the part
8117         specifies.
8118
8119         * mm-decode.el (mm-display-part): Work with external parts and
8120         usual parts similarly.
8121
8122         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8123         instead of gnus-display-mime.
8124
8125         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8126         instead of with-temp-buffer.
8127
8128         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8129         tag to summarized topics part in order to encode non-ASCII text.
8130
8131 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8132
8133         * smiley.el (smiley-style): New variable.
8134         (smiley-directory): New function.
8135         (smiley-data-directory): Derive from `smiley-style' using
8136         `smiley-directory'.
8137         (smiley-regexp-alist): Add new entries.
8138
8139         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8140         (gnus-article-browse-delete-temp): Add :version.
8141
8142 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8143
8144         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8145         the sieve region.
8146
8147 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8148
8149         * gnus.el (gnus-version-number): Bump version.
8150
8151 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8152
8153         * gnus.el: No Gnus v0.4 is released.
8154
8155 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8156
8157         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8158         layout.
8159
8160         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8161         unknown charset.
8162
8163         * message.el (message-header-synonyms): Add Original-To to the
8164         default.
8165
8166         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8167         optional parameter.
8168
8169 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8170
8171         * gnus-fun.el (gnus): Require it for gnus-directory.
8172
8173 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8174
8175         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8176
8177 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8178
8179         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8180
8181 2006-04-05  Simon Josefsson  <jas@extundo.com>
8182
8183         * password.el (password-reset): New function.
8184
8185 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8186
8187         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8188         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8189
8190 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8191
8192         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8193         Some whitespace was matched into the url, which broke browsing hits
8194         > 100 when mm-url-use-external was nil.
8195
8196 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8197
8198         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8199         gnus-extra-headers for 'Newsgroups.
8200
8201         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8202         bound.
8203
8204 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8205
8206         * pgg-gpg.el: Clean up process buffers every time gpg processes
8207         complete.
8208
8209 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8210
8211         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8212         doc string.
8213
8214 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8215
8216         * pgg-gpg.el (pgg-gpg-process-filter)
8217         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8218
8219         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8220         lines, temporary fix.
8221
8222 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8223
8224         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8225
8226 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8227
8228         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8229         default-enable-multibyte-characters.  This reverts the change from
8230         revision 6.17 which is no longer necessary because the passphrase
8231         is sent separately now.  GnuPG messages are unreadable under
8232         multibyte locales with default-enable-multibyte-characters set to
8233         nil.
8234
8235 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8236
8237         * message.el (message-tool-bar-gnome): Move "spell".
8238
8239 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8240
8241         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8242         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8243         instead.
8244
8245 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8246
8247         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8248         newsgroups handling for NNTP overviews which don't include
8249         Newsgroups.
8250
8251 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8252
8253         * message.el (message-resend): Bind message-generate-hashcash to nil.
8254
8255 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8256
8257         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8258         when searching for already-paid recipients.
8259
8260 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8261
8262         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8263         passphrases when it is not needed.
8264         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8265         passphrase stuff from gpg, should only be necessary when you use
8266         gpg with a smartcard.
8267
8268 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8269
8270         * mml.el (mml-insert-mime): Ignore cached contents of
8271         message/external-body part.
8272
8273         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8274         (mm-insert-part): Ditto.
8275
8276 2006-03-23  Simon Josefsson  <jas@extundo.com>
8277
8278         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8279         Reiner.
8280         (pgg-gpg-use-agent-p): Use it again.
8281
8282 2006-03-23  Simon Josefsson  <jas@extundo.com>
8283
8284         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8285         older emacsen.
8286         (pgg-gpg-use-agent-p): Don't use it.
8287
8288 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8289
8290         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8291         if we can.
8292
8293 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8294
8295         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8296         (pgg-gpg-update-agent): New function.
8297         (pgg-gpg-use-agent-p): New function.
8298         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8299         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8300         (pgg-gpg-sign-region): Use it.
8301
8302 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8303
8304         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8305         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8306
8307 2006-03-21  Simon Josefsson  <jas@extundo.com>
8308
8309         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8310         <wilde@sha-bang.de>.
8311         (pgg-gpg-use-agent): New variable.
8312         (pgg-gpg-process-region): Use it.
8313         (pgg-gpg-encrypt-region): Likewise.
8314         (pgg-gpg-encrypt-symmetric-region): Likewise.
8315         (pgg-gpg-decrypt-region): Likewise.
8316         (pgg-gpg-sign-region): Likewise.
8317         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8318
8319 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8320
8321         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8322
8323         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8324         Add comment on version.
8325
8326 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8327
8328         * smiley.el: Add missing test smiley.
8329
8330 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8331
8332         * mm-decode.el (mm-with-part): New macro.
8333         (mm-get-part): Use it; work with message/external-body as well.
8334         (mm-save-part): Treat name and filename equally.
8335
8336         * mm-extern.el (mm-extern-cache-contents): New function.
8337         (mm-inline-external-body): Use it; force the part to be displayed;
8338         move undisplayer added to the cached handle to the parent.
8339
8340         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8341         (gnus-mime-view-part-as-type): Work with message/external-body.
8342
8343         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8344
8345 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8346
8347         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8348         images in image-load-path.  [Sync with image.el, revision 1.60, in
8349         Emacs.]
8350
8351 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8352
8353         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8354         path rather than symbol.  Always return list of directories.
8355         Guarantee that image directory comes first.  [Sync with image.el,
8356         revision 1.59, in Emacs.]
8357
8358         * message.el (message-make-tool-bar): Adjust to new API of
8359         `gmm-image-load-path-for-library'.
8360
8361         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8362
8363         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8364
8365 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8366
8367         * gnus-art.el (gnus-article-only-boring-p):
8368         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8369         intangible text.
8370         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8371
8372 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8373
8374         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8375         `defun' instead of `gmm-defun-compat'.
8376
8377 2006-03-14  Simon Josefsson  <jas@extundo.com>
8378
8379         * message.el (message-unique-id): Don't use message-number-base36
8380         if (user-uid) is a float.
8381         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8382
8383 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8384
8385         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8386
8387         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8388         empty line between a part and a message part.
8389
8390 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8391
8392         * smiley.el: Add more test smileys.
8393         (smiley-data-directory, smiley-regexp-alist)
8394         (gnus-smiley-file-types): Fix doc strings.
8395         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8396         adding new elements.
8397         (smiley-mouse-map): Unused code.  Make it a comment.
8398
8399 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8400
8401         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8402         scan latest NoCeM messages instead of old ones.
8403         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8404         delimiters that are recently used.
8405         (gnus-nocem-load-cache): Add autoload cookie.
8406
8407         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8408
8409         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8410         level which is larger than gnus-use-nocem is specified.
8411
8412         * gnus-group.el (gnus-group-get-new-news): Ditto.
8413
8414 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8415
8416         * gnus-util.el (gnus-tool-bar-update): New function.
8417
8418         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8419         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8420
8421         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8422
8423         * gnus-group.el (gnus-group-redraw-when-idle)
8424         (gnus-group-redraw-check): Remove.
8425         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8426
8427 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8428
8429         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8430         if optional last element is specified in splits (FIELD VALUE...).
8431
8432 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8433
8434         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8435         to gmm-image-load-path-for-library.  Call with no-error argument.
8436         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8437
8438         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8439
8440         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8441
8442         * gmm-utils.el (gmm-image-load-path): Remove alias.
8443
8444 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8445
8446         * gmm-utils.el (gmm-image-load-path): Add alias.
8447
8448         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8449         nnml-generate-nov-databases-1.
8450         (nnml-generate-nov-databases): Use it.
8451         (nnml-generate-nov-databases-directory): Document no-active
8452         argument.
8453
8454         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8455         directory if path is t.  Add no-error.
8456
8457         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8458         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8459
8460         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8461         resetting gnus-article-browse-html-temp-list.
8462
8463         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8464         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8465         Add example to docstring.  Rename local variables.  Move error
8466         checks to default case in cond and simplify.
8467
8468 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8469
8470         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8471         handle is multipart when calling it recursively.
8472         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8473
8474 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8475
8476         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8477         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8478
8479 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8480
8481         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8482         is loaded.
8483
8484         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8485         loaded.
8486
8487 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8488
8489         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8490         to "Emacs 23 (unicode)" in doc string.
8491
8492         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8493         "Emacs 23 (unicode)" in comment.
8494
8495 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8496
8497         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8498
8499         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8500         characters 160 through 255 in Emacs 23.
8501
8502 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8503
8504         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8505         gnus-article-browse-html-temp.
8506         (gnus-article-browse-delete-temp): Make it customizable.  Add
8507         `file'.  Adjust doc string.
8508         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8509         query for each file.  Adjust doc string.
8510         (gnus-article-browse-html-parts): Add
8511         `gnus-article-browse-delete-temp-files' to
8512         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8513
8514 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8515
8516         * gnus-art.el (gnus-article-browse-html-temp)
8517         (gnus-article-browse-delete-temp): New variables.
8518         (gnus-article-browse-delete-temp-files): New function.
8519         (gnus-article-browse-html-parts): Use it.
8520
8521 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8522
8523         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8524
8525         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8526         string.
8527
8528         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8529         gnus-summary-insert-new-articles when unplugged.  Remove
8530         gnus-summary-search-article-forward.
8531
8532         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8533         display-visual-class instead of display-color-cells.
8534
8535 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8536
8537         * dgnushack.el: Autoload customize-group for XEmacs.
8538
8539         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8540         message/* containing non-ASCII text properly.
8541
8542 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8543
8544         * message.el: Require gmm-utils, remove autoloads.
8545         (message-tool-bar): Set default based on
8546         gmm-tool-bar-style.
8547         (message-tool-bar-gnome): Add gmm-customize-mode.
8548
8549         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8550         gmm-tool-bar-style.
8551         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8552
8553         * gnus-group.el (gnus-group-tool-bar): Set default based on
8554         gmm-tool-bar-style.
8555         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8556
8557         * gmm-utils.el (gmm-image-directory): Rename variable from
8558         gmm-image-load-path.
8559         (gmm-image-load-path): Use gmm-image-directory.
8560         (gmm-customize-mode): New function.
8561         (gmm-tool-bar-style): New variable.
8562
8563         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8564         gnus-group-redraw-line-number.
8565         (gnus-group-redraw-check): Simplify.
8566         (gnus-group-tool-bar-update): Remove redraw check.
8567         (gnus-group-make-tool-bar): Add redraw check.
8568
8569 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8570
8571         * gnus-art.el (gnus-button): Add missing parentheses.
8572
8573 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8574
8575         * lpath.el: Fbind line-number-at-pos.
8576
8577 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8578
8579         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8580
8581 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8582
8583         * gnus-art.el (gnus-button): New face.
8584         (gnus-article-button-face): Use it.
8585
8586         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8587         gnus-summary-next-page.  Re-order.
8588
8589         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8590         next-node are now included.
8591         (gnus-group-redraw-line-number): New internal variable.
8592         (gnus-group-redraw-check): Helper function for updating the tool
8593         bar.
8594         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8595
8596         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8597
8598         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8599         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8600         Use it to match format of Spamassassin 3.0 and later.  Reported by
8601         IRIE Tetsuya <irie@t.email.ne.jp>.
8602         (spam-check-bogofilter)
8603         (spam-bogofilter-register-with-bogofilter): Fix args of
8604         `gnus-error' calls.
8605
8606 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8607
8608         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8609         unnecessary interaction when sending queued mails.  Reported by
8610         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8611
8612 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8613
8614         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8615         first or last are nil.
8616
8617 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8618
8619         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8620
8621 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8622
8623         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8624
8625 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8626
8627         * dns.el (query-dns): Protect more against buggy tcp output.
8628
8629 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8630
8631         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8632         nov.php.
8633
8634 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8635
8636         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8637         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8638         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8639         output on the server side.
8640         (nnweb-google-create-mapping): Update regexps and add some
8641         progress indication.
8642
8643 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8644
8645         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8646         gnus-agent-toggle-plugged.  Re-order icons.
8647         (gnus-group-tool-bar-gnome): Add
8648         gnus-group-{prev,next}-unread-group.
8649         (gnus-group-tool-bar-gnome): Re-order icons.
8650
8651         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8652         gnus-summary-insert-new-articles.
8653
8654         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8655         comments.
8656
8657         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8658         also available in Emacs 21.3.
8659
8660         * message.el (message-fix-before-sending): Change "Emacs 22" to
8661         "Emacs 23 (unicode)" in comment.
8662
8663         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8664         "Emacs 23 (unicode)" in comment.
8665
8666         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8667         comment.
8668         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8669
8670         * mm-view.el (mm-fill-flowed): Add :version.
8671
8672 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8673
8674         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8675         and load-path.
8676
8677 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8678
8679         * message.el: Autoload gmm-image-load-path.
8680         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8681         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8682         consitency.
8683
8684         * gmm-utils.el (gmm-image-load-path): Also search in
8685         "../etc/images".  Don't set gmm-image-load-path if we don't find
8686         the image.
8687
8688 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8689
8690         * gmm-utils.el (gmm-image-load-path): Don't make
8691         `gmm-image-load-path' include subdirectories which the second arg
8692         `image' might specify.
8693
8694         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8695         subdirectory to icon file names.
8696
8697         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8698
8699 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8700
8701         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8702         gmm-image-load-path calls.
8703
8704         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8705
8706         * message.el (message-make-tool-bar): Ditto.
8707
8708         * mml.el (mml-preview): Added comment concerning tool bar icons.
8709
8710         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8711         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8712
8713         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8714         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8715
8716         * message.el (message-tool-bar-gnome): Use new icon names.
8717         (message-make-tool-bar): Use `gmm-image-load-path'.
8718
8719         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8720         functions from MH-E.
8721         (gmm-image-load-path): New variable from MH-E.
8722         (gmm-image-load-path): New function from MH-E.  Added arguments
8723         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8724         *-image-load-path-called-flag.
8725
8726 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8727
8728         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8729
8730 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8731
8732         * nnimap.el (nnimap-request-move-article): Change folder back to
8733         source group before deleting.
8734
8735 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8736
8737         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8738
8739         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8740         mm-url.
8741
8742         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8743
8744 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8745
8746         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8747         coding system which mm-charset-to-coding-system returns for a
8748         given charset is valid.
8749
8750 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8751
8752         * html2text.el (html2text-remove-tag-list):
8753         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8754
8755 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8756
8757         * gnus-cus.el: Revert 2005-10-17 change.
8758
8759 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8760
8761         * gnus-art.el (article-strip-banner): Call
8762         article-really-strip-banner only when the regexp match is made.
8763
8764 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8765
8766         * gnus-art.el (article-strip-banner): Use
8767         gnus-extract-address-components instead of
8768         mail-header-parse-addresses to make it work with non-ASCII text;
8769         remove mail-encode-encoded-word-string.
8770
8771         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8772         values which are surrounded with \"...\"; make it never cause a
8773         Lisp error; give up parsing of parameters if it failed in
8774         extracting type.
8775
8776 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8777
8778         * smime.el (smime-cert-by-ldap-1): Fix bug where
8779         `smime-ldap-search' returns results without userCertificates.
8780
8781 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8782
8783         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8784
8785 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8786
8787         * spam.el (spam-check-spamassassin-headers): Adapt format for
8788         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8789         <ari@mbf.ocn.ne.jp>.
8790         (spam-list-of-processors): Add spam-use-gmane.
8791
8792 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8793
8794         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8795         make-temp-file; make it work with XEmacs as well.
8796
8797         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8798         mm-make-temp-file.
8799
8800         * mm-decode.el (mm-display-external): Use the 3rd arg of
8801         mm-make-temp-file.
8802         (mm-create-image-xemacs): Ditto.
8803
8804 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8805
8806         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8807         with message-narrow-to-headers.
8808         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8809         (gnus-draft-check-draft-articles): New function.
8810         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8811
8812 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8813
8814         * gnus-art.el (gnus-article-browse-html-parts):
8815         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8816         Don't use suffix argument for mm-make-temp-file for Emacs 21
8817         compatibility.  Remove useless `format'.
8818
8819 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8820
8821         * nnweb.el (nnweb-google-wash-article): Update regexps.
8822         (nnweb-group-alist): Use defvoo instead of defvar.
8823
8824 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8825
8826         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8827         re-loading nn* modules.
8828
8829 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8830
8831         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8832         for `tool-bar-mode' and don't check it's default-value.
8833
8834         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8835
8836         * message.el (message-make-tool-bar): Ditto.
8837
8838         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8839         `substring'.  Shorten tmp-file name.
8840
8841         * gnus.el: Remove bogus comment.
8842
8843 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8844
8845         * gnus-art.el (gnus-article-browse-html-parts): New function.
8846         (gnus-article-browse-html-article): New function for viewing html
8847         articles with a browser.
8848
8849 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8850
8851         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8852         in elisp.
8853         (pgg-gpg-encrypt-symmetric-region): Ditto.
8854         (pgg-gpg-sign-region): Ditto.
8855
8856         * pgg-def.el (pgg-text-mode): New variable.
8857
8858         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8859         (mml2015-pgg-encrypt): Ditto.
8860
8861         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8862         (mml1991-pgg-encrypt): Ditto.
8863
8864 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8865
8866         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8867         message-make-date instead of current-time-string.
8868
8869         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8870         to gnus-decoded which mm-uu might set.
8871
8872 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8873
8874         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8875         don't decode quoted parameters; remove misimported Emacs code.
8876         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8877         (rfc2231-decode-encoded-string): Don't use split-string which
8878         behaves differently according to Emacs version; use
8879         mm-decode-coding-region to convert charset to coding-system.
8880         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8881         (rfc2231-encode-string): Remove misimported Emacs code.
8882
8883 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8884
8885         * gnus-art.el (article-decode-charset): Don't use ignore-errors
8886         when calling mail-header-parse-content-type.
8887         (article-de-quoted-unreadable): Ditto.
8888         (article-de-base64-unreadable): Ditto.
8889         (article-wash-html): Ditto.
8890
8891         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
8892         calling mail-header-parse-content-type and
8893         mail-header-parse-content-disposition.
8894         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
8895         mail-header-parse-content-type.
8896
8897         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
8898         insert charset and format parameters; encode description after
8899         inserting it to buffer.
8900         (mml-insert-parameter): Fold lines properly even if a parameter is
8901         segmented into two or more lines; change the max column to 76.
8902
8903         * rfc1843.el (rfc1843-decode-article-body): Don't use
8904         ignore-errors when calling mail-header-parse-content-type.
8905
8906         * rfc2231.el (rfc2231-parse-string): Return at least type if
8907         possible; don't cause an error even if it fails in parsing of
8908         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8909         (rfc2231-encode-string): Don't break lines at the beginning, leave
8910         it to mml-insert-parameter.
8911
8912         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
8913         calling mail-header-parse-content-type.
8914
8915 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
8916
8917         * spam-report.el (spam-report-gmane-use-article-number):
8918         Improve doc string.
8919         (spam-report-gmane-internal): Check if a suitable header was found
8920         in the article.
8921
8922 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8923
8924         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
8925         (rfc2231-encode-string): Make param*=value always begin with LWSP.
8926
8927 2006-02-05  Romain Francoise  <romain@orebokech.com>
8928
8929         Update copyright notices of all files in the gnus directory.
8930
8931 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8932
8933         * nnweb.el (nnweb-request-group): Avoid growing overview files.
8934
8935 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8936
8937         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
8938         segmented lines of parameter value to cope with Thunderbird 1.5
8939         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
8940         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8941         (rfc2231-encode-string): Don't make lines exceeding 76 column.
8942
8943 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
8944
8945         * mml.el (mml-generate-mime-1): Correct the order of inline signed
8946         parts.
8947
8948 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8949
8950         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
8951         there's only one active file for all servers.
8952         (nnweb-request-scan): Make sure nnweb-articles is initialized on
8953         solid groups.  Gnus might have used a FAST request to select the group.
8954         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
8955         and nnweb-search redundantly in the active file.
8956         (nnweb-request-list): Don't list bogus groups.  There can only be one.
8957         (nnweb-request-create-group): Don't use ARGS.
8958         (nnweb-possibly-change-server, nnweb-request-group): Remove some
8959         initialisations.  Let nnoo do the work.
8960
8961 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8962
8963         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
8964         Say the part has been decoded.
8965
8966         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
8967
8968 2006-01-31  Kevin Ryde  <user42@zip.com.au>
8969
8970         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
8971         mailcap-viewer-test-cache when there's no 'test clause, since that
8972         will invert the meaning of a "nil" test previously determined by
8973         mailcap-mailcap-entry-passes-test.
8974
8975 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8976
8977         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
8978         compiling.
8979
8980         * gnus-sum.el: Ditto.
8981
8982         * message.el: Don't bind tool-bar-map when compiling.
8983
8984 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
8985
8986         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
8987
8988 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8989
8990         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
8991         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
8992         current Google Groups.
8993
8994 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
8995
8996         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
8997         and tool-bar-mode.
8998
8999         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
9000         and tool-bar-mode.
9001
9002         * message.el (message-tool-bar-update): Simplify.
9003         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
9004
9005         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
9006         gnus-summary-buffer.
9007         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
9008         gnus-summary-reply.
9009
9010         * gmm-utils.el (gmm): Add :version.
9011
9012 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9013
9014         * Makefile.in (clean): New rule.
9015         (distclean): Use it.
9016
9017 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9018
9019         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9020         autoload.
9021
9022 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9023
9024         * gmm-utils.el (gmm-verbose): Add :group.
9025
9026 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9027
9028         * message.el: Change some comments WRT tool-bars.
9029
9030         * gnus-sum.el (gnus-summary-tool-bar)
9031         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9032         (gnus-summary-tool-bar-zap-list): New variables.
9033         (gnus-summary-make-tool-bar): Complete rewrite using
9034         `gmm-tool-bar-from-list'.
9035
9036         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9037         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9038         variables.
9039         (gnus-group-make-tool-bar): Complete rewrite using
9040         `gmm-tool-bar-from-list'.
9041         (gnus-group-tool-bar-update): New function.
9042
9043         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9044
9045 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9046
9047         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9048         is dissected into a single part of which the type is the same as
9049         the given one; decode charset.
9050
9051 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9052
9053         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9054         into alists as symbol not string, since that's what
9055         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9056         look for.
9057
9058 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9059
9060         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9061         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9062
9063         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9064
9065 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9066
9067         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9068         (gnus-xmas-mime-security-button-menu): New function.
9069
9070         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9071         (gnus-mime-security-button-menu): New definition.
9072         (gnus-mime-security-button-map): Use them.
9073         (gnus-mime-security-button-menu): New function.
9074         (gnus-insert-mime-security-button): Addition to help echo.
9075         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9076         (gnus-mime-security-pipe-part): New functions.
9077
9078         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9079         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9080
9081         * mm-decode.el (mm-handle-set-disposition): Remove.
9082         (mm-handle-set-description): Remove.
9083
9084 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9085
9086         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9087         (mm-w3m-standalone-supports-m17n-p): New function.
9088         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9089         w3m usage.
9090
9091         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9092         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9093
9094 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9095
9096         * message.el (message-tool-bar-zap-list): Use
9097         gmm-tool-bar-zap-list as custom type.
9098         (message-tool-bar-update): New function.
9099         (message-tool-bar, message-tool-bar-gnome)
9100         (message-tool-bar-retro): Add message-tool-bar-update.
9101         (message-tool-bar-gnome): Add flyspell-buffer.
9102
9103         * gnus-util.el (gnus-error): Describe `args'.
9104
9105         * gmm-utils.el (gmm-error): Describe `args'.
9106         (gmm-tool-bar-zap-list): New widget.
9107         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9108
9109 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9110
9111         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9112         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9113         the number of recursive calls.
9114
9115         * mm-decode.el (mm-handle-set-disposition): New macro.
9116         (mm-handle-set-description): New macro.
9117
9118 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9119
9120         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9121         encoding.
9122
9123 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9124
9125         * message.el (message-tool-bar-zap-list, message-tool-bar)
9126         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9127         (message-tool-bar-local-item-from-menu): Remove.
9128         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9129         (message-make-tool-bar): New function.
9130         (message-mode): Use `message-make-tool-bar'.
9131
9132         * gmm-utils.el: New file.
9133         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9134         (gmm-lazy): New widget copied from `nnmail.el'.
9135         (gmm-tool-bar-from-list): New function for creating customizable
9136         tool bars.
9137         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9138         output.
9139         (gmm): Add :prefix to defgroup.
9140
9141 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9142
9143         * gmm-utils.el (gmm-widget-p): New function.
9144
9145 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9146
9147         * mml.el (mml-attach-file): Describe `description' in doc string.
9148         (mml-menu): Add Emacs MIME manual and PGG manual.
9149
9150 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9151
9152         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9153
9154 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9155
9156         * nntp.el (nntp-end-of-line): Doc fix.
9157
9158 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9159
9160         * imap.el (imap-open): Handle case where buffer is a buffer
9161         object.
9162
9163 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9164
9165         * gnus-delay.el (gnus-delay): Don't autoload.
9166         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9167         to be re-loaded when customizing the `gnus-delay' group.
9168
9169 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9170
9171         * message.el (message-insert-citation-line): Use newlines.
9172
9173 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9174
9175         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9176         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9177         these routines, so the passphrase can be managed externally and
9178         passed in to the system.
9179         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9180         pgg-add-passphrase-to-cache function.
9181
9182         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9183         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9184         these routines, so the passphrase can be managed externally and
9185         passed in to the system.
9186         (pgg-pgp5-sign-region): Use new name of
9187         pgg-add-passphrase-to-cache function.
9188
9189 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9190
9191         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9192         part of the decoded armor to find the key-identifier.
9193         (pgg-gpg-lookup-key-owner): New function to return the
9194         human-readable identifier of a key owner.
9195         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9196         itself.
9197         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9198         the key value) if we have a key and can match it against a secret
9199         key.  Also, added a note pointing out fact that the prompt only
9200         indicates the first matching key.
9201
9202         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9203         pgg-decrypt-region.
9204         (pgg-add-passphrase-to-cache): Rename from
9205         `pgg-add-passphrase-cache' to reduce confusion (all callers
9206         changed).
9207         (pgg-remove-passphrase-from-cache): Rename from
9208         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9209         changed).
9210         (pgg-read-passphrase, pgg-add-passphrase-cache)
9211         (pgg-remove-passphrase-cache): Add informative docstrings.
9212         (pgg-decrypt): Convey provided passphrase in subordinate call to
9213         pgg-decrypt-region.
9214
9215 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9216
9217         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9218         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9219         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9220         'passphrase' argument, so the passphrase can be managed externally
9221         and then passed in to the system.
9222
9223         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9224         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9225         so the passphrase cache can be used reliably with identifiers
9226         besides a pgp packet's key id.
9227
9228         * pgg-gpg.el (pgg-gpg-encrypt-region)
9229         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9230         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9231         these routines, so the passphrase can be managed externally and
9232         passed in to the system.
9233
9234         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9235         'notruncate' argument, so the passphrase cache can be used
9236         reliably with identifiers besides a pgp packet's key id.
9237
9238 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9239
9240         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9241         symmetric encryption.
9242         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9243         encrypted session key.
9244         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9245         message ask for the passphrase in a proper way.
9246
9247         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9248         New user commands for symmetric encryption.
9249
9250 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9251
9252         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9253
9254         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9255
9256 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9257
9258         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9259
9260 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9261
9262         * mm-decode.el (mm-inlined-types): Add application/pgp.
9263         (mm-automatic-display): Ditto.
9264
9265         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9266         part as text.
9267
9268 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9269
9270         * nnrss.el: Update copyright.
9271         (nnrss-opml-import): Query whether to subscribe to each entry.
9272
9273         * gnus-art.el:
9274         * gnus-sum.el:
9275         * gnus-xmas.el:
9276         * messagexmas.el:
9277         * mm-uu.el:
9278         * mm-view.el: Update copyright.
9279
9280 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9281
9282         * message.el (message-info): New function.
9283         (message-mode-menu): Add it.
9284         Update copyright.
9285
9286         * ChangeLog: Fix and update copyright.
9287
9288 2006-01-13  Romain Francoise  <romain@orebokech.com>
9289
9290         * message.el (message-forward-subject-name-subject): Prefer the
9291         address to 'nowhere' if the sender has no name.
9292         Fix typo.  Update copyright year.
9293
9294 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9295
9296         * gnus-art.el (article-wash-html): Use
9297         gnus-summary-show-article-charset-alist if a numeric arg is given.
9298         (gnus-article-wash-html-with-w3m-standalone): New function.
9299
9300         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9301         mm-inline-text-html-render-with-w3m-standalone.
9302         (mm-text-html-washer-alist): Map w3m-standalone to
9303         gnus-article-wash-html-with-w3m-standalone.
9304         (mm-inline-text-html-render-with-w3m-standalone): New function.
9305
9306 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9307
9308         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9309         Improve LaTeX.
9310
9311 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9312
9313         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9314         (nnrss-request-article): Render text/plain parts as HTML.
9315
9316         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9317         the buffer.
9318
9319 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9320
9321         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9322         custom definition of `gnus-posting-styles'.
9323
9324         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9325         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9326
9327 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9328
9329         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9330         Use nntp for bug archive.
9331
9332 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9333
9334         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9335         parts.
9336         (nnrss-normalize-date): New function converts ISO 8601 date into
9337         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9338         (nnrss-check-group): Use it.
9339
9340 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9341
9342         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9343
9344         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9345         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9346         (nnrss-insert-w3): Ditto.
9347
9348 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9349
9350         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9351         the articles to be forwarded including the case where neither a
9352         number of articles nor a region is specified.
9353
9354 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9355
9356         * nnrss.el (nnrss-request-article): Fix last change; fill
9357         text/plain parts.
9358
9359 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9360
9361         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9362         in text/plain part.
9363         (nnrss-check-group): Don't add excessive newline to dc:subject.
9364
9365 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9366
9367         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9368         article.
9369
9370 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9371
9372         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9373         (nnml-use-compressed-files, nnml-save-mail): Support other
9374         comression programs such as bzip2.
9375
9376 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9377
9378         * dns.el (query-dns): Make sure we check the buffer size before
9379         removing tcp headers.
9380
9381 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9382
9383         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9384         remove MIME buttons associated with multipart/alternative parts.
9385         (gnus-mime-display-alternative): Tag buttons using `article-type'
9386         text property.
9387
9388         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9389         associated with multipart/alternative parts.
9390
9391         * gnus-art.el (gnus-signature-separator): Fix custom type.
9392
9393         * mm-decode.el (mm-inlined-types): Fix custom type.
9394         (mm-keep-viewer-alive-types): Ditto.
9395         (mm-automatic-display): Ditto.
9396         (mm-attachment-override-types): Ditto.
9397         (mm-inline-override-types): Ditto.
9398         (mm-automatic-external-display): Ditto.
9399
9400 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9401
9402         * spam-report.el (spam-report-user-mail-address)
9403         (spam-report-user-agent): New variables.
9404         (spam-report-url-ping-plain): Use spam-report-user-agent.
9405
9406 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9407
9408         * gnus-art.el (gnus-button-handle-custom): Do not just use
9409         `customize-apropos' for any "M-x customize-*" button but the
9410         function called for.  Accept both the function name and its
9411         argument in order to achieve this.
9412         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9413         function name to `gnus-button-handle-custom' in case of "M-x
9414         customize-*" buttons.
9415
9416 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9417
9418         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9419         multipart/alternative and add xref to mm-discouraged-alternatives
9420         in doc string.
9421
9422         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9423         gnus-buttonized-mime-types in doc string.
9424
9425 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9426
9427         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9428         Suggest image/.* in the doc string.
9429
9430 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9431
9432         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9433         message-marks (Debian bug #342521).
9434
9435 2005-12-12  Simon Josefsson  <jas@extundo.com>
9436
9437         * password.el (password-read-from-cache): Add.
9438         (password-read): Use it.
9439
9440 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9441
9442         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9443         us-ascii as a MIME charset.
9444
9445         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9446         against the case where the 2nd arg TYPE is nil.
9447
9448 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9449
9450         * pop3.el (pop3-stream-type): Fix custom version.
9451
9452         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9453
9454 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9455
9456         * mm-decode.el (mm-display-external): Add missing cdr.
9457
9458 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9459
9460         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9461         RFC1524) if it is in mailcap or add a suffix according to
9462         mailcap-mime-extensions when generating a temp filename; postpone
9463         deleting a temp file for 2 seconds for some wrappers, shell
9464         scripts, and so on, which might exit right after having started a
9465         viewer command as a background job.
9466
9467 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9468
9469         * nntp.el (nntp-marks-directory): Fix custom group.
9470
9471         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9472         steps when < 10.
9473
9474         * gnus-start.el (gnus-no-server-1): Mention
9475         `gnus-level-default-subscribed' in doc string.
9476
9477 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9478
9479         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9480         parens.
9481
9482 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9483
9484         * gnus-xmas.el (gnus-use-toolbar): Revert.
9485         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9486         gnus-use-toolbar is default.
9487
9488         * messagexmas.el (message-use-toolbar): Revert.
9489         (message-setup-toolbar): Use global default-toolbar if
9490         message-use-toolbar is default.
9491
9492 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9493
9494         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9495         according to default-toolbar-visible-p.
9496
9497         * messagexmas.el (message-use-toolbar): Ditto.
9498
9499 2005-11-26  Dave Love  <fx@gnu.org>
9500
9501         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9502         (tls-program, tls-success): Provide openssl alternative.
9503
9504         * starttls.el: Doc fixes.
9505         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9506         SERVICE to PORT.
9507
9508         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9509         port null or service name.
9510         (starttls-negotiate): Autoload.
9511
9512 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9513
9514         * message.el (message-kill-to-signature): Fix interactive spec.
9515
9516 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9517
9518         * pop3.el (pop3-open-server): Recognize a string as a service name.
9519
9520 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9521
9522         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9523
9524 2005-11-23  Dave Love  <fx@gnu.org>
9525
9526         Add pop3s, pop3/starttls.
9527
9528         * pop3.el (pop3-authentication-scheme): Clarify doc.
9529         (open-tls-stream, starttls-open-stream): Autoload.
9530         (pop3-stream-type): New.
9531         (pop3-open-server): Use it.
9532
9533         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9534         for POP.
9535         (mail-source-keyword-map): Add :stream for POP.
9536         (mail-source-fetch-pop): Use pop3-stream-type.
9537
9538 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9539
9540         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9541         of current-time-string.
9542
9543 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9544
9545         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9546         date header.
9547
9548 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9549
9550         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9551         it can seriously impact performance as it bypasses the agent's
9552         local caches.
9553
9554 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9555
9556         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9557         must be explicitly online rather than "not explicitly offline" for
9558         its flags to be synchronized.
9559
9560         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9561         that gnus-uu-unmark-thread will function correctly.
9562
9563         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9564         1024K is instead displayed as 1M.
9565
9566 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9567
9568         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9569
9570 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9571
9572         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9573
9574 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9575
9576         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9577         error message to display actual error condition.
9578         (gnus-agent-save-local): Avoid saving symbols that are bound to
9579         nil as they simply result in a warning message in
9580         gnus-agent-read-local.
9581
9582 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9583
9584         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9585         rather than make-variable-buffer-local for file-precious-flag.
9586
9587 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9588
9589         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9590         for duplicates which are removed.  The invalid sort check then
9591         triggers a rescan after the sort as sorting may have moved
9592         duplicate entries such that they can be cheaply detected.
9593
9594 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9595
9596         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9597
9598 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9599
9600         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9601         internal variable to a custom variable.  Changed default value
9602         from compressed(2) to uncompressed(1).
9603         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9604         support for uncompressed agentview files.  Taken together, reading
9605         the agentview file should now be 6-7 times faster.
9606
9607 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9608
9609         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9610         as a buffer-local variable.  This avoids creating truncated
9611         dribble files as a result of a hang up, eg.
9612
9613 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9614
9615         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9616         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9617         XEmacs.
9618
9619 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9620
9621         * gnus-start.el (gnus-start-draft-setup): Enforce
9622         `gnus-draft-mode' for nndraft:drafts at startup.
9623
9624         * gnus.el (gnus-splash): Change custom group.
9625         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9626         allow-list argument.
9627
9628         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9629         string.
9630
9631 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9632
9633         * gnus-art.el (gnus-default-article-saver): Add user-defined
9634         `function' to custom type.
9635
9636 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9637
9638         * imap.el (imap-open): Handle case where buffer is a buffer
9639         object.
9640
9641 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9642
9643         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9644         long lines.
9645         (gnus-cache-delete-group): Wrap doc strings.
9646
9647         * gnus-agent.el (gnus-agent-rename-group)
9648         (gnus-agent-delete-group): Wrap doc strings.
9649
9650 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9651
9652         * messagexmas.el (message-use-toolbar): Change the valid values
9653         into default, top, bottom, left, and right.
9654         (message-toolbar-thickness): New variable.
9655         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9656         well.
9657         (message-setup-toolbar): Make it work.
9658
9659         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9660         (gnus-use-toolbar): Change the valid values into default, top,
9661         bottom, left, and right.
9662         (gnus-toolbar-thickness): New variable.
9663         (gnus-xmas-setup-toolbar): New function.
9664         (gnus-xmas-setup-group-toolbar): Use it.
9665         (gnus-xmas-setup-summary-toolbar): Use it.
9666
9667 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9668
9669         * gnus-start.el (gnus-1): Add "native" to
9670         gnus-predefined-server-alist.
9671
9672         * gnus.el (gnus-method-to-server): Don't add "native" to the
9673         lists here, because that leads to problems when
9674         gnus-select-method is bound.
9675
9676 2005-11-09  Simon Josefsson  <jas@extundo.com>
9677
9678         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9679         use (not sort-by-date) instead.
9680
9681 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9682
9683         * gnus-delay.el (gnus-delay-group): Don't autoload.
9684         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9685         to be re-loaded when customizing the `gnus-delay' group.
9686
9687 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9688
9689         * message.el: Revert last changes.
9690         (message-insert-citation-line): Use newlines.
9691
9692 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9693
9694         * message.el (message-courtesy-message)
9695         (message-mark-insert-begin, message-mark-insert-end)
9696         (message-elide-ellipsis, message-cancel-message)
9697         (message-add-header, message-change-subject)
9698         (message-cross-post-followup-to-header)
9699         (message-cross-post-insert-note, message-reduce-to-to-cc)
9700         (message-widen-reply, message-delete-not-region)
9701         (message-kill-to-signature, message-insert-signature)
9702         (message-insert-importance-high, message-insert-importance-low)
9703         (message-insert-or-toggle-importance)
9704         (message-insert-disposition-notification-to)
9705         (message-indent-citation, message-yank-original)
9706         (message-cite-original-without-signature, message-cite-original)
9707         (message-insert-citation-line, message-position-on-field)
9708         (message-fix-before-sending, message-send-mail-partially)
9709         (message-send-mail, message-send-mail-with-sendmail)
9710         (message-send-mail-with-qmail, message-send-news)
9711         (message-check-news-header-syntax, message-generate-headers)
9712         (message-insert-courtesy-copy, message-fill-address)
9713         (message-fill-header, message-shorten-references)
9714         (message-setup-1, message-cancel-news)
9715         (message-forward-make-body-plain, message-forward-make-body-mime)
9716         (message-forward-make-body-mml, message-encode-message-body)
9717         (message-forward-make-body-digest-plain)
9718         (message-forward-make-body-digest-mime)
9719         (message-use-alternative-email-as-from): Insert `hard-newline'
9720         instead of ordinary newlines.
9721
9722 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9723
9724         * message.el (message-generate-headers): Downcase the argument
9725         given to message-check-element.
9726
9727 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9728
9729         * nntp.el (nntp-authinfo-rejected): New error condition.
9730         (nntp-wait-for): Use new error condition to signal authentication
9731         error.
9732         (nntp-retrieve-data): Rethrow new error condition to break out of
9733         recursive call to nntp-send-authinfo.
9734
9735 2005-11-08  Romain Francoise  <romain@orebokech.com>
9736
9737         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9738         (gnus-summary-exit-map): Bind to `Z p'.
9739         (gnus-summary-make-menu-bar): Add menu item.
9740
9741 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9742
9743         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9744         (gnus-treat-*): Add `first' in all doc strings.
9745
9746         * gnus-group.el (gnus-group-compact-group): Fix typo.
9747
9748 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9749
9750         * gnus.el (gnus-parameters-case-fold-search): New variable.
9751         (gnus-parameters-get-parameter): Use it.
9752
9753         * gnus-score.el (gnus-home-score-file): Doc fix.
9754
9755 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9756
9757         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9758
9759 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9760
9761         * mm-util.el (mm-special-display-p): New function.
9762
9763         * mml.el (mml-preview): Use it; doc fix.
9764
9765 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9766
9767         * imap.el (imap-open): Handle case where buffer is a buffer object.
9768
9769 2005-10-29  Romain Francoise  <romain@orebokech.com>
9770
9771         * message.el (message-fix-before-sending): Fix comment.
9772
9773 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9774
9775         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9776
9777 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9778
9779         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9780         Used in gnus-score.el.
9781
9782 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9783
9784         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9785
9786 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9787
9788         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9789         whitespace removed in revision 7.8.  Use concatenated string to
9790         protect trailing whitespace.
9791
9792 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9793
9794         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9795         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9796         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9797         Courier IMAP ("some version from 2004").  Mostly based on similar
9798         code in the same function.
9799
9800 2005-10-26  Didier Verna  <didier@xemacs.org>
9801
9802         * gnus-group.el (gnus-group-compact-group): Invalidate original
9803         article buffer.
9804         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9805         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9806         NOV database and in article itself.
9807         Invalidate article backlog.
9808
9809 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9810
9811         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9812
9813 2005-10-26  Simon Josefsson  <jas@extundo.com>
9814
9815         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9816         part of 2004-07-25 change.
9817
9818 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9819
9820         * message.el (message-display-completion-list): New function.
9821         (message-expand-group): Use it; make sure the Completions buffer
9822         is modifiable.
9823 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9824
9825         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9826         user-mail-name is an empty string.
9827
9828 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9829
9830         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9831         depending on gnus-score-decay-constant.
9832
9833         * encrypt.el (encrypt-insert-file-contents)
9834         (encrypt-write-file-contents): Don't use `gnus-message'.
9835
9836         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9837         arguments.
9838         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9839         arguments to mm-uu-verbatim-marks-extract.
9840         (mm-uu-hide-markers): New variable.
9841         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9842
9843         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9844         (gnus-convert-image-to-face-command): Use "convert" by default to
9845         allow other input image formats.
9846         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9847         accordingly.
9848
9849 2005-10-23  Simon Josefsson  <jas@extundo.com>
9850
9851         * imap.el (imap-gssapi-program): Align command line parameters
9852         with latest GNU SASL.
9853         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9854
9855 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9856
9857         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9858         HTML.
9859         (nnslashdot-request-article): Ditto.
9860
9861         * lpath.el (featurep): Add nobreak-char-display.
9862
9863 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9864
9865         * mail-source.el (mail-source-fetch-pop): Require pop3.
9866         (mail-source-check-pop): Ditto.
9867
9868 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9869
9870         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9871         errors.
9872
9873 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9874
9875         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9876         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9877
9878         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9879
9880         * mm-bodies.el (mm-decode-string): Call
9881         `mm-charset-to-coding-system' with allow-override argument.
9882
9883 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9884
9885         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
9886         (rfc2047-charset-to-coding-system): New function.
9887         (rfc2047-decode-encoded-words): New function.
9888         (rfc2047-decode-region): Use them.
9889         (rfc2047-decode-cte): Remove.
9890         (rfc2047-parse-and-decode): Remove.
9891         (rfc2047-decode): Remove.
9892
9893 2005-10-15  Kenichi Handa  <handa@m17n.org>
9894
9895         * rfc2047.el (rfc2047-decode-cte): New function.
9896         (rfc2047-decode-region): Change the way to decode successive
9897         encoded-words: decode B- or Q-encoding in each encoded-word,
9898         concatenate them, and decode it as charset.
9899
9900 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9901
9902         * lpath.el: Fbind codepage-setup for XEmacs.
9903
9904 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
9905
9906         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
9907         widget-move-and-invoke.
9908         (gnus-custom-mode): Use gnus-custom-map.
9909
9910 2005-10-15  Bill Wohler  <wohler@newt.com>
9911
9912         * message.el (message-tool-bar-map): Renamed image file from
9913         mail_send to mail/send.
9914
9915 2005-10-16  Masatake YAMATO  <jet@gyve.org>
9916
9917         * message.el (message-expand-group): Pass the common
9918         prefix substring of completion to `display-completion-list'.
9919
9920 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
9921
9922         * mml-sec.el (mml-secure-method): New internal variable.
9923         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
9924         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
9925         functions using mml-secure-method.
9926
9927         * mml.el (mml-mode-map): Add key bindings for those functions.
9928         (mml-menu): Simplify security menu entries.  Suggested by Jesper
9929         Harder <harder@myrealbox.com>.
9930         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
9931         end of message if point is the headers of the message.
9932
9933         * message.el (message-in-body-p): New function.
9934
9935         * assistant.el: Autoload gnus-util and netrc.
9936
9937         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
9938         Use `mm-charset-override-alist' only when decoding.
9939
9940         * mm-bodies.el (mm-decode-body): Call
9941         `mm-charset-to-coding-system' with allow-override argument.
9942
9943         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
9944         `filename' from Content-Disposition if Content-Type doesn't
9945         provide `name'.
9946         (gnus-mime-view-part-as-type): Set default instead of
9947         initial-input.
9948
9949 2005-10-09  Daniel Brockman  <daniel@brockman.se>
9950
9951         * format-spec.el (format-spec): Propagate text properties of % spec.
9952
9953 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
9954
9955         * gnus-art.el (gnus-treat-predicate): Add `first'.
9956
9957 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
9958
9959         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
9960         (mm-charset-override-alist): New variable.
9961         (mm-charset-to-coding-system): Use it.
9962         (mm-codepage-setup): New helper function.
9963         (mm-charset-eval-alist): New variable.
9964         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
9965         about unknown charsets.
9966
9967         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
9968
9969 2005-10-04  David Hansen  <david.hansen@gmx.net>
9970
9971         * nnrss.el (nnrss-request-article): Add support for the comments tag.
9972         (nnrss-check-group): Ditto.
9973
9974 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9975
9976         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
9977         Rename x-gnus-verbatim to x-verbatim.
9978         (mm-uu-type-alist): Fix regexp for verbatim-marks.
9979
9980         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
9981         x-verbatim.
9982
9983         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
9984
9985         * gnus-util.el (gnus-remove-duplicates): Remove.
9986
9987         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
9988         instead of gnus-remove-duplicates.
9989
9990         * message.el (message-remove-duplicates): Remove.
9991         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
9992         message-remove-duplicates.
9993
9994         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
9995         available, else use implementation from `delete-dups'.
9996
9997         * message.el (message-insert-expires): New function.
9998         (message-mode-map): Add key binding.
9999         (message-mode-field-menu): Add menu entry.
10000         (message-mode): Document it.
10001         (message-make-expires-date): Use `message-make-date'.
10002
10003 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
10004
10005         * message.el (message-make-expires-date): New function.
10006
10007 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10008
10009         * Makefile.in (list-installed-shadows): New entry.
10010         (install): Use it.
10011         (remove-installed-shadows): New entry.
10012
10013         * dgnushack.el (dgnushack-default-load-path): New variable.
10014         (dgnushack-find-lisp-shadows): New function.
10015         (dgnushack-remove-lisp-shadows): New function.
10016
10017 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10018
10019         * Makefile.in (install-el-elc): New entry.
10020         (install): Use it so that .el files are necessarily installed.
10021
10022 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10023
10024         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10025
10026 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10027
10028         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10029         function rather than the diff-mode.el package.
10030         (mm-display-external): Use with-current-buffer.
10031         (mm-viewer-completion-map, mm-viewer-completion-map):
10032         Move initialization inside declaration.
10033
10034 2005-09-29  Simon Josefsson  <jas@extundo.com>
10035
10036         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10037         autoload mail-check-payment.
10038         (spam-check-hashcash): Define unconditionally, since hashcash.el
10039         is part of Gnus now.  Ignore errors from payment checking.
10040
10041 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10042
10043         * message.el (message-bold-region, message-unbold-region): Rename
10044         from `bold-region' and `unbold-region'.
10045
10046         * message.el: Remove useless autoloads.
10047
10048 2005-09-28  Simon Josefsson  <jas@extundo.com>
10049
10050         * message.el (message-use-idna): Default to t.
10051         (message-use-idna): Test whether encoding works too.  Doc fix.
10052
10053 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10054
10055         * nntp.el (nntp-warn-about-losing-connection): Remove.
10056
10057 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10058
10059         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10060         customizable.  Change default value.
10061         (mm-uu-diff-groups-regexp): Change default value.
10062         (mm-uu-type-alist): Add doc string.
10063         (mm-uu-configure): Add doc string.  Make it interactive.
10064         (mm-uu-tex-groups-regexp): New variable.
10065         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10066         (mm-uu-type-alist): Add LaTeX documents.
10067         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10068         of "text/verbatim".
10069         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10070
10071         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10072         instead of "text/verbatim".
10073
10074         * message.el (message-mark-inserted-region)
10075         (message-mark-insert-file): Use slrn style marks when called with
10076         prefix argument.
10077
10078 2005-09-27  Simon Josefsson  <jas@extundo.com>
10079
10080         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10081
10082 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10083
10084         * message.el (message-remove-duplicates): New function.
10085         Implementation borrowed from `gnus-remove-duplicates'.
10086         (message-idna-to-ascii-rhs): Also encode idna addresses in
10087         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10088         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10089         only ask about the same idna domain once per header and also tell
10090         in what header to replace the idna domain.
10091
10092         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10093         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10094         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10095         a header is decoded and not just the last one.
10096
10097 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10098
10099         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10100         has been decoded.
10101
10102         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10103         (mm-insert-part): Don't modify text if it has been decoded.
10104
10105         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10106         decoded.
10107
10108         * mm-view.el (mm-inline-text): Don't strip text props unless
10109         decoding enriched or richtext parts.
10110
10111 2005-09-25  Romain Francoise  <romain@orebokech.com>
10112
10113         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10114         * gnus-start.el (gnus-subscribe-interactively):
10115         * gnus-uu.el (gnus-uu-grab-articles):
10116         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10117         space.
10118
10119 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10120
10121         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10122         * mm-view.el (mm-view-pkcs7-decrypt):
10123         * gnus-sum.el (gnus-summary-limit-to-extra)
10124         (gnus-summary-respool-article, gnus-read-move-group-name):
10125         * gnus-score.el (gnus-summary-increase-score):
10126         * gnus-util.el (gnus-completing-read-with-default):
10127         * gnus-art.el (gnus-read-save-file-name)
10128         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10129         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10130         * message.el (message-check-news-header-syntax):
10131         Follow convention for reading with the minibuffer.
10132
10133 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10134
10135         * spam-report.el (spam-report-url-ping-plain):
10136         Use gnus-extended-version as User-Agent.
10137
10138         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10139         default value is nil.
10140
10141         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10142         (mm-uu-verbatim-marks-extract): New function.
10143         (mm-uu-extract): New face.
10144         (mm-uu-copy-to-buffer): Use it.
10145
10146         * spam-report.el (spam-report-gmane-ham): Renamed from
10147         `spam-report-gmane-unspam'.
10148         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10149         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10150
10151         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10152         Autoload.
10153         (spam-report-gmane-unregister-routine): Renamed
10154         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10155
10156 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10157
10158         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10159         (spam-report-gmane-unregister-routine): Add support for gmane
10160         unregistration.
10161
10162         * spam-report.el (spam-report-gmane-unspam)
10163         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10164         (spam-report-gmane): Change to take a single article and do unspam
10165         registration.
10166
10167 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10168
10169         * mm-url.el (mm-url-decode-entities): Fix regexp.
10170
10171 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10172
10173         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10174         default to nil, to be able to use Gnus at all.  If the default
10175         switches to something else, then the function should be fixed not
10176         be exceedingly slow.
10177
10178 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10179
10180         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10181         fail hard.
10182
10183         * spam-report.el: Add better Keywords line.
10184
10185         * spam.el: Add Maintainer and better Keywords line.
10186
10187 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10188
10189         * gnus-art.el (gnus-article-replace-part)
10190         (gnus-mime-replace-part): New functions.
10191         (gnus-mime-action-alist, gnus-mime-button-commands)
10192         (gnus-mime-save-part-and-strip): Added file argument.
10193         (gnus-article-part-wrapper): Added interactive argument.
10194
10195         * gnus-sum.el (gnus-summary-mime-map): Add
10196         `gnus-article-replace-part'.
10197
10198 2005-09-19  Didier Verna  <didier@xemacs.org>
10199
10200         The nnml compaction feature:
10201         * nnml.el (nnml-request-compact-group): New function.
10202         * nnml.el (nnml-request-compact): New function.
10203         * gnus-int.el (gnus-request-compact-group): New function.
10204         * gnus-int.el (gnus-request-compact): New function.
10205         * gnus-group.el (gnus-group-compact-group): New function.
10206         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10207         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10208         * gnus-srvr.el (gnus-server-compact-server): New function.
10209         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10210         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10211
10212 2005-09-18  Deepak Goel  <deego@gnufans.org>
10213
10214         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10215         format spec.
10216
10217 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10218
10219         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10220
10221 2005-09-15  Romain Francoise  <romain@orebokech.com>
10222
10223         * message.el (message-fill-paragraph): Clarify docstring.
10224
10225 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10226
10227         * gnus-art.el (gnus-mime-display-part): Protect against broken
10228         MIME messages.
10229
10230 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10231
10232         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10233         before parsing header.
10234
10235 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10236
10237         * html2text.el (html2text-replace-list): Add new entities.
10238
10239 2005-09-11  Romain Francoise  <romain@orebokech.com>
10240
10241         * message.el (message-alternative-emails): Improve docstring.
10242         (message-setup-1): Call `message-use-alternative-email-as-from'
10243         after `message-setup-hook' to give it precedence over posting
10244         styles, etc.
10245         (message-use-alternative-email-as-from): Add docstring.  Remove
10246         the original From header if present.
10247
10248         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10249         (nnml-save-mail): Use it.
10250
10251         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10252         articles.  Add new argument `silent'.
10253         (gnus-uu-mark-all): Report the total number of marked articles.
10254
10255 2005-09-10  Romain Francoise  <romain@orebokech.com>
10256
10257         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10258         (gnus-uu-mark-series): Likewise.
10259
10260 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10261
10262         * spam-report.el (spam-report-gmane): Fix generation of spam
10263         report URL.
10264
10265 2005-09-10  Simon Josefsson  <jas@extundo.com>
10266
10267         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10268         t, based on discussion on the ding list with Robert Epprecht
10269         <epprecht@solnet.ch>.
10270
10271 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10272
10273         * spam-report.el (spam-report-gmane): Make it work without
10274         X-Report-Spam header.  Gmane now only provides Archived-At.
10275         This is only used if `spam-report-gmane-use-article-number' is nil.
10276         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10277
10278         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10279         make `gnus-summary-sort-by-recipient' work with threading.
10280
10281         * nnweb.el (nnweb-google-wash-article): Print a message if article
10282         is not available.
10283
10284 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10285
10286         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10287         change.  Decode text/* parts content before displaying.
10288
10289 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10290
10291         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10292
10293 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10294
10295         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10296
10297         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10298         url-package-name, url-package-version,
10299         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10300         w3m-display-inline-images, and w3m-minor-mode-map.
10301
10302 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10303
10304         * message.el (message-tab-body-function): Fix mismatched custom type.
10305
10306         * gnus.el (gnus-group-change-level-function): Ditto.
10307
10308         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10309
10310         * gnus-art.el (gnus-signature-limit)
10311         (gnus-article-mime-part-function): Ditto.
10312
10313 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10314
10315         * mml.el (mml-mode): Silence the byte compiler.
10316
10317         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10318         using `(sit-for 0)' before moving the point to the specified part;
10319         skip unbuttonized parts.
10320         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10321         return to the summary window if gnus-auto-select-part is non-nil.
10322
10323 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10324
10325         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10326         variables.
10327         (mml-dnd-attach-file, mml-mode): Use them.
10328
10329         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10330         Make fetching article by MID work again for Google Groups.  Added
10331         FIXME concerning gnus-group-make-web-group.
10332
10333         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10334         Don't depend on Gnus by using mail-extract-address-components if
10335         gnus-extract-address-components is not bound.
10336
10337 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10338
10339         * gnus-art.el (gnus-mime-display-security): Don't display the
10340         signature, but only the signed part.
10341
10342 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10343
10344         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10345
10346         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10347         list, not listp.
10348
10349 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10350
10351         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10352         when encoding.
10353
10354         * mm-bodies.el (mm-decode-content-transfer-encoding):
10355         De-canonicalize CRLF for all text content types, not just
10356         text/plain.
10357
10358 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10359
10360         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10361         valid article; point arrow and cursor at the MIME button.
10362
10363 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10364
10365         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10366         Suggested by Dan Christensen <jdc@uwo.ca>.
10367
10368         * mm-decode.el (mm-save-part): Enable change of prompt.
10369
10370 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10371
10372         * gnus-msg.el (gnus-inews-add-send-actions): Made
10373         `message-post-method' lambda parameter ARG `&optional'.
10374
10375 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10376
10377         * gnus-sum.el (gnus-summary-mime-map): Added
10378         gnus-article-save-part-and-strip, gnus-article-delete-part and
10379         gnus-article-jump-to-part.
10380
10381         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10382         (gnus-article-edit-part): Use it.
10383         (gnus-article-part-wrapper): Added no-handle argument.
10384         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10385         functions.
10386
10387 2005-08-29  Romain Francoise  <romain@orebokech.com>
10388
10389         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10390         docstring.
10391         (gnus-face-from-file): Likewise.
10392
10393 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10394
10395         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10396         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10397         non-nil.
10398         (gnus-auto-select-part): New variable.
10399         (gnus-article-jump-to-part): New function.
10400         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10401         (gnus-mime-delete-part): Allow selecting specified part after
10402         deleting or stripping parts.
10403         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10404         part if argument is bogus.
10405
10406 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10407
10408         * gnus-art.el (w3m-minor-mode-map):
10409         * gnus-spec.el (gnus-newsrc-file-version):
10410         * gnus-util.el (nnmail-active-file-coding-system)
10411         (gnus-original-article-buffer, gnus-user-agent):
10412         * gnus.el (gnus-ham-process-destinations)
10413         (gnus-parameter-ham-marks-alist)
10414         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10415         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10416         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10417         * mm-decode.el (gnus-current-window-configuration):
10418         * mm-extern.el (gnus-article-mime-handles):
10419         * mm-url.el (url-current-object, url-package-name)
10420         (url-package-version):
10421         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10422         (smime-keys, w3m-cid-retrieve-function-alist)
10423         (w3m-current-buffer, w3m-display-inline-images)
10424         (w3m-minor-mode-map):
10425         * mml-smime.el (gnus-extract-address-components):
10426         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10427         (gnus-newsrc-hashtb, message-default-charset)
10428         (message-deletable-headers, message-options)
10429         (message-posting-charset, message-required-mail-headers)
10430         (message-required-news-headers):
10431         * mml1991.el (mc-pgp-always-sign):
10432         * mml2015.el (mc-pgp-always-sign):
10433         * nnheader.el (nnmail-extra-headers):
10434         * rfc1843.el (gnus-decode-encoded-word-function)
10435         (gnus-decode-header-function, gnus-newsgroup-name):
10436         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10437
10438 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10439
10440         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10441         the end of the date treatments.
10442
10443 2005-08-15  Simon Josefsson  <jas@extundo.com>
10444
10445         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10446         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10447         Capello and Romain Francoise.
10448         (pgg-fetch-key-function): Removed, not used?
10449         (pgg-insert-url-with-w3): Require url, to get
10450         url-insert-file-contents regardless of where it is defined.
10451
10452 2005-08-13  Romain Francoise  <romain@orebokech.com>
10453
10454         * message.el (message-cite-original-1): New function.
10455         (message-cite-original): Use it.
10456         (message-cite-original-without-signature): Ditto.
10457
10458 2005-08-08  Romain Francoise  <romain@orebokech.com>
10459
10460         * message.el (message-yank-empty-prefix): New variable.
10461         (message-indent-citation): Use it.
10462         (message-cite-original-without-signature): Respect X-No-Archive.
10463
10464 2005-08-08  Simon Josefsson  <jas@extundo.com>
10465
10466         * pgg.el: Autoload url-insert-file-contents instead of loading
10467         w3/url.
10468         (pgg-insert-url-with-w3): Don't load url here.
10469
10470 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10471
10472         * message.el (message-kill-to-signature): Don't insert newline at
10473         bol.
10474         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10475
10476 2005-08-06  Romain Francoise  <romain@orebokech.com>
10477
10478         * message.el (message-user-fqdn): Fix typo in docstring.
10479
10480 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10481
10482         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10483
10484         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10485
10486 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10487
10488         * mm-bodies.el (mm-encode-body): Use coding system rather than
10489         charset to encode text.
10490
10491         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10492         number of charsets if utf-8 is available (XEmacs).
10493
10494 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10495
10496         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10497         taken from `gnus-button-mid-or-mail-regexp'.
10498         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10499         (gnus-button-alist): Improve regexp for domain part of the MIDs
10500         for news:localpart@domain buttons.
10501         (gnus-button-ctan-directory-regexp): Update.
10502
10503 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10504
10505         * sieve-manage.el (sieve-manage-interactive-login): Use
10506         make-local-variable rather than make-variable-buffer-local.
10507         (sieve-manage-open): Ditto.
10508         (sieve-manage-authenticate): Ditto.
10509
10510         * mml.el (mml-generate-mime-1): Make the content type default to
10511         text/plain if the filename is not specified.
10512
10513 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10514
10515         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10516         instead of insert-buffer.
10517
10518         * message.el (message-yank-original): Ditto; set the mark at the
10519         end of the yanked message.
10520
10521 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10522
10523         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10524         lines to scroll rather than to stop it.
10525
10526         * mml.el (mml-generate-default-type): Add doc string.
10527         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10528         default to application/octet-stream when determining the content
10529         type if it is not specified for the part or the mml contents; add
10530         a comment about mml-generate-default-type.
10531
10532 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10533
10534         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10535         make it default to application/octet-stream when determining the
10536         content type if it is not specified for the external contents.
10537
10538 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10539
10540         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10541         segmented parameter but also other parameters might be there.
10542
10543 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10544
10545         * mm-decode.el (mm-display-external): Delete temp file, directory
10546         and buffer immediately if the external process is exited.
10547
10548 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10549
10550         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10551         fewer lines than that of scroll-margin.
10552         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10553
10554 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10555
10556         * gnus-art.el (gnus-article-next-page): Revert.
10557         (gnus-article-beginning-of-window): New macro.
10558         (gnus-article-next-page-1): Use it.
10559         (gnus-article-prev-page): Ditto.
10560         (gnus-article-edit-part): Use insert-buffer-substring instead of
10561         insert-buffer.
10562         (gnus-article-edit-exit): Ditto.
10563
10564         * gnus-util.el (gnus-beginning-of-window): Remove.
10565         (gnus-end-of-window): Remove.
10566
10567         * lpath.el: Don't bind header-line-format and scroll-margin.
10568
10569 2005-07-25  Simon Josefsson  <jas@extundo.com>
10570
10571         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10572         to have the url package without w3.  Reported by Daiki Ueno
10573         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10574
10575 2005-07-20  Didier Verna  <didier@xemacs.org>
10576
10577         * gnus-diary.el: Remove the description comment (nndiary is now
10578         properly documented in the Gnus manual).
10579         Fix the spelling of "Back End".
10580         * nndiary.el: Ditto.
10581         Fix the copyright notice.
10582
10583 2005-07-18  Romain Francoise  <romain@orebokech.com>
10584
10585         * gnus-sum.el (gnus-summary-to-prefix)
10586         (gnus-summary-newsgroup-prefix): New variables.
10587         (gnus-summary-from-or-to-or-newsgroups): Use them.
10588
10589 2005-07-17  Romain Francoise  <romain@orebokech.com>
10590
10591         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10592         space as it's generally not especially interesting to the user.
10593
10594 2005-07-16  Romain Francoise  <romain@orebokech.com>
10595
10596         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10597         nil to avoid prompting and file modification if one of the
10598         messages at the top of the nnfolder file contains a copyright
10599         notice.
10600         Update copyright notice.
10601
10602         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10603         instead of `current-time-string' as the latter creates a time
10604         string that is not RFC 2822 compliant (it lacks the zone).
10605         Update copyright notice.
10606
10607 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10608
10609         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10610         for text/rtf.  Display default in prompt.  Pass default for M-n.
10611
10612         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10613
10614 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10615
10616         * gnus-msg.el (gnus-button-mailto): Remove
10617         save-selected-window-window hackery because it relies on
10618         save-selected-window internals.
10619
10620 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10621
10622         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10623         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10624         (gnus-article-prev-page): Ditto.
10625
10626         * gnus-util.el (gnus-beginning-of-window): New function.
10627         (gnus-end-of-window): New function.
10628
10629         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10630
10631 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10632
10633         * gnus-score.el (gnus-score-edit-all-score): Set
10634         gnus-score-edit-exit-function to gnus-score-edit-done and call
10635         gnus-message.
10636
10637 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10638
10639         * gnus-msg.el (gnus-button-mailto): Remove
10640         save-selected-window-window hackery because it relies on
10641         save-selected-window internals.
10642
10643 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10644
10645         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10646         add-minor-mode.
10647         (gnus-binary-mode): Ditto.
10648
10649         * gnus-topic.el (gnus-topic-mode): Ditto.
10650
10651 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10652
10653         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10654         (gnus-article-prev-page): Take scroll-margin into consideration.
10655
10656 2005-07-04  Lute Kamstra  <lute@gnu.org>
10657
10658         Update FSF's address in GPL notices.
10659
10660 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10661
10662         * gnus.el (gnus-exit):
10663         * gnus-group.el (gnus-group-icons):
10664         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10665
10666         * gnus-nocem.el (gnus-nocem):
10667         * message.el (message-various, message-buffers, message-sending)
10668         (message-interface, message-forwarding, message-insertion)
10669         (message-headers, message-news, message-mail):
10670         * pgg-gpg.el (pgg-gpg):
10671         * pgg-parse.el (pgg-parse):
10672         * pgg-pgp.el (pgg-pgp):
10673         * pgg-pgp5.el (pgg-pgp5):
10674         * pop3.el (pop3): Finish `defgroup' description with period.
10675
10676 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10677
10678         * gnus-art.el (article-display-face): Improve the efficiency.
10679         (article-display-x-face): Ditto; remove grey x-face stuff.
10680
10681 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10682
10683         * gnus-art.el (article-display-face): Correct the position in
10684         which Faces are inserted.
10685
10686 2005-06-29  Didier Verna  <didier@xemacs.org>
10687
10688         * gnus-art.el (article-display-face): Display faces in correct
10689         order.
10690
10691 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10692
10693         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10694         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10695         (gnus-nocem-check-article): Fetch the Type header.
10696         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10697         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10698         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10699         make sure gnus-nocem-hashtb is initialized.
10700         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10701         (gnus-nocem-unwanted-article-p): Ditto.
10702
10703         * pgg.el (pgg-verify): Return the verification result.
10704
10705 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10706
10707         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10708         is ascii.
10709
10710 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10711
10712         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10713         `show-nonbreak-escape'.
10714
10715 2005-06-23  Lute Kamstra  <lute@gnu.org>
10716
10717         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10718
10719         * dig.el (dig-mode):
10720         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10721
10722 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10723
10724         * nnimap.el (nnimap-split-download-body): Fix spellings.
10725
10726 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10727
10728         * gnus-art.el (gnus-article-encrypt-body):
10729         * gnus-cus.el (gnus-score-customize):
10730         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10731         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10732
10733 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10734
10735         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10736         header by looking for magic "MII" at the beginnig.
10737
10738 2005-06-16  Miles Bader  <miles@gnu.org>
10739
10740         * gnus-xmas.el (gnus-xmas-group-startup-message):
10741         Use renamed gnus-splash face.
10742
10743         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10744         (assistant-field-face): New backward-compatibility alias for renamed
10745         face.
10746         (assistant-render-text): Use renamed assistant-field face.
10747
10748         * spam.el (spam): Remove "-face" suffix from face name.
10749         (spam-face): New backward-compatibility alias for renamed face.
10750         (spam-face, spam-initialize): Use renamed spam face.
10751
10752         * message.el (message-header-to, message-header-cc)
10753         (message-header-subject, message-header-newsgroups)
10754         (message-header-other, message-header-name)
10755         (message-header-xheader, message-separator, message-cited-text)
10756         (message-mml): Remove "-face" suffix from face names.
10757         (message-header-to-face, message-header-cc-face)
10758         (message-header-subject-face, message-header-newsgroups-face)
10759         (message-header-other-face, message-header-name-face)
10760         (message-header-xheader-face, message-separator-face)
10761         (message-cited-text-face, message-mml-face):
10762         New backward-compatibility aliases for renamed faces.
10763         (message-font-lock-keywords): Use renamed message faces.
10764
10765         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10766         (sieve-test-commands, sieve-tagged-arguments):
10767         Remove "-face" suffix from face names.
10768         (sieve-control-commands-face, sieve-action-commands-face)
10769         (sieve-test-commands-face, sieve-tagged-arguments-face):
10770         New backward-compatibility aliases for renamed faces.
10771         (sieve-control-commands-face, sieve-action-commands-face)
10772         (sieve-test-commands-face, sieve-tagged-arguments-face):
10773         Use renamed sieve faces.
10774
10775         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10776         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10777         (gnus-group-news-3-empty, gnus-group-news-4)
10778         (gnus-group-news-4-empty, gnus-group-news-5)
10779         (gnus-group-news-5-empty, gnus-group-news-6)
10780         (gnus-group-news-6-empty, gnus-group-news-low)
10781         (gnus-group-news-low-empty, gnus-group-mail-1)
10782         (gnus-group-mail-1-empty, gnus-group-mail-2)
10783         (gnus-group-mail-2-empty, gnus-group-mail-3)
10784         (gnus-group-mail-3-empty, gnus-group-mail-low)
10785         (gnus-group-mail-low-empty, gnus-summary-selected)
10786         (gnus-summary-cancelled, gnus-summary-high-ticked)
10787         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10788         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10789         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10790         (gnus-summary-low-undownloaded)
10791         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10792         (gnus-summary-low-unread, gnus-summary-normal-unread)
10793         (gnus-summary-high-read, gnus-summary-low-read)
10794         (gnus-summary-normal-read, gnus-splash):
10795         Remove "-face" suffix from face names.
10796         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10797         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10798         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10799         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10800         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10801         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10802         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10803         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10804         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10805         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10806         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10807         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10808         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10809         (gnus-summary-normal-ticked-face)
10810         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10811         (gnus-summary-normal-ancient-face)
10812         (gnus-summary-high-undownloaded-face)
10813         (gnus-summary-low-undownloaded-face)
10814         (gnus-summary-normal-undownloaded-face)
10815         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10816         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10817         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10818         (gnus-splash-face):
10819         New backward-compatibility aliases for renamed faces.
10820         (gnus-group-startup-message): Use renamed gnus faces.
10821
10822         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10823         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10824         (gnus-server-agent): Remove "-face" suffix from face names.
10825         (gnus-server-agent-face, gnus-server-opened-face)
10826         (gnus-server-closed-face, gnus-server-denied-face)
10827         (gnus-server-offline-face):
10828         New backward-compatibility aliases for renamed faces.
10829         (gnus-server-agent-face, gnus-server-opened-face)
10830         (gnus-server-closed-face, gnus-server-denied-face)
10831         (gnus-server-offline-face): Use renamed gnus faces.
10832
10833         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10834         Remove "-face" suffix from face names.
10835         (gnus-picon-xbm-face, gnus-picon-face):
10836         New backward-compatibility aliases for renamed faces.
10837
10838         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10839         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10840         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10841         (gnus-cite-11): Remove "-face" suffix from face names.
10842         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10843         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10844         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10845         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10846         New backward-compatibility aliases for renamed faces.
10847         (gnus-cite-attribution-face, gnus-cite-face-list)
10848         (gnus-article-boring-faces): Use renamed gnus faces.
10849
10850         * gnus-art.el (gnus-signature, gnus-header-from)
10851         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10852         (gnus-header-content): Remove "-face" suffix from face names.
10853         (gnus-signature-face, gnus-header-from-face)
10854         (gnus-header-subject-face, gnus-header-newsgroups-face)
10855         (gnus-header-name-face, gnus-header-content-face):
10856         New backward-compatibility aliases for renamed faces.
10857         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10858
10859         * gnus-sum.el (gnus-summary-selected-face)
10860         (gnus-summary-highlight): Use renamed gnus faces.
10861         * gnus-group.el (gnus-group-highlight): Likewise.
10862
10863 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10864
10865         * gnus-sieve.el (gnus-sieve-article-add-rule):
10866         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10867         * spam-stat.el (spam-stat-buffer-change-to-spam)
10868         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10869
10870         * message.el (message-is-yours-p):
10871         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10872
10873 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10874
10875         * mm-view.el (mm-inline-text): Withdraw the last change.
10876
10877 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10878
10879         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10880         executing enriched-decode.
10881
10882 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10883
10884         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
10885         charset of tar files.
10886
10887 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
10888
10889         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
10890
10891 2005-06-04  Lute Kamstra  <lute@gnu.org>
10892
10893         * nnfolder.el (nnfolder-read-folder): Make sure that undo
10894         information is never recorded.
10895
10896 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10897
10898         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
10899
10900 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10901
10902         * pop3.el (pop3-apop): Run md5 in the binary mode.
10903
10904         * starttls.el (starttls-set-process-query-on-exit-flag):
10905         Use eval-and-compile.
10906
10907 2005-05-31  Simon Josefsson  <jas@extundo.com>
10908
10909         * smime.el (smime-replace-in-string): Define.
10910         (smime-cert-by-ldap-1): Use it.
10911
10912 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10913
10914         * gnus-art.el (article-display-x-face): Replace
10915         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10916
10917         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
10918         set-process-query-on-exit-flag or process-kill-without-query.
10919
10920         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
10921         loop instead of replace-regexp.
10922
10923         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
10924         instead of process-kill-without-query if it is available.
10925
10926         * lpath.el: Fbind ldap-search-entries.
10927
10928         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
10929         instead of find-file-hooks if it is available.
10930
10931         * mml1991.el: Bind pgg-default-user-id when compiling.
10932
10933         * mml2015.el: Bind pgg-default-user-id when compiling.
10934
10935         * nndraft.el (nndraft-request-associate-buffer):
10936         Use write-contents-functions instead of write-contents-hooks if it is
10937         available.
10938
10939         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
10940         instead of find-file-hooks if it is available.
10941
10942         * nntp.el (nntp-open-connection): Replace
10943         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10944         (nntp-open-ssl-stream): Ditto.
10945         (nntp-open-tls-stream): Ditto.
10946
10947         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
10948         set-process-query-on-exit-flag or process-kill-without-query.
10949         (starttls-open-stream-gnutls): Use it instead of
10950         process-kill-without-query.
10951         (starttls-open-stream): Ditto.
10952
10953 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
10954
10955         * smime.el (smime-cert-by-ldap-1): Don't use
10956         replace-regexp-in-string.
10957
10958 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
10959
10960         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
10961
10962         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
10963         in PEM format.  Adjust to the XEmacs compability.
10964
10965 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
10966
10967         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
10968         by `string-to-number'.
10969         * gnus-agent.el (gnus-agent-regenerate-group)
10970         (gnus-agent-fetch-articles): Ditto.
10971         * gnus-art.el (gnus-button-fetch-group): Ditto.
10972         * gnus-cache.el (gnus-cache-generate-active)
10973         (gnus-cache-articles-in-group): Ditto.
10974         * gnus-group.el (gnus-group-set-current-level)
10975         (gnus-group-insert-group-line): Ditto.
10976         * gnus-score.el (gnus-score-set-expunge-below)
10977         (gnus-score-set-mark-below, gnus-summary-score-effect)
10978         (gnus-summary-score-entry): Ditto.
10979         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
10980         (gnus-soup-pack): Ditto.
10981         * gnus-spec.el (gnus-xmas-format): Ditto.
10982         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
10983         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
10984         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
10985         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
10986         * nndb.el (nndb-get-remote-expire-response): Ditto.
10987         * nndiary.el (nndiary-parse-schedule-value)
10988         (nndiary-string-to-number, nndiary-request-replace-article)
10989         (nndiary-request-article): Ditto.
10990         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
10991         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
10992         * nneething.el (nneething-make-head): Ditto.
10993         * nnfolder.el (nnfolder-request-article)
10994         (nnfolder-retrieve-headers): Ditto.
10995         * nnheader.el (nnheader-file-to-number): Ditto.
10996         * nnkiboze.el (nnkiboze-request-article): Ditto.
10997         * nnmail.el (nnmail-process-unix-mail-format)
10998         (nnmail-process-babyl-mail-format): Ditto.
10999         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
11000         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
11001         (nnmh-request-create-group, nnmh-request-list-1)
11002         (nnmh-request-group, nnmh-request-article): Ditto.
11003         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
11004         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
11005         * nnsoup.el (nnsoup-make-active): Ditto.
11006         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
11007         * nntp.el (nntp-find-group-and-number)
11008         (nntp-retrieve-headers-with-xover): Ditto.
11009         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
11010         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
11011         (pgg-format-key-identifier): Ditto.
11012         * pop3.el (pop3-last, pop3-stat): Ditto.
11013         * qp.el (quoted-printable-decode-region): Ditto.
11014
11015         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11016         of concat.
11017
11018 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11019
11020         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11021
11022         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11023
11024         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11025
11026         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11027
11028         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11029
11030         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11031
11032         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11033         (gnus-carpal-mode): Ditto.
11034
11035         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11036         (gnus-browse-mode): Ditto.
11037
11038         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11039
11040         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11041
11042 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11043
11044         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11045
11046 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11047
11048         * gnus-util.el (gnus-run-mode-hooks): New function.
11049
11050         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11051
11052         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11053         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11054
11055 2005-05-27  Lute Kamstra  <lute@gnu.org>
11056
11057         * dns-mode.el (dns-mode): Specify customization group.
11058
11059 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11060
11061         * gnus-agent.el (gnus-agent-make-mode-line-string):
11062         Use mode-line-highlight as mouse-face.
11063
11064 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11065
11066         * canlock.el (canlock): Change the parent group to news.
11067
11068         * deuglify.el (gnus-outlook-deuglify): Add :group.
11069
11070         * dig.el (dig): Add :group.
11071
11072         * dns-mode.el (dns-mode): Add :group.
11073
11074         * encrypt.el (encrypt): Add :group.
11075
11076         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11077         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11078         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11079         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11080         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11081
11082         * gnus-diary.el (gnus-diary): Add :group.
11083
11084         * gnus.el (gnus-group-news-1-face): Add :group.
11085         (gnus-group-news-1-empty-face): Ditto.
11086         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11087         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11088         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11089         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11090         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11091         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11092         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11093         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11094         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11095         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11096         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11097         (gnus-summary-high-ticked-face): Ditto.
11098         (gnus-summary-low-ticked-face): Ditto.
11099         (gnus-summary-normal-ticked-face): Ditto.
11100         (gnus-summary-high-ancient-face): Ditto.
11101         (gnus-summary-low-ancient-face): Ditto.
11102         (gnus-summary-normal-ancient-face): Ditto.
11103         (gnus-summary-high-undownloaded-face): Ditto.
11104         (gnus-summary-low-undownloaded-face): Ditto.
11105         (gnus-summary-normal-undownloaded-face): Ditto.
11106         (gnus-summary-high-unread-face): Ditto.
11107         (gnus-summary-low-unread-face): Ditto.
11108         (gnus-summary-normal-unread-face): Ditto.
11109         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11110         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11111
11112         * hashcash.el (hashcash): New custom group.
11113         (hashcash-default-payment): Add :group.
11114         (hashcash-payment-alist): Ditto.
11115         (hashcash-default-accept-payment): Ditto.
11116         (hashcash-accept-resources): Ditto.
11117         (hashcash-path): Ditto.
11118         (hashcash-extra-generate-parameters): Ditto.
11119         (hashcash-double-spend-database): Ditto.
11120         (hashcash-in-news): Ditto.
11121
11122         * message.el (message-minibuffer-local-map): Add :group.
11123
11124         * netrc.el (netrc): Add :group.
11125
11126         * sieve-manage.el (sieve-manage-log): Add :group.
11127         (sieve-manage-default-user): Diito.
11128         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11129         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11130         (sieve-manage-authenticators): Ditto.
11131         (sieve-manage-authenticator-alist): Ditto.
11132         (sieve-manage-default-port): Ditto.
11133
11134         * sieve-mode.el (sieve-control-commands-face): Add :group.
11135         (sieve-action-commands-face): Ditto.
11136         (sieve-test-commands-face): Ditto.
11137         (sieve-tagged-arguments-face): Ditto.
11138
11139         * smime.el (smime): Add :group.
11140
11141         * spam-report.el (spam-report): Add :group.
11142
11143         * spam.el (spam, spam-face): Add :group.
11144
11145 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11146
11147         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11148         return \n.\n.\n at the end of articles.  Protect against that.
11149         (nntp-with-open-group): Allow debugging.
11150
11151         * nnheader.el (mail-header-set-extra): Make into a function
11152         because I just could't understand how to quote the list properly.
11153
11154         * dns.el (query-dns-cached): New function.
11155
11156 2005-05-26  Lute Kamstra  <lute@gnu.org>
11157
11158         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11159
11160 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11161
11162         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11163
11164         * gnus-art.el: Don't autoload mail-extract-address-components.
11165
11166         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11167         eval-and-compile to evaluate it.
11168
11169         * hashcash.el: Don't autoload executable-find.
11170
11171         * nndb.el: Don't declare the nndb back end two or more times; don't
11172         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11173
11174         * nntp.el: Autoload format-spec instead of format; use
11175         eval-and-compile to evaluate autoload forms.
11176
11177 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11178
11179         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11180
11181 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11182
11183         * gnus.el (gnus-version-number): Bump version.
11184
11185 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11186
11187         * gnus.el: No Gnus v0.3 is released.
11188
11189 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11190
11191         * lpath.el (featurep): Bind show-nonbreak-escape.
11192
11193 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11194
11195         * gnus-art.el (gnus-article-edit-part): Disable undo.
11196
11197 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11198
11199         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11200         gnus-article-date-lapsed-new-header is t if date timer is active;
11201         skip headers in which the original date value is empty.
11202         (gnus-article-save-original-date): Redefine it as a macro.
11203         (gnus-display-mime): Use it.
11204
11205 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11206
11207         * gnus-art.el (article-date-ut): Support converting date in
11208         forwarded parts as well.
11209         (gnus-article-save-original-date): New function.
11210         (gnus-display-mime): Use it.
11211
11212 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11213
11214         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11215         enclosure element of <item>.
11216
11217 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11218
11219         * message.el (message-kill-buffer-query): Renamed from
11220         `message-kill-buffer-query-if-modified'.  Added :version.
11221
11222 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11223
11224         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11225         window layout.
11226
11227 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11228
11229         * mml.el: Autoload dnd when compiling.
11230
11231 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11232
11233         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11234         x-dnd-*.
11235
11236 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11237
11238         * qp.el (quoted-printable-encode-region): Save excursion.
11239
11240 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11241
11242         * message.el (message-kill-buffer-query-if-modified): Add new variable
11243         so the user can kill a modified message buffer quickly.
11244         (message-kill-buffer): Use it.
11245
11246 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11247
11248         * lpath.el: Fbind display-time-event-handler; don't fbind
11249         string-to-multibyte.
11250
11251         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11252
11253 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11254
11255         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11256         contained in text because xml.el decodes entities) with LFs.
11257
11258 2005-04-11  Lute Kamstra  <lute@gnu.org>
11259
11260         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11261         differently.
11262
11263 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11264
11265         * mm-util.el (mm-detect-coding-region): Typo.
11266
11267 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11268
11269         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11270
11271 2005-04-06  Deepak Goel  <deego@gnufans.org>
11272
11273         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11274         user-function allow user modifications of the scores.
11275         (spam-stat-score-buffer-user): New function, to allow
11276         user-computed modifications to the score.
11277         (spam-stat-score-buffer-user-functions): List of additional
11278         scoring functions.
11279         (spam-stat-error-holder): Global temporary error holder.
11280         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11281         variable.
11282
11283 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11284
11285         * gnus-registry.el (gnus-registry-clean-empty-function)
11286         (gnus-registry-trim, gnus-registry-fetch-groups)
11287         (gnus-registry-delete-group): Groups that match
11288         `gnus-registry-ignored-groups' are removed from the registry
11289         entries, not just ignored for splitting.  This helps clean up the
11290         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11291         to get all the groups a message ID is in.
11292
11293         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11294         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11295         (spam-stat-score-buffer-user-functions): Add :number custom type.
11296
11297 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11298
11299         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11300         argument in XEmacs.
11301
11302         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11303         (nnrss-request-group): Decode group name first.
11304         (nnrss-request-article): Make a text/plain article if mml-to-mime
11305         failed.
11306         (nnrss-get-encoding): Return a compatible encoding according to
11307         nnrss-compatible-encoding-alist.
11308         (nnrss-find-el): Use consp instead of listp.
11309         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11310
11311 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11312
11313         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11314         which Emacs 20 doesn't support.
11315         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11316
11317 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11318
11319         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11320         silence the byte compiler inside the defun.
11321
11322         * gnus-demon.el (parse-time-string): Add autoload.
11323
11324         * gnus-delay.el (parse-time-string): Add autoload.
11325
11326         * gnus-art.el (parse-time-string): Add autoload.
11327
11328         * nnultimate.el (parse-time): Require for `parse-time-string'.
11329
11330 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11331
11332         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11333
11334         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11335
11336         * smime.el (smime-ldap-host-list): Add :version.
11337
11338 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11339
11340         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11341         pass it to `gnus-browse-read-group'.
11342         (gnus-browse-read-group): Add NUMBER argument and pass it to
11343         `gnus-group-read-ephemeral-group'.
11344
11345         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11346         argument and pass it to `gnus-group-read-group'.
11347
11348 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11349
11350         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11351         mm-xemacs-find-mime-charset-1 if we have the mule feature
11352         available at runtime.
11353
11354 2005-03-25  Werner Lemberg  <wl@gnu.org>
11355
11356         * nnmaildir.el: Replace `illegal' with `invalid'.
11357
11358 2005-03-23  Lute Kamstra  <lute@gnu.org>
11359
11360         * time-date.el: Add comment on time value formats.
11361         Don't require parse-time.
11362         (with-decoded-time-value): New macro.
11363         (encode-time-value): New function.
11364         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11365         (days-to-time): Return a valid time value when arg is huge.
11366         (time-since): Use time-subtract.
11367         (time-to-number-of-days): Use time-to-seconds.
11368
11369 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11370
11371         * gnus-start.el (gnus-display-time-event-handler):
11372         Check display-time-timer at runtime rather than only at load time
11373         in case display-time-mode is turned off in the mean time.
11374
11375 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11376
11377         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11378         used.
11379
11380         * nneething.el (nneething-map-file-directory): Derive from
11381         `gnus-directory'.
11382
11383         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11384         the To/Cc button.
11385
11386 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11387
11388         * nnmaildir.el (nnmaildir-request-accept-article):
11389         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11390
11391 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11392
11393         * gnus-async.el: Require timer-funcs at compile time when in
11394         XEmacs for `run-with-idle-timer'.
11395
11396 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11397
11398         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11399         autoloaded function.
11400
11401 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11402
11403         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11404
11405 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11406
11407         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11408
11409 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11410
11411         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11412         gnus-expert-user to default.
11413
11414 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11415
11416         * nnimap.el (nnimap-open-server): Ditto.
11417
11418         * imap.el (imap-authenticate): Fix typo.
11419
11420 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11421
11422         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11423         buffer (since IMAP server might return FETCH response out of
11424         order, and the nntp buffer must be sorted).
11425
11426 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11427
11428         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11429         comparison on string.
11430
11431         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11432         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11433         (gnus-agent-summary-fetch-series): Modified to protect against
11434         gnus-agent-summary-fetch-group clearing processable flags.
11435         (gnus-agent-synchronize-group-flags): Update live group buffer as
11436         synchronization may occur due to the user toggle the plugged
11437         status.
11438         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11439         successfully downloaded.
11440         (gnus-agent-expire-group-1): Avoid using markers when the overview
11441         is in ascending order; greatly improves performance.
11442         (gnus-agent-regenerate-group): Use
11443         gnus-agent-synchronize-group-flags to reset read status in both
11444         gnus and server.
11445         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11446
11447 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11448
11449         * message.el: Don't autoload former message-utils variables.
11450         (message-strip-subject-trailing-was): Change doc string.
11451
11452         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11453         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11454         (nnweb-google-search): Add "hl=en" here.
11455         (nnweb-google-parse-1, nnweb-google-create-mapping):
11456         Don't hardcode URL.
11457
11458 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11459
11460         * message.el (message-get-reply-headers, message-followup):
11461         Mention related variables `message-use-followup-to' and
11462         `message-use-mail-followup-to', in the information buffer.
11463
11464         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11465         of broken groups(-beta).google.com.
11466
11467 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11468
11469         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11470         parameter to invoked gnus-request-move-article; remove the
11471         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11472         all at once instead of once per article.
11473         (gnus-summary-remove-process-mark): Accept a list of articles as
11474         well as a single article for processing.
11475
11476         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11477         parameter.
11478
11479         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11480
11481         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11482
11483         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11484         parameter.
11485
11486         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11487         parameter.
11488
11489         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11490         parameter and remove the gnus-sum-hint-move-is-internal variable.
11491
11492         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11493         parameter.
11494
11495         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11496         parameter.
11497
11498         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11499         parameter.
11500
11501         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11502
11503         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11504         parameter.
11505
11506         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11507         parameter.
11508
11509 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11510
11511         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11512         a more conservative way.
11513
11514 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11515
11516         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11517         buffer, so it moves the window's cursor.
11518
11519 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11520
11521         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11522         `mm-dissect-multipart' and receive the from field as an (optional)
11523         argument from `mm-dissect-multipart'.
11524         (mm-dissect-multipart): Receive the from field as an argument and
11525         pass it on when we call `mm-dissect-buffer' on MIME parts.
11526         Fixes verification/decryption of signed/encrypted MIME parts.
11527
11528 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11529
11530         * gnus-sum.el (gnus-summary-move-article): Set
11531         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11532         whatever it calls (right now, only nnimap-request-move article
11533         respects it).
11534
11535         * nnimap.el (nnimap-request-move-article): When
11536         gnus-sum-hint-move-is-internal is set, don't do the extra
11537         nnimap-request-article.
11538
11539 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11540
11541         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11542
11543         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11544         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11545
11546         * gnus-sum.el (gnus-summary-caesar-message):
11547         Apply `gnus-treat-article' after rotation.
11548
11549         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11550         doc string.
11551
11552 2005-02-22  Simon Josefsson  <jas@extundo.com>
11553
11554         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11555         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11556         <arne@arnested.dk>.
11557         (encrypt): Add password-cache and password-cache-expiry as group
11558         members.
11559
11560 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11561
11562         * smime.el (smime-ldap-host-list): Doc fix.
11563         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11564         cache) password.
11565         (smime-sign-region): Use it.
11566         (smime-decrypt-region): Use it.
11567         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11568         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11569         fails.
11570         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11571         certificate from DER to PEM format rather than calling openssl.
11572
11573         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11574
11575         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11576         for signing/encryption.
11577
11578         * mml.el (mml-parse-1): Use them.
11579
11580 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11581
11582         * nnrss.el (nnrss-verbose): Removed.
11583         (nnrss-request-group): Use `nnheader-message' instead.
11584
11585 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11586
11587         * nnrss.el (nnrss-verbose): New variable.
11588         (nnrss-request-group): Make it say nnrss is requesting a group.
11589
11590 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11591
11592         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11593         Handle news URL with given port correctly.
11594
11595 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11596
11597         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11598         containing special characters.
11599
11600         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11601
11602         * mml.el (mime-to-mml): Ditto.
11603
11604         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11605         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11606         (rfc2047-decode-region): Quote decoded words containing special
11607         characters when rfc2047-quote-decoded-words-containing-tspecials
11608         is non-nil.
11609
11610 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11611
11612         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11613
11614         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11615
11616 2005-02-15  Simon Josefsson  <jas@extundo.com>
11617
11618         * nnimap.el (nnimap-debug): Doc fix.
11619
11620         * imap.el (imap-debug): Doc fix.
11621
11622 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11623
11624         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11625
11626 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11627
11628         * gnus.el (spam-contents): Improve docs for spam-contents
11629         parameter in its variable incarnation.
11630
11631 2005-02-14  Simon Josefsson  <jas@extundo.com>
11632
11633         * smime-ldap.el: Use require instead of load-library for ldap.
11634         (smime-ldap-search): Indent.
11635         (smime-ldap-search-internal): Shorten line.
11636
11637         * smime.el (smime-cert-by-dns): Add doc-string.
11638         (smime-cert-by-ldap-1): Indent.
11639
11640         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11641         mml-smime-get-dns-ldap.
11642         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11643
11644 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11645
11646         * smime.el: Require smime-ldap.
11647         (smime-ldap-host-list): New variable.
11648         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11649
11650         * mml-smime.el (mml-smime-encrypt-query): New function.
11651         (mml-smime-encrypt-query): Use it.
11652
11653         * smime-ldap.el: New file.
11654
11655 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11656
11657         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11658
11659 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11660
11661         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11662         argument in doc string.  Make query for type more clear.
11663
11664 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11665
11666         * gnus.el (gnus-group-startup-message): Search for gnus images in
11667         etc/images/gnus.
11668         * mm-util.el (mm-image-load-path): Likewise.
11669         * smiley.el (smiley-data-directory): Search for smilies in
11670         etc/images/smilies.
11671
11672 2005-02-09  Kim F. Storm  <storm@cua.dk>
11673
11674         Change Emacs release version from 21.4 to 22.1 throughout.
11675         Change Emacs development version from 21.3.50 to 22.0.50.
11676
11677 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11678
11679         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11680
11681         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11682         non-Mule XEmacs as well.
11683         (mm-decompress-buffer): Signal an error intentionally if it does
11684         not decompress compressed data because auto-compression-mode is
11685         disabled.
11686
11687 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11688
11689         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11690         an ID in the registry even if it has no groups.
11691
11692 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11693
11694         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11695         merge it into mm-decompress-buffer.
11696         (gnus-mime-copy-part): Use the MIME part charset, the value which
11697         a user specified or gnus-newsgroup-charset for decoding, like
11698         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11699         save-buffer what was used.  Suggested by Kevin Ryde
11700         <user42@zip.com.au>.
11701         (gnus-mime-inline-part): Allow the name parameter as well as the
11702         filename parameter; force decompressing of compressed data; always
11703         display contents being not decoded as unibyte.
11704
11705         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11706         as well as the filename parameter.
11707
11708         * mm-util.el (mm-decompress-buffer): Merge
11709         gnus-mime-jka-compr-maybe-uncompress.
11710         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11711         of compressed data.
11712
11713 2005-02-08  Simon Josefsson  <jas@extundo.com>
11714
11715         * imap.el (imap-log): Doc fix.
11716
11717 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11718
11719         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11720         the coding cookies; decompress compressed parts.
11721
11722         * mml.el (mml-generate-mime-1): Add the charset parameter according
11723         to the value which a user specified manually or the coding cookie.
11724
11725         * mm-util.el (mm-string-to-multibyte): New function.
11726         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11727         (mm-coding-system-to-mime-charset): New function.
11728         (mm-decompress-buffer): New function.
11729         (mm-find-buffer-file-coding-system): New function.
11730
11731         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11732         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11733         parts.
11734
11735 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11736
11737         * mm-view.el (mm-display-inline-fontify): Decode a part according
11738         to the charset parameter.
11739
11740 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11741
11742         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11743         prefix arg is neither nil nor a number, as info specifies.
11744
11745 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11746
11747         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11748         timestamps.
11749
11750 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11751
11752         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11753         groups error checking and notify user.
11754
11755 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11756
11757         * message.el (message-send-mail-function): Check existence of
11758         sendmail-program first before using default value
11759         `message-send-mail-with-sendmail'.  Otherwise use more generic
11760         `smtpmail-send-it'.
11761
11762 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11763
11764         * nntp.el (nntp-request-update-info): Always return nil.
11765
11766 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11767
11768         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11769
11770 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11771
11772         * message.el (message-beginning-of-line): Change the behavior when
11773         invoked between BOL and : so that it first moves backward.
11774
11775 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11776
11777         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11778         article buffer when editing of the article is discarded.
11779         (gnus-article-prepare): Revert.
11780
11781 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11782
11783         * gnus-art.el (gnus-article-prepare):
11784         Remove message-strip-forbidden-properties from the local hook.
11785
11786 2005-01-27  Simon Josefsson  <jas@extundo.com>
11787
11788         * password.el (password-cache-add): Only start one timer per key.
11789         Reported by Derek Atkins <warlord@MIT.EDU>.
11790
11791 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11792
11793         * run-at-time.el: Removed.  It is no longer needed as
11794         timer-funcs.el in the xemacs-base package has a working version of
11795         `run-at-time'.
11796
11797         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11798
11799         * password.el: Require timer-funcs instead of run-at-time in
11800         XEmacs.
11801         Remove `password-run-at-time' macro.
11802         (password-cache-add): Use `run-at-time' instead of
11803         `password-run-at-time'.
11804
11805         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11806         Remove `nnheader-cancel-function-timers' alias,
11807         `cancel-function-timers' exists in XEmacs in timer-funcs.
11808
11809         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11810         for `run-with-idle-timer'.
11811
11812         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11813         for `run-at-time'.
11814
11815         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11816         for `with-timeout'.
11817
11818         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11819         the same as for XEmacs 21.4.
11820         No need to ignore `run-with-idle-timer', this function exists in
11821         XEmacs now in timer-funcs.el in the xemacs-base package.
11822         (dgnushack-compile): No need to delete
11823         run-at-time.el from the list of files to compile because it
11824         doesn't exist anymore.
11825
11826 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11827
11828         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11829         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11830
11831 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11832
11833         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11834         sensitively.
11835
11836 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11837
11838         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11839
11840 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11841
11842         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11843         which will be inserted according to the multibyteness of a buffer
11844         rather than the type of contents.  Suggested by ARISAWA Akihiro
11845         <ari@mbf.ocn.ne.jp>.
11846
11847         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11848         of string which old xml.el may return rather than a string.
11849
11850 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11851
11852         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11853
11854 2005-01-16  Simon Josefsson  <jas@extundo.com>
11855
11856         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11857         idn/idna.el isn't available.
11858         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11859         <michael@waxrat.com>.
11860
11861         * hashcash.el: Remove non-FSF copyright header.
11862
11863         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11864         (hashcash-generate-payment): Use it.
11865         (hashcash-generate-payment-async): Use it.
11866
11867 2005-01-15  Simon Josefsson  <jas@extundo.com>
11868
11869         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11870         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11871
11872         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11873         gnus-summary-idna-message.
11874         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11875         (gnus-summary-idna-message): New function.
11876
11877 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11878
11879         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11880         gnus-novice-user.
11881
11882 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11883
11884         * nnrss.el (nnrss-request-delete-group): Delete entries in
11885         nnrss-group-alist as well.
11886         (nnrss-save-server-data): Insert newline.
11887
11888 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
11889
11890         * gnus.el (gnus-user-agent): Use list of symbols instead of
11891         symbols.  Display full version number for (S)XEmacs.  Optionally
11892         display (S)XEmacs codename.
11893
11894         * gnus-util.el (gnus-emacs-version): Update for new
11895         `gnus-user-agent'.
11896
11897         * gnus-msg.el (gnus-extended-version): Make it possible to omit
11898         Gnus version.
11899
11900 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
11901
11902         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
11903         which is unreadable in some setups.
11904
11905 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11906
11907         * gnus-spec.el (gnus-update-format-specifications): Flush the
11908         group format spec cache if it doesn't support decoded group names.
11909
11910 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11911
11912         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
11913         Allow to apply decay on score files matching a regexp.
11914
11915 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11916
11917         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
11918         compatibility in %g and %c.
11919
11920 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11921
11922         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
11923         name for only %g and %c.
11924         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
11925         of gnus-tmp-group to decoded group name.
11926         (gnus-group-make-rss-group): Exclude `/'s from group names.
11927
11928 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11929
11930         * nnrss.el (nnrss-get-encoding): Fix regexp.
11931
11932 2004-12-27  Simon Josefsson  <jas@extundo.com>
11933
11934         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
11935         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
11936         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
11937
11938 2004-12-17  Kim F. Storm  <storm@cua.dk>
11939
11940         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
11941
11942         * gnus-sum.el (gnus-summary-mode-map): Likewise.
11943
11944 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11945
11946         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
11947
11948 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11949
11950         * nnrss.el: Require rfc2047 and mml.
11951         (nnrss-file-coding-system): New variable.
11952         (nnrss-format-string): Redefine it as an inline function.
11953         (nnrss-decode-group-name): New function.
11954         (nnrss-string-as-multibyte): Remove.
11955         (nnrss-retrieve-headers): Decode group name; don't use
11956         nnrss-format-string.
11957         (nnrss-request-group): Decode group name.
11958         (nnrss-request-article): Decode group name; allow a Message-ID as
11959         well as an article number; don't use nnrss-format-string; encode a
11960         Message-ID string which may contain non-ASCII characters; use
11961         mml-to-mime to compose a MIME article.
11962         (nnrss-request-expire-articles): Decode group name.
11963         (nnrss-request-delete-group): Decode group name.
11964         (nnrss-fetch): Clarify error message.
11965         (nnrss-read-server-data): Use insert-file-contents instead of load;
11966         bind file-name-coding-system; use multibyte buffer.
11967         (nnrss-save-server-data): Bind coding-system-for-write to the
11968         value of nnrss-file-coding-system; bind file-name-coding-system;
11969         add coding cookie.
11970         (nnrss-read-group-data): Use insert-file-contents instead of load;
11971         bind file-name-coding-system; use multibyte buffer.
11972         (nnrss-save-group-data): Bind coding-system-for-write to the
11973         value of nnrss-file-coding-system; bind file-name-coding-system.
11974         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
11975         make it work with non-ASCII text.
11976         (nnrss-find-el): Make it work with old xml.el as well.
11977
11978 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11979
11980         * nnrss.el (nnrss-get-encoding): New function.
11981         (nnrss-fetch): Use unibyte buffer initially; bind
11982         coding-system-for-read while performing mm-url-insert; remove ^Ms;
11983         decode contents according to the encoding attribute.
11984         (nnrss-save-group-data): Add coding cookie.
11985         (nnrss-mime-encode-string): New function.
11986         (nnrss-check-group): Use it to encode subject and author.
11987
11988 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
11989
11990         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
11991         imaginary variable.
11992
11993 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11994
11995         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
11996         correctly even if there are wide characters.
11997
11998 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
11999
12000         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
12001         downcased symbol names; make a new cache instead of reusing
12002         bbdb-hashtable.
12003
12004 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12005
12006         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12007         concatenating segments rather than before concatenating them.
12008         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12009
12010         * message.el (message-get-reply-headers): Bind `extra'.
12011
12012 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12013
12014         * message.el (message-extra-wide-headers): New variable.
12015         (message-get-reply-headers): Use it.
12016
12017 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12018
12019         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12020         (gnus-agent-group-pathname): Ditto.
12021
12022         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12023
12024         * gnus-group.el (gnus-group-make-group): Decode group name.
12025         (gnus-group-make-rss-group): Register the group data after opening
12026         the nnrss group.
12027
12028 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12029
12030         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12031         by expiry now get marked as read.
12032
12033 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12034
12035         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12036
12037 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12038
12039         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12040         unify Latin characters in XEmacs.
12041         (mm-find-mime-charset-region): Use it.
12042
12043 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12044
12045         * gnus-util.el (gnus-delete-directory): New function.
12046
12047         * gnus-agent.el (gnus-agent-delete-group): Use it.
12048
12049         * gnus-cache.el (gnus-cache-delete-group): Use it.
12050
12051 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12052
12053         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12054         names.
12055
12056 2004-12-16  Simon Josefsson  <jas@extundo.com>
12057
12058         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12059
12060 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12061
12062         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12063
12064         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12065         (gnus-group-set-current-level): Decode group name.
12066
12067 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12068
12069         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12070         failed.
12071
12072 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12073
12074         * gnus-group.el (gnus-group-delete-group): Decode group name.
12075         (gnus-group-make-rss-group): Encode group name.
12076         (gnus-group-catchup-current): Decode group name.
12077         (gnus-group-kill-group): Decode group name.
12078
12079 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12080
12081         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12082
12083 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12084
12085         * gnus-group.el (gnus-group-make-rss-group):
12086         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12087
12088         * gnus-start.el (gnus-setup-news): Honor user's setting to
12089         gnus-message-archive-method.  Suggested by Lute Kamstra
12090         <lute@gnu.org>.
12091
12092 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12093
12094         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12095         global counterparts of the buffer-local variables.
12096
12097 2004-11-16  Romain Francoise  <romain@orebokech.com>
12098
12099         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12100         counterparts of the buffer-local variables.
12101
12102 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12103
12104         * message.el (message-forbidden-properties): Fixed typo in doc
12105         string.
12106
12107 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12108
12109         * gnus-util.el (gnus-replace-in-string): Added doc string.
12110
12111         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12112         to avoid problems when splitting mails with many recipients.
12113
12114 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12115
12116         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12117         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12118
12119 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12120
12121         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12122         if there is no hashtable in memory or file modification time is
12123         newer than cached timestamp.
12124
12125 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12126
12127         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12128         not-matching option.
12129
12130 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12131
12132         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12133         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12134         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12135         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12136         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12137         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12138
12139 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12140
12141         * message.el (message-forward-make-body-mml): Remove headers
12142         according to message-forward-ignored-headers if a message is decoded.
12143
12144 2004-12-02  Romain Francoise  <romain@orebokech.com>
12145
12146         * message.el (message-forward-make-body-plain): Always remove
12147         headers according to message-forward-ignored-headers.
12148
12149 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12150
12151         * spam.el (spam-summary-prepare-exit): Remove the
12152         gnus-summary-limit pop for now, it has problems with ham marks for
12153         me.
12154
12155 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12156
12157         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12158         correctly.
12159
12160 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12161
12162         * format-spec.el (format-spec): Message the char.
12163
12164 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12165
12166         * gnus-art.el (gnus-split-methods): Reformat comments.
12167
12168         * spam.el (spam-summary-prepare-exit): Remove article limits
12169         before exiting the summary buffer.
12170
12171 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12172
12173         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12174         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12175
12176         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12177         order to silence the byte compiler.
12178
12179         * spam.el: Fix the way to silence the byte compiler, which
12180         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12181         bbdb-search-simple, spam-BBDB-register-routine,
12182         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12183         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12184         spam-stat-buffer-is-spam, spam-stat-load,
12185         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12186         spam-stat-save and spam-stat-split-fancy.
12187
12188 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12189
12190         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12191         which may confuse users.
12192         (canlock-password-for-verify): Ditto.
12193
12194         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12195
12196         * gnus-art.el (gnus-emphasis-alist): Ditto.
12197
12198         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12199
12200         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12201
12202         * gnus-start.el (gnus-save-killed-list): Ditto.
12203
12204         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12205         (gnus-sum-thread-tree-root): Ditto.
12206         (gnus-sum-thread-tree-false-root): Ditto.
12207         (gnus-sum-thread-tree-single-indent): Ditto.
12208
12209         * message.el (message-courtesy-message): Ditto.
12210         (message-archive-note): Ditto.
12211         (message-subscribed-address-file): Ditto.
12212         (message-user-fqdn): Ditto.
12213
12214         * spam-report.el (spam-report-gmane-regex): Ditto.
12215
12216         * spam.el (spam-blackhole-good-server-regex): Ditto.
12217
12218 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12219
12220         * mml.el (mml-preview): Widen the message buffer before copying
12221         the contents to the preview buffer; sort headers before previewing.
12222
12223         * message.el (message-hidden-headers): Fix the way to avoid a bug
12224         in the `repeat' widget in Emacs 21.3 or earlier.
12225
12226 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12227
12228         * message.el (message-hidden-headers): Default to "^References:".
12229         Improve customization type.  Suggested by Reiner Steib
12230         <Reiner.Steib@gmx.de>.
12231
12232 2004-11-25  Romain Francoise  <romain@orebokech.com>
12233
12234         * message.el (message-strip-forbidden-properties): Remove check for
12235         obsolete `message-hidden' text property, hidden headers are not
12236         accessible in the buffer anymore.
12237
12238 2004-11-22  Romain Francoise  <romain@orebokech.com>
12239
12240         * message.el (message-header-format-alist): Add `From' in list
12241         so that it can be sorted.
12242         (message-fix-before-sending): Widen and sort headers before
12243         sending.
12244         (message-hide-headers): Use narrowing to hide headers by moving
12245         them to the top of the buffer and narrowing to the region
12246         underneath.
12247
12248 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12249
12250         * message.el (message-strip-forbidden-properties): Bind
12251         buffer-read-only (etc) to nil.
12252
12253 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12254
12255         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12256         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12257
12258 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12259
12260         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12261
12262 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12263
12264         * dns.el (query-dns): Use sit-for to time instead of
12265         accept-process-output, since that doesn't seem to work on udp
12266         sockets.
12267
12268 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12269
12270         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12271
12272 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12273
12274         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12275         doc string.  Improve doc string.
12276
12277 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12278
12279         * nntp.el (nntp-request-update-info): Return nil if
12280         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12281         may not call gnus-activate-group which uselessly issues the GROUP
12282         commands for all nntp groups and wastes time.  Reported by Romain
12283         Francoise <romain@orebokech.com>.
12284
12285         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12286
12287 2004-11-15  Simon Josefsson  <jas@extundo.com>
12288
12289         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12290         headers separately.
12291         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12292         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12293
12294 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12295
12296         * gnus-start.el (gnus-convert-old-newsrc):
12297         Assign legacy-gnus-agent to 5.10.7.
12298
12299 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12300
12301         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12302         start of the lines.
12303
12304 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12305
12306         * hashcash.el (hashcash-default-payment): Change default to 20.
12307         (hashcash-default-accept-payment): Change default to 20.
12308         (hashcash-process-alist): New variable.
12309         (hashcash-generate-payment-async): Add.
12310         (hashcash-already-paid-p): Add.
12311         (hashcash-insert-payment): Don't generate payments twice.
12312         (hashcash-insert-payment-async): Add.
12313         (hashcash-insert-payment-async-2): Add.
12314         (hashcash-cancel-async): Add.
12315         (hashcash-wait-async): Add.
12316         (hashcash-processes-running-p): Add.
12317         (hashcash-wait-or-cancel): Add.
12318         (mail-add-payment): New optional argument.  Conditionally start
12319         asynchronous calculation.
12320         (mail-add-payment-async): Add.
12321
12322         * message.el (message-send-mail): Wait for asynchronous hashcash
12323         results.  Don't clobber existing X-Hashcash headers.
12324         (message-setup-1): Call mail-add-payment-async when
12325         message-generate-hashcash is non-nil.
12326
12327 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12328
12329         * message.el (message-use-alternative-email-as-from): Examine the
12330         From header as well; use message-make-from in order to include a
12331         user's full name.
12332
12333 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12334
12335         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12336         default; improve customization type.
12337         (gnus-emphasis-custom-with-format): New macro.
12338         (gnus-emphasis-custom-value-to-external): New function.
12339         (gnus-emphasis-custom-value-to-internal): New function.
12340
12341 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12342
12343         * dns.el (query-dns): Resolve reverse addresses.
12344
12345 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12346
12347         * gnus-group.el (gnus-group-get-new-news): Use it.
12348
12349         * gnus-start.el (gnus-check-reasonable-setup): New function.
12350
12351 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12352
12353         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12354         "Args out of range" error.  Reported by Arnaud Giersch
12355         <arnaud.giersch@free.fr>.
12356
12357 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12358
12359         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12360
12361 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12362
12363         * spam.el (spam group): Add :version.
12364
12365         * pgg-def.el (pgg group): Add :version.
12366
12367 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12368
12369         * gnus-art.el (gnus-article-edit-article): Don't associate the
12370         article buffer with a draft file.  This is a temporary measure
12371         against the 2004-08-22 change to gnus-article-edit-mode.
12372
12373 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12374
12375         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12376         (html2text-format-tags): Remove unused variable `attr'.
12377
12378 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12379
12380         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12381
12382         * tls.el (tls-process-connection-type, tls-success)
12383         (tls-certtool-program): Add :version.
12384
12385         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12386         (starttls-extra-arguments, starttls-process-connection-type)
12387         (starttls-connect, starttls-failure, starttls-success): Add :version.
12388
12389         * spam-stat.el (spam-stat): Add :version.
12390
12391         * sieve.el (sieve): Add :version.
12392
12393         * sha1.el (sha1): Add :version.
12394         (sha1-use-external): Remove redundant version.
12395
12396         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12397         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12398         (nnmail-split-fancy-match-partial-words)
12399         (nnmail-split-lowercase-expanded): Add :version.
12400
12401         * nndiary.el (nndiary): Add :version.
12402
12403         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12404
12405         * mml-sec.el (mml-default-sign-method)
12406         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12407         Add :version.
12408
12409         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12410
12411         * mm-url.el (mm-url-use-external, mm-url-program)
12412         (mm-url-arguments): Add :version.
12413
12414         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12415         (mm-attachment-file-modes, mm-decrypt-option)
12416         (mm-w3m-safe-url-regexp): Add :version.
12417
12418         * message.el (message-cite-prefix-regexp)
12419         (message-sendmail-envelope-from, message-minibuffer-local-map)
12420         (message-user-fqdn, message-completion-alist): Add :version.
12421
12422         * gnus-win.el (gnus-configure-windows-hook)
12423         (gnus-use-frames-on-any-display): Add :version.
12424
12425         * gnus-art.el (gnus-article-address-banner-alist)
12426         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12427         (gnus-treat-from-picon, gnus-treat-mail-picon)
12428         (gnus-treat-x-pgp-sig): Add :version.
12429
12430         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12431         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12432         (gnus-summary-article-delete-hook)
12433         (gnus-summary-display-while-building): Add :version.
12434
12435         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12436         (gnus-get-top-new-news-hook): Add :version.
12437
12438         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12439         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12440
12441         * gnus-registry.el (gnus-registry): Add :version.
12442
12443         * gnus-spec.el (gnus-use-correct-string-widths)
12444         (gnus-make-format-preserve-properties): Add :version.
12445
12446         * gnus.el (gnus-group-charter-alist)
12447         (gnus-group-fetch-control-use-browse-url)
12448         (gnus-install-group-spam-parameters): Add :version.
12449
12450         * gnus-diary.el (gnus-diary): Add :version.
12451
12452         * gnus-delay.el (gnus-delay): Add :version.
12453
12454         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12455         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12456         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12457         Add :version.
12458
12459         * gnus-agent.el (gnus-agent-max-fetch-size)
12460         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12461         (gnus-agent-prompt-send-queue): Add :version.
12462
12463         * deuglify.el (gnus-outlook-deuglify): Add :version.
12464
12465         * html2text.el: Beautify code.  Improve doc strings.  Some
12466         checkdoc cleanup.
12467         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12468
12469 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12470
12471         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12472
12473 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12474
12475         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12476         when package is loaded.
12477
12478         * spam.el (spam-summary-score-preferred-header): Add global preference
12479         for people who want to override the default SpamAssassin over
12480         Bogofilter preference (when both are set).
12481         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12482         (spam-user-format-function-S): Check
12483         spam-summary-score-preferred-header.
12484         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12485         (spam-user-format-function-S): Format the score correctly.
12486
12487 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12488
12489         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12490         signature file.  Suggested by Manoj Srivastava
12491         <srivasta@golden-gryphon.com>.
12492
12493         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12494         iso-2022-jp even in the Japanese language environment.
12495         Suggested by Jason Rumney <jasonr@gnu.org>.
12496
12497 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12498
12499         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12500         use the same characters as the dummy marks; make it free from
12501         getting affected by the language environment.
12502         (gnus-summary-read-group-1): Update mark positions only when the
12503         format spec is updated.
12504
12505         * gnus-spec.el (gnus-update-format-specifications): Return a list
12506         of updated types.
12507
12508 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12509
12510         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12511         of boundp to check if display-warning is available.
12512
12513 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12514
12515         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12516
12517 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12518
12519         * nnspool.el (nnspool-spool-directory): Use news-path if the
12520         news-directory variable is not bound.
12521
12522         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12523         function instead of display-warning if it is not available.
12524
12525 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12526
12527         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12528         v5-10: Use `point-at-bol'.
12529
12530 2004-10-26  Simon Josefsson  <jas@extundo.com>
12531
12532         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12533         <chenggao@gmail.com>.
12534
12535 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12536
12537         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12538         instead.
12539
12540 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12541
12542         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12543         to remove a server from the nnimap-server-buffer-alist.
12544         (nnimap-open-connection, nnimap-close-server): Use it.
12545
12546         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12547
12548 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12549
12550         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12551         running the major-mode function.
12552
12553 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12554
12555         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12556         dummy marks in the right way.
12557
12558 2004-10-18  David Edmondson  <dme@dme.org>
12559
12560         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12561         excessively.
12562
12563 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12564
12565         * gnus-util.el (gnus-split-references): Accept a nil references
12566         string and go on blissfully.
12567
12568         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12569         cases where the references string is non-nil but has no references.
12570
12571         * encrypt.el: Add autoload tags.
12572
12573         * spam.el (spam-resolve-registrations-routine): Remove article
12574         from unregistration list too.  Reported by David Hanak
12575         <dhanak@isis.vanderbilt.edu>
12576
12577 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12578
12579         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12580         nil.  Changed custom type.
12581
12582 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12583
12584         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12585
12586         * gnus-sum.el (gnus-summary-move-article): Use it.
12587
12588 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12589
12590         * encrypt.el: Add autoload cookies.
12591
12592         * spam.el (spam-backend-article-list-property)
12593         (spam-backend-get-article-todo-list)
12594         (spam-backend-put-article-todo-list)
12595         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12596         Resolve registrations separately.
12597         (spam-register-routine): Format comments.
12598         (spam-unregister-routine, spam-register-routine): Always call with
12599         specific-articles, no default list.
12600         (spam-summary-prepare-exit): Use the spam-classifications function.
12601
12602         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12603         gnus-encrypt.el.
12604
12605         * encrypt.el: Copied from gnus-encrypt.el.
12606
12607         * gnus-encrypt.el: Commented that it's obsolete.
12608
12609 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12610
12611         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12612         (gnus-score-save): Use it.
12613
12614         * message.el (message-bury): Use `window-dedicated-p'.
12615
12616 2004-10-15  Simon Josefsson  <jas@extundo.com>
12617
12618         * pop3.el (top-level): Don't require nnheader.
12619         (pop3-read-timeout): Add.
12620         (pop3-accept-process-output): Add.
12621         (pop3-read-response, pop3-retr): Use it.
12622
12623 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12624
12625         * spam.el (spam-register-routine): Move comment.
12626         (spam-verify-bogofilter): Use 'unknown for the initial
12627         spam-bogofilter-valid state, not 'never.
12628
12629         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12630         for netrc-machine.
12631
12632         * nnimap.el (nnimap-open-connection): Use
12633         netrc-machine-user-or-password.
12634
12635 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12636
12637         * gnus-registry.el (gnus-registry-unload-hook):
12638         Set as a variable with add-hook.
12639
12640         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12641         of news-path.
12642
12643         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12644
12645         * spam.el: Delete duplicate `provide'.
12646         (spam-unload-hook): Set as a variable with add-hook.
12647
12648 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12649
12650         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12651         in the doc string.
12652
12653         * message.el (message-ignored-news-headers)
12654         (message-ignored-supersedes-headers)
12655         (message-ignored-resent-headers)
12656         (message-forward-ignored-headers): Improve custom type.
12657
12658 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12659
12660         * message.el (message-tokenize-header): Fix 2004-09-06 change
12661         which used point-min in the wrong place.
12662
12663 2004-10-12  Simon Josefsson  <jas@extundo.com>
12664
12665         * tls.el (tls-certtool-program): New variable.
12666         (tls-certificate-information): New function, based on
12667         ssl-certificate-information.
12668
12669 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12670
12671         * compface.el: Move the version of ELisp-based uncompface program
12672         to the contrib directory because of the copyright problem.
12673
12674 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12675
12676         * message.el (message-kill-buffer): Raise the current frame.
12677
12678 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12679
12680         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12681
12682         * gnus.el (message-y-or-n-p): Autoload.
12683
12684         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12685         (pop3-password-required, pop3-authentication-scheme)
12686         (pop3-leave-mail-on-server): Made customizable.
12687         (pop3): New custom group.
12688         (pop3-retr): Remove `sleep-for' statements.
12689         Suggested by Dave Love <fx@gnu.org>.
12690
12691         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12692         Windows/DOS.
12693
12694         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12695         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12696         Dave Love <fx@gnu.org>.
12697
12698         * mml.el (mml-minibuffer-read-disposition): Require match.
12699         Suggested by Dave Love <fx@gnu.org>.
12700
12701 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12702
12703         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12704         doc string.
12705
12706 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12707
12708         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12709
12710 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12711
12712         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12713         instead of calling `mm-insert-inline', to decode text/* parts
12714         before displaying them.
12715
12716 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12717
12718         * mm-uu.el (mm-uu-text-plain-type): New variable.
12719         (mm-uu-pgp-signed-extract-1): Use it.
12720         (mm-uu-pgp-encrypted-extract-1): Use it.
12721         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12722         bind mm-uu-text-plain-type with that value.
12723         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12724         mm-uu-dissect.
12725
12726 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12727
12728         * gnus-group.el (gnus-update-group-mark-positions):
12729         * gnus-sum.el (gnus-update-summary-mark-positions):
12730         * message.el (message-check-news-body-syntax):
12731         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12732         of string-as-multibyte.
12733
12734 2004-10-05  Juri Linkov  <juri@jurta.org>
12735
12736         * gnus-group.el (gnus-update-group-mark-positions):
12737         * gnus-sum.el (gnus-update-summary-mark-positions):
12738         * message.el (message-check-news-body-syntax):
12739         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12740         8-bit unibyte values to a multibyte string for search functions.
12741
12742 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12743
12744         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12745         (mm-uu-dissect-text-parts): New function.
12746
12747         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12748         dissect text parts.
12749
12750         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12751         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12752
12753         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12754
12755         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12756         gnus-current-topics instead of gnus-current-topic.
12757
12758 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12759
12760         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12761
12762 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12763
12764         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12765         where approriate.
12766
12767         * nnml.el (nnml-generate-active-info): do.
12768
12769         * nndiary.el (nndiary-generate-active-info): do.
12770
12771         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12772         (gnus-topic-move): do.
12773
12774         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12775         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12776
12777         * gnus-srvr.el (gnus-server-prepare)
12778         (gnus-server-open-all-servers): do.
12779
12780         * gnus-msg.el (gnus-summary-cancel-article)
12781         (gnus-summary-resend-message)
12782         (gnus-summary-mail-crosspost-complaint): do.
12783
12784         * gnus-move.el (gnus-change-server): do.
12785
12786         * gnus-group.el (gnus-group-unmark-all-groups)
12787         (gnus-group-set-current-level): do.
12788
12789 2004-10-04  Simon Josefsson  <jas@extundo.com>
12790
12791         * message.el (message-generate-hashcash): Doc fix.
12792
12793 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12794
12795         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12796         avoid infinite recursion via gnus-get-function.
12797
12798 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12799
12800         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12801
12802         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12803
12804         * nnmail.el (nnmail-split-history): do.
12805
12806         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12807         (nnml-request-delete-group): do.
12808
12809         * nnslashdot.el (nnslashdot-read-groups): do.
12810
12811         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12812         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12813
12814         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12815         (nnspool-sift-nov-with-sed): Use last.
12816         (nnspool-retrieve-headers-with-nov): Use mapc.
12817         (nnspool-request-newgroups): Use dolist.
12818         (nnspool-request-group): Use last.
12819
12820         * nntp.el (nntp-read-server-type): Use dolist.
12821
12822         * nnvirtual.el (nnvirtual-create-mapping)
12823         (nnvirtual-update-read-and-marked): Use dolist.
12824         (nnvirtual-convert-headers): Simplify.
12825
12826 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12827
12828         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12829         support for sync'ing tick marks.
12830
12831 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12832
12833         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12834         there's no visible header.
12835
12836 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12837
12838         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12839         necessary, pass full group name to gnus-request-set-marks.
12840
12841 2004-10-01  Simon Josefsson  <jas@extundo.com>
12842
12843         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12844         acroread.
12845
12846 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12847
12848         * spam-report.el (spam-report-gmane): Fix interactive.
12849
12850         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12851
12852         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12853         when writing file.
12854         (gnus-agent-synchronize-flags): Don't default to being
12855         interactive.
12856
12857 2004-09-30  Simon Josefsson  <jas@extundo.com>
12858
12859         * message.el (message-generate-hashcash): Add.
12860         (message-send-mail): Use it, call mail-add-payment.
12861
12862 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12863
12864         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12865
12866 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12867
12868         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12869         gnus-requst-update-info with explicit code to sync the in-memory
12870         info read flags with the marks being sync'd to the backend.
12871
12872         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12873
12874 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12875
12876         * spam.el (spam-verify-bogofilter): Add new function.
12877         (spam-check-bogofilter)
12878         (spam-bogofilter-register-with-bogofilter): Use it.
12879         (spam-verify-bogofilter): Add small fixes.
12880
12881 2004-09-28  Simon Josefsson  <jas@extundo.com>
12882
12883         * hashcash.el (hashcash-generate-payment): Revert.
12884
12885 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12886
12887         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
12888         gnus-extract-references instead of gnus-split-references.
12889
12890         * gnus-util.el (gnus-extract-references): Add new function, analogous
12891         to gnus-split-references but extracts only the message-ID without
12892         anything extra.
12893
12894         * hashcash.el (hashcash-generate-payment)
12895         (hashcash-check-payment): Do the right thing if hashcash-path is
12896         nil (because the hashcash program could not be found).
12897
12898         * spam.el (spam-use-hashcash): Remove comment.
12899
12900 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
12901
12902         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
12903         (gnus-cache-enter-article, gnus-cache-remove-article)
12904         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
12905
12906         * gnus-async.el (gnus-async-prefetch-remove-group): do.
12907
12908         * gnus-art.el (article-hide-boring-headers)
12909         (article-translate-strings, article-display-face)
12910         (gnus-article-mime-match-handle-first)
12911         (gnus-article-highlight-headers)
12912         (gnus-article-add-buttons-to-head): do.
12913
12914 2004-09-27  Simon Josefsson  <jas@extundo.com>
12915
12916         * hashcash.el: New version, from
12917         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
12918         ../contrib/.
12919
12920 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12921
12922         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
12923
12924 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
12925
12926         * gnus-dup.el (gnus-dup-open): Use mapc.
12927         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
12928
12929         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
12930         Reported by Stefan Wiens <s.wi@gmx.net>.
12931
12932         * gnus.el (gnus-shutdown): Use dolist.
12933
12934         * gnus-undo.el (gnus-undo): Use mapc.
12935
12936         * nnrss.el (nnrss-generate-active): do.
12937
12938         * message.el (message-cite-original-without-signature)
12939         (message-cite-original): Use mapc.
12940         (message-do-actions, message-make-forward-subject): Use dolist.
12941
12942 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12943
12944         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
12945         deletion to remove entire duplicate line.  Fixes merged article
12946         number bug.
12947
12948 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12949
12950         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
12951         servers that are offline.  Avoids having gnus-agent-toggle-plugged
12952         first ask if you want to open a server and then, even when you
12953         responded with no, asking if you want to synchronize the server's
12954         flags.
12955         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
12956         multi-line expressions.
12957         (gnus-agent-synchronize-group-flags): New internal function.
12958         Updates marks in memory (in the info structure) AND in the
12959         backend.
12960
12961         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
12962
12963         * nnagent.el (nnagent-request-set-mark): Use
12964         gnus-agent-synchronize-group-flags, not backend's request-set-mark
12965         method, to ensure that synchronization updates marks in the
12966         backend and in the info (in memory) structure.
12967
12968 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12969
12970         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
12971         convention fully; don't miss the root article of a thread; make
12972         the X-Draft-From header with correct article numbers.
12973
12974 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
12975
12976         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
12977         unless plugged.  Disable the agent so that an open failure causes
12978         an error.
12979
12980         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
12981         Reverted 2004-09-21 change.  The backend must be opened while
12982         synchronizing flags even when the backend stores the flags
12983         locally.
12984
12985 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
12986
12987         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
12988         in `header' match.  Reported by Svend Tollak Munkejord.
12989
12990         * message.el (message-cite-original): Fix use of
12991         `message-cite-articles-with-x-no-archive'.
12992
12993 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12994
12995         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
12996         (gnus-window-to-buffer): Ditto.
12997
12998         * mml.el (mml-preview-buffer): New variable.
12999         (mml-preview): Manage window layout with gnus-buffer-configuration.
13000
13001         * gnus-msg.el (gnus-setup-message): Put article numbers into the
13002         X-Draft-From header even if those articles aren't quoted.
13003
13004 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
13005
13006         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
13007         (gnus-request-set-mark, gnus-request-update-mark): Use new
13008         g-s-t-u-l-m to decide to use backend even when unplugged.
13009
13010 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13011
13012         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
13013         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
13014
13015 2004-09-20  Simon Josefsson  <jas@extundo.com>
13016
13017         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13018         "utf-16-le".
13019
13020 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13021
13022         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13023
13024 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13025
13026         * uudecode.el (uudecode-use-external): Add :version.
13027
13028         * smime.el (smime-CA-file, smime-encrypt-cipher)
13029         (smime-dns-server): Add :version.
13030
13031         * smiley.el (gnus-smiley-file-types): Add :version.
13032
13033         * sha1.el (sha1-use-external): Add :version.
13034
13035         * pgg-def.el (pgg-query-keyserver): Add :version.
13036
13037         * nnmail.el (nnmail-fancy-expiry-targets)
13038         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13039         Add :version.
13040
13041         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13042         (nnimap-retrieve-groups-asynchronous): Add :version.
13043         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13044
13045         * mml.el (mml-content-disposition-parameters)
13046         (mml-insert-mime-headers-always): Add :version.
13047
13048         * mm-util.el (mm-coding-system-priorities): Add :version.
13049
13050         * mm-decode.el (mm-inline-text-html-with-images)
13051         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13052         (mm-verify-option): Add :version.
13053         (mm-text-html-renderer): Change :version.
13054
13055         * message.el (message-fcc-externalize-attachments)
13056         (message-required-headers, message-draft-headers)
13057         (message-subject-trailing-was-query)
13058         (message-subject-trailing-was-ask-regexp)
13059         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13060         (message-mark-insert-end, message-archive-header)
13061         (message-archive-note, message-cross-post-default)
13062         (message-cross-post-note, message-followup-to-note)
13063         (message-cross-post-note-function, message-use-mail-followup-to)
13064         (message-subscribed-address-functions)
13065         (message-subscribed-address-file, message-subscribed-addresses)
13066         (message-subscribed-regexps, message-allow-no-recipients)
13067         (message-yank-cited-prefix, message-signature-insert-empty-line)
13068         (message-hidden-headers, message-hierarchical-addresses)
13069         (message-mail-user-agent, message-use-idna)
13070         (message-valid-fqdn-regexp)
13071         (message-strip-special-text-properties, message-header-synonyms)
13072         (message-beginning-of-line, message-tab-body-function): Add :version.
13073         (message-insert-canlock, message-wide-reply-confirm-recipients):
13074         Change :version.
13075
13076         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13077         and :version.
13078         (mail-source-delete-old-incoming-confirm)
13079         (mail-source-movemail-program): Add :version.
13080
13081         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13082         (gnus-agent-cache, gnus-agent): Change :version.
13083
13084         * gnus-util.el (gnus-use-byte-compile): Change :version.
13085
13086         * gnus-sum.el (gnus-summary-make-false-root-always)
13087         (gnus-summary-default-high-score)
13088         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13089         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13090         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13091         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13092         (gnus-sum-thread-tree-single-indent)
13093         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13094         (gnus-sum-thread-tree-leaf-with-other)
13095         (gnus-sum-thread-tree-single-leaf): Add :version.
13096         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13097         (gnus-article-loose-mime): Change :version.
13098
13099         * gnus-start.el (gnus-backup-startup-file)
13100         (gnus-save-startup-file-via-temp-buffer): Add :version.
13101
13102         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13103         (gnus-server-offline-face): Add :version.
13104
13105         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13106
13107         * gnus-msg.el (gnus-gcc-externalize-attachments)
13108         (gnus-debug-files, gnus-debug-exclude-variables)
13109         (gnus-discouraged-post-methods): Change :version.
13110         (gnus-confirm-mail-reply-to-news)
13111         (gnus-confirm-treat-mail-like-news): Add :version.
13112
13113         * gnus-int.el (gnus-server-unopen-status): Add :version.
13114
13115         * gnus-group.el (gnus-group-jump-to-group-prompt)
13116         (gnus-large-ephemeral-newsgroup)
13117         (gnus-fetch-old-ephemeral-headers): Add :version.
13118
13119         * gnus-fun.el (gnus-x-face-directory)
13120         (gnus-convert-pbm-to-x-face-command)
13121         (gnus-convert-image-to-x-face-command)
13122         (gnus-convert-image-to-face-command): Add :version.
13123
13124         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13125
13126         * gnus-cite.el (gnus-cite-blank-line-after-header)
13127         (gnus-article-boring-faces): Add :version.
13128
13129         * gnus-art.el (gnus-buttonized-mime-types)
13130         (gnus-inhibit-mime-unbuttonizing)
13131         (gnus-treat-display-face)
13132         (gnus-treat-body-boundary): Change :version.
13133         (gnus-body-boundary-delimiter, gnus-picon-databases)
13134         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13135         (gnus-treat-date-english, gnus-treat-fold-headers)
13136         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13137         (gnus-treat-mail-picon, gnus-treat-wash-html)
13138         (gnus-article-encrypt-protocol)
13139         (gnus-use-idna, gnus-article-over-scroll)
13140         (gnus-mime-display-multipart-alternative-as-mixed)
13141         (gnus-mime-display-multipart-related-as-mixed)
13142         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13143         (gnus-ctan-url, gnus-button-ctan-handler)
13144         (gnus-button-handle-ctan-bogus-regexp)
13145         (gnus-button-ctan-directory-regexp)
13146         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13147         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13148         (gnus-button-man-level, gnus-button-emacs-level)
13149         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13150
13151         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13152         (gnus-agent-go-online): Change :version.
13153         (gnus-agent-expire-unagentized-dirs)
13154         (gnus-agent-auto-agentize-methods): Add :version.
13155
13156         * flow-fill.el (fill-flowed-display-column)
13157         (fill-flowed-encode-column): Add :version.
13158
13159         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13160         (gnus-outlook-deuglify-unwrap-max)
13161         (gnus-outlook-deuglify-cite-marks)
13162         (gnus-outlook-deuglify-unwrap-stop-chars)
13163         (gnus-outlook-deuglify-no-wrap-chars)
13164         (gnus-outlook-deuglify-attrib-cut-regexp)
13165         (gnus-outlook-deuglify-attrib-verb-regexp)
13166         (gnus-outlook-deuglify-attrib-end-regexp)
13167         (gnus-outlook-display-hook): Add :version.
13168
13169         * binhex.el (binhex-use-external): Add :version.
13170
13171 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13172
13173         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13174         and `invisible'.
13175
13176 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13177
13178         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13179         in gnus-registry-trim.
13180
13181 2004-09-13  Simon Josefsson  <jas@extundo.com>
13182
13183         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13184
13185         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13186
13187         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13188         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13189         <yamaoka@jpl.org>.
13190         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13191         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13192         <yamaoka@jpl.org>.
13193
13194         * sieve.el (sieve-manage-mode): Ditto.
13195
13196 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13197
13198         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13199
13200 2004-09-11  Simon Josefsson  <jas@extundo.com>
13201
13202         * dns-mode.el: Add.
13203
13204         * mm-view.el (mm-display-dns-inline): Add.
13205
13206         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13207         (mm-automatic-display): Ditto.
13208
13209         * mailcap.el (mailcap-mime-data): Add text/dns.
13210         (mailcap-mime-extensions): Map .soa to text/dns.
13211
13212 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13213
13214         * gnus-art.el (article-decode-mime-words, article-babel)
13215         (gnus-article-highlight-signature, gnus-article-add-buttons)
13216         (gnus-signature-toggle): Remove unnecessary bindings of
13217         `inhibit-read-only' inherited from v5.10 merge.
13218
13219 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13220
13221         * nntp.el (nntp): New customization group.
13222         (nntp-authinfo-file): Add customization group.
13223
13224         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13225
13226         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13227
13228         * gnus.el (to-address, to-list, subscribed)
13229         (large-newsgroup-initial): Ditto.
13230
13231         * flow-fill.el (fill-flowed-display-column)
13232         (fill-flowed-encode-column): Ditto.
13233
13234 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13235
13236         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13237         Use point-min rather than 1.
13238         (message-send-mail): Use buffer-size rather than point-max.
13239
13240         * gnus-sum.el (gnus-summary-search-article-forward):
13241         Signal a specific `search-failed' rather than a generic `error'.
13242
13243         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13244         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13245         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13246
13247 2004-09-10  Simon Josefsson  <jas@extundo.com>
13248
13249         * nndb.el (require): Remove tcp and duplicate cl.
13250
13251 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13252
13253         * gnus-agent.el (directory-files-and-attributes): Move forward.
13254
13255 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13256
13257         * gnus-agent.el (directory-files-and-attributes): Optionally
13258         defined to support XEmacs.
13259
13260 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13261
13262         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13263         to avoid run-time CL dependencies.
13264         (gnus-agent-unfetch-articles): New function.
13265         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13266         article numbers even when local .overview file is missing.
13267         (gnus-agent-read-article-number): New function.  Only accepts
13268         27-bit article numbers.
13269         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13270         gnus-agent-read-article-number.
13271         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13272         from backend while recognizing that article numbers in .overview
13273         must be valid.
13274         (gnus-agent-update-files-total-fetched-for): Use
13275         directory-files-and-attributes to improve performance.
13276         * gnus-int.el (gnus-request-move-article): Use
13277         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13278         improve performance.
13279
13280         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13281         some users confused by references to .newsrc when they only have a
13282         .newsrc.eld file.
13283         (gnus-convert-mark-converter-prompt)
13284         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13285         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13286         New function.  Used internally to only display 'gnus converting
13287         files' message when actually necessary.
13288
13289         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13290         methods now autoloaded.
13291
13292 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13293
13294         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13295         identifiers.
13296
13297 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13298
13299         * gnus-picon.el: Fix indentation and closing parenthesis.
13300
13301 2004-09-01  Simon Josefsson  <jas@extundo.com>
13302
13303         * message.el (message-canlock-generate): Require sha1, not
13304         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13305         to require within a function.  Sadly, if sha1.el isn't loaded, the
13306         let binding in m-c-g will hide the defcustom definition, which is
13307         bad.)
13308
13309         * canlock.el: Require sha1, not sha1-el.
13310
13311         * message.el: Don't autoload sha1 (there is a autoload cookie in
13312         sha1.el).
13313
13314         * sha1-el.el: Renamed to sha1.el.
13315
13316 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13317
13318         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13319
13320 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13321
13322         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13323
13324 2004-08-30  Kim F. Storm  <storm@cua.dk>
13325
13326         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13327
13328         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13329         Add :group 'nnimap.
13330
13331 2004-08-30  Andreas Schwab  <schwab@suse.de>
13332
13333         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13334         ?* and ?\;.
13335
13336         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13337         and ?\' to symbol instead of whitespace.
13338
13339 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13340
13341         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13342
13343         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13344         instead of re-search-forward.
13345
13346         * gnus-uu.el (gnus-uu-save-article): Ditto.
13347         (gnus-uu-post-encode-uuencode): Ditto.
13348
13349         * html2text.el (html2text-clean-list-items): Ditto.
13350         (html2text-clean-dtdd): Ditto.
13351         (html2text-format-tags): Ditto.
13352
13353         * message.el (message-send-mail-with-sendmail): Fix regexp.
13354         (message-fill-field-general): Use search-forward instead of
13355         re-search-forward.
13356         (unbold-region): Ditto.
13357
13358         * nnrss.el (nnrss-request-article): Ditto.
13359
13360         * nnslashdot.el (nnslashdot-request-article): Ditto.
13361
13362         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13363
13364         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13365         "Unrecognized menu descriptor" error in XEmacs.
13366
13367 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13368
13369         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13370         parent article of a sparse article in the thread hashtb.
13371
13372 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13373
13374         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13375         (nnmail-expand-newtext): Lowercase expanded entries if
13376         nnmail-split-lowercase-expanded is non-nil.
13377
13378 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13379
13380         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13381
13382         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13383         of gnus-tmp-news-method into string under XEmacs.  It will be
13384         passed to gnus-correct-length which takes only a string argument.
13385
13386 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13387
13388         * gnus-util.el (gnus-bind-print-variables): New macro.
13389         (gnus-prin1): Use it.
13390         (gnus-prin1-to-string): Use it.
13391         (gnus-pp): New function.
13392         (gnus-pp-to-string): New function.
13393
13394         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13395         Replace pp-to-string with gnus-pp-to-string.
13396         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13397         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13398         * gnus-msg.el (gnus-debug): Ditto.
13399         * gnus-score.el (gnus-score-save): Ditto.
13400         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13401         gnus-pp-to-string.
13402         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13403         with gnus-pp.
13404         * score-mode.el (gnus-score-pretty-print): Ditto.
13405         * webmail.el (webmail-debug): Ditto.
13406
13407 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13408
13409         * gnus-art.el (article-display-face, article-display-x-face):
13410         Use buffer-read-only.
13411
13412 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13413
13414         * gnus-art.el (article-hide-list-identifiers):
13415         Bind inhibit-read-only as t.
13416
13417 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13418
13419         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13420
13421 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13422
13423         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13424         (gnus-narrow-to-page): Don't assume point-min == 1.
13425         (gnus-article-edit-mode): Derive from message-mode.
13426
13427         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13428         point-min == 1.
13429
13430         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13431         Disable incorrect use of `assert'.
13432
13433         * message.el (message-mode): Set comment-start-skip.
13434
13435
13436 2004-08-22  Sam Steingold  <sds@gnu.org>
13437
13438         * pop3.el (pop3-leave-mail-on-server): New user variable.
13439         (pop3-movemail): Delete mail only when it is nil.
13440
13441 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13442
13443         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13444
13445         * mml.el (mml-preview): Use `pop-to-buffer'.
13446
13447         * message.el (message-goto-mail-followup-to): Insert after "To".
13448         (message-carefully-insert-headers): Add comment.
13449
13450         * gnus.el: Remove unused variable `gnus-article-check-size'.
13451
13452         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13453
13454         * gnus-art.el (gnus-button-alist): Improve
13455         `gnus-button-handle-library' entry.
13456
13457 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13458
13459         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13460         downcase, since XEmacs capitalizes error messages differently.
13461
13462 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13463
13464         * nntp.el: Add (require 'gnus) due to reference to
13465         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13466
13467 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13468
13469         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13470         `mm-fill-flowed'.
13471
13472         * mm-decode.el (mm-dissect-singlepart): Check it.
13473
13474 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13475
13476         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13477         'imap' for netrc parsing.
13478
13479 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13480
13481         * mailcap.el (mailcap-mime-data): Mark as risky.
13482
13483 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13484
13485         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13486         may be included in the encoded word.
13487         (rfc2047-encode): Don't append a space if the encoded word
13488         includes close parenthesis.
13489
13490 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13491
13492         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13493         of text within parentheses.
13494
13495 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13496
13497         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13498         (gnus-encrypt-write-file-contents): Make the password key the file
13499         name PLUS the cipher, not just the cipher.  Also remove failed
13500         passwords from the cache.
13501
13502 2004-08-06  Simon Josefsson  <jas@extundo.com>
13503
13504         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13505         fix.
13506
13507 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13508
13509         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13510         LWSP.
13511
13512 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13513
13514         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13515         to append in-reply-to: data to the references: header.
13516
13517         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13518         (netrc-parse): Use gnus-encrypt.el functions.
13519
13520         * gnus-encrypt.el: Add new file for encryption support; currently
13521         does only a few GPG ciphers and an internal XOR cipher.
13522
13523         * password.el: Add comments on using password-read-and-add.
13524         (password-read-and-add): Add function to read and add the
13525         password to the cache at once.
13526
13527 2004-07-28  Simon Josefsson  <jas@extundo.com>
13528
13529         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13530         parameter (but don't use it, for now).
13531
13532         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13533         instead of hard coding to nil.
13534
13535 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13536
13537         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13538         as mm-inline-image-xemacs does.
13539
13540 2004-07-26  Simon Josefsson  <jas@extundo.com>
13541
13542         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13543         Revert part of 2004-07-17 change below.
13544
13545 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13546
13547         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13548         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13549
13550 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13551
13552         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13553         quotes that actually start with ">" at the beginning of the
13554         lines.
13555
13556 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13557
13558         * rfc2047.el (rfc2047-encode-region): Fix last change.
13559         (rfc2047-encode-parameter): Remove useless concat.
13560
13561 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13562
13563         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13564         encode special characters; fix some kind of misconfigured headers;
13565         signal a real error if debug-on-quit or debug-on-error is non-nil.
13566         (rfc2047-encode-max-chars): New variable.
13567         (rfc2047-encode-1): Use it.
13568         (rfc2047-encode-parameter): New function.
13569
13570         * mml.el (mml-insert-parameter): Remove an excessive space.
13571
13572 2004-07-17  Simon Josefsson  <jas@extundo.com>
13573
13574         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13575         Kai Grossjohann <kai@emptydomain.de>.
13576         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13577         (gnus-group-make-menu-bar): Ditto.
13578
13579         * gnus-util.el (gnus-group-server): Add.
13580
13581 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13582
13583         * message.el (message-clone-locals): Clone sendmail and smtp
13584         variables.
13585
13586 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13587
13588         * rfc2047.el (rfc2047-encode-region): Fix last change.
13589
13590 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13591
13592         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13593         characters as non-special.
13594
13595 2004-07-09  Simon Josefsson  <jas@extundo.com>
13596
13597         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13598         Users will lose all flag changes made while unplugged with
13599         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13600         good default.  See numerous reports on ding mailing list.
13601
13602 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13603
13604         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13605         add generate-head-function and generate-article-function to the
13606         rfc822-forward entry.
13607         (nndoc-rfc822-forward-generate-article): New function.
13608         (nndoc-rfc822-forward-generate-head): New function.
13609
13610         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13611
13612 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13613
13614         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13615         respect display group parameter and gnus-summary-expunge-below.
13616         (gnus-articles-to-read): Remove unused reference to display group
13617         parameter.
13618
13619 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13620
13621         * nnheader.el (nnheader-uniquify-message-id): New experimental
13622         variable.
13623         (nnheader-nov-read-message-id): Use it.
13624
13625         * spam-report.el (spam-report-gmane): Add interactive.
13626
13627 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13628
13629         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13630         qp-or-base64 for the application/* types.
13631
13632 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13633
13634         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13635
13636 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13637
13638         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13639         trim value.
13640
13641 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13642
13643         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13644         New macro and function.
13645         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13646
13647 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13648
13649         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13650         after-load-alist.
13651
13652 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13653
13654         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13655         update info that isn't there.
13656
13657 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13658
13659         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13660         entry.
13661
13662 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13663
13664         * mm-view.el (mm-inline-render-with-function): Use multibyte
13665         buffer; decode html source by charset.
13666
13667         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13668
13669         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13670         Mule-UCS is loaded under XEmacs.
13671         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13672
13673 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13674
13675         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13676
13677 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13678
13679         * mm-util.el (mm-coding-system-p): Return a coding-system.
13680         (mm-mime-mule-charset-alist): Use shift_jis instead of
13681         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13682         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13683         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13684         instead of japanese-shift-jis and iso-latin-1 respectively in
13685         order to share the default value with both Emacs and XEmacs-mule.
13686         (mm-mule-charset-to-mime-charset): Make
13687         mm-coding-system-priorities effective.
13688         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13689         while predicating of candidates upon the priorities.
13690
13691 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13692
13693         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13694         gnus-uu-invert-processable.
13695
13696         * gnus.el: Autoload gnus-uu-invert-processable.
13697
13698 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13699
13700         * mm-util.el (mm-with-multibyte-buffer): New macro.
13701
13702         * rfc2047.el (rfc2047-encode-string): Use it.
13703         (rfc2047-encode-region): Move point to the end of the region after
13704         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13705
13706 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13707
13708         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13709         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13710
13711 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13712
13713         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13714         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13715         Karl Chen <quarl@nospam.quarl.org>.
13716
13717 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13718
13719         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13720         invalid addresses.
13721
13722 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13723
13724         * spam.el: Change section markers, revise TODO list.
13725         (spam-backends): Make new master list of all installed backends.
13726         (spam-summary-exit-behavior): Add new variable to determine how
13727         messages moves are done at summary exit.
13728         (spam-move-spam-nonspam-groups-only)
13729         (spam-process-ham-in-nonham-groups)
13730         (spam-process-ham-in-spam-groups): Remove variables, the
13731         spam-summary-exit-behavior variable should be used to manage this
13732         behavior.
13733         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13734         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13735         and spam-old-spam-articles.
13736         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13737         Add empty variables, placeholders for the backends they represent.
13738         (spam-set-difference): Move, unchanged.
13739         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13740         unless the user has a processor variable.
13741         (spam-classifications, spam-classification-valid-p)
13742         (spam-backend-properties, spam-backend-property-valid-p)
13743         (spam-backend-function-type-valid-p)
13744         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13745         (spam-report-articles-gmane, spam-report-articles-resend):
13746         Remove functions, they are not needed.
13747         (spam-install-backend-super, spam-backend-list)
13748         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13749         (spam-backend-function, spam-backend-ham-registration-function)
13750         (spam-backend-spam-registration-function)
13751         (spam-backend-ham-unregistration-function)
13752         (spam-backend-spam-unregistration-function)
13753         (spam-backend-statistical-p, spam-backend-mover-p)
13754         (spam-install-backend-alias, spam-install-checkonly-backend)
13755         (spam-install-mover-backend, spam-install-nocheck-backend)
13756         (spam-install-backend, spam-install-statistical-backend)
13757         (spam-install-statistical-checkonly-backend): Add backend installation
13758         support.
13759         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13760         (spam-group-processor-p): Use the new backend code and respect the
13761         summary exit behavior.
13762         (spam-mark-spam-as-expired-and-move-routine): Remove.
13763         (spam-summary-prepare): Change to use the new spam-old-articles
13764         variable.
13765         (spam-copy-or-move-routine, spam-copy-spam-routine)
13766         (spam-move-spam-routine, spam-copy-ham-routine)
13767         (spam-move-ham-routine): Add code to copy/move ham or spam.
13768         (spam-fetch-field-fast): Improve doc and code, plus allow the
13769         'number request.
13770         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13771         variables.
13772         (spam-split, spam-find-spam): Use the new backend code.
13773         (spam-registration-functions): Remove variable.
13774         (spam-unregister-routine): Add convenience wrapper.
13775         (spam-log-undo-registration, spam-register-routine)
13776         (spam-log-processing-to-registry)
13777         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13778         where possible.
13779         (spam-check-gmane-xref, spam-check-regex-headers)
13780         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13781         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13782         (spam-check-bogofilter-headers, spam-check-spamoracle)
13783         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13784         (spam-check-crm114-headers): Use the spam-split-group that
13785         spam-split prepares, no need to determine it every time.
13786
13787         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13788         to the nnheader-parse-naked-head call.
13789
13790         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13791
13792         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13793         the nnheader-nov-read-message-id call.
13794
13795 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13796
13797         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13798         gnus-activate-group twice.  Suggested by Markus Peter
13799         <warp@spin.de>.
13800
13801 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13802
13803         * gnus-art.el (gnus-article-time-format): Exchange the order of
13804         day and month in the default value; fix customization type.
13805         (article-date-ut): Use add-text-properties.
13806         (article-make-date-line): Use message-make-date instead of
13807         current-time-string.
13808
13809         * message.el (message-fetch-field): Don't use set-text-properties.
13810         (message-make-date): Simplify.
13811
13812         * messagexmas.el (message-xmas-make-date): New function.
13813         (message-xmas-redefine): Defalias message-make-date to it.
13814
13815 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13816
13817         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13818         (rfc2047-encode-region): Treat text within parentheses as special;
13819         show the original text when error has occurred.
13820
13821         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13822         already-computed method to gnus-activate-group.
13823
13824         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13825         same select-methods identical Lisp objects.
13826
13827         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13828         object when modifying the info.
13829
13830 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13831
13832         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13833         gnus-opened-servers since it has never been opened with the new
13834         configuration yet.
13835
13836 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13837
13838         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13839         arg to nnheader-generate-fake-message-id.
13840
13841 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13842
13843         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13844         number and build a fake message ID localized to a group and
13845         article number (so it's repeatable from that point on).
13846         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13847         ID format.
13848
13849         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13850         nnheader-generate-fake-message-id with the article number.
13851
13852 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13853
13854         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13855         end-of-buffer.
13856
13857 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13858
13859         * message.el (message-ignored-supersedes-headers): Add Approved.
13860
13861 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13862
13863         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13864         goto-char.
13865         (rfc2047-encode): Fold the line before encoding.
13866
13867 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13868
13869         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13870         folding -- not all headers can be folded, and this should be done
13871         by the message composition mode.  Probably.  I think.
13872
13873 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13874
13875         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13876         fast.
13877
13878         * gnus-ems.el (gnus-remove-image): Don't use
13879         message-text-with-property; remove only the image found first.
13880
13881         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
13882         found first.
13883
13884 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
13885
13886         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
13887
13888 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13889
13890         * message.el (message-text-with-property): Make it fast and accept
13891         optional arguments.
13892         (message-strip-forbidden-properties): Use it.
13893         (message-fix-before-sending): Follow the m-t-w-p change.
13894
13895         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
13896
13897 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13898
13899         * gnus-art.el (article-hide-headers): Don't change the buffer
13900         mistakenly when performing mml-preview even if
13901         gnus-single-article-buffer is nil.
13902
13903 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
13904
13905         * message.el (message-expand-name-databases): New user option.
13906         (message-expand-name): Use it.
13907
13908 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
13909
13910         * spam.el (spam-report-articles-resend)
13911         (spam-report-resend-register-routine): Allow ham reporting.
13912         (spam-report-resend-register-ham-routine): Add wrapper.
13913         (spam-registration-functions): Add ham resending functions.
13914         (spam-list-of-processors): Add ham resend processor.
13915
13916         * gnus.el (ham-resend-to): Add new group parameter.
13917         (spam-process): Add ham resend option.
13918
13919         * spam-report.el (spam-report-resend): Allow reporting ham.
13920         (spam-report-resend-ham): Add wrapper.
13921
13922 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13923
13924         * message.el (message-cite-articles-with-x-no-archive): New
13925         variable.
13926         (message-cite-original): Use it.
13927
13928 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13929
13930         * message.el (message-cite-original): Respect X-No-Archive.
13931
13932 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13933
13934         * gnus-art.el (article-hide-headers): Refer to the values for
13935         gnus-ignored-headers and gnus-visible-headers in the summary
13936         buffer since a user may have set them as group parameters.
13937
13938 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
13939
13940         * assistant.el (assistant-node-name): Add convenience function.
13941         (assistant-render-text, assistant-render-node): Add error handling,
13942         plus handle multiple next nodes.
13943         (assistant-find-next-node): Comment out for now.
13944         (assistant-find-next-nodes): Add function, returns list of next
13945         nodes.
13946
13947 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
13948
13949         * mail-source.el (mail-source-directory): Fix doc-string.
13950
13951 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
13952
13953         * assistant.el (assistant-render-text, assistant-eval): Add :set
13954         widget type, which is different because it takes and returns a
13955         list.  Much hilarity ensues.
13956
13957 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
13958
13959         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
13960
13961         * gnus-group.el (gnus-group-get-new-news-this-group): Added
13962         doc-string.
13963
13964         * gnus-start.el (gnus-activate-group): Added doc-string.
13965
13966 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13967
13968         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
13969
13970 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
13971
13972         * assistant.el (assistant-render-text): Try to add a :set
13973         widget, more to come.
13974
13975         * spam.el (spam-group-spam-contents-p): Handle empty groupname
13976         strings.
13977         (spam-report-articles-resend)
13978         (spam-register-routine): Do registration iff any articles warrant
13979         it.
13980         (spam-summary-prepare-exit): Change log message for nil group
13981         destinations.
13982
13983 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
13984
13985         * spam.el (spam-report-resend-register-routine): Allow
13986         spam-report-resend-to to be a group parameter or a global value.
13987
13988 2004-05-26  Simon Josefsson  <jas@extundo.com>
13989
13990         * starttls.el: Merge with my GNUTLS based starttls.el.
13991         (starttls-gnutls-program, starttls-use-gnutls)
13992         (starttls-extra-arguments, starttls-process-connection-type)
13993         (starttls-connect, starttls-failure, starttls-success): New
13994         variables.
13995         (starttls-program, starttls-extra-args): Doc fix.
13996         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
13997         functions.
13998         (starttls-negotiate, starttls-open-stream): Check
13999         `starttls-use-gnutls' and pass on to corresponding *-gnutls
14000         function if it is set.
14001
14002 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14003
14004         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
14005         structured fields.
14006
14007 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14008
14009         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
14010
14011 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
14012
14013         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
14014         variable.
14015         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14016         assigning the spam-mark to new messages.
14017
14018 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14019
14020         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14021
14022 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14023
14024         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14025
14026         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14027         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14028         default.
14029
14030 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14031
14032         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14033         correct data.
14034
14035 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14036
14037         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14038         (spam-group-processor-p): Fix function.
14039         (spam-group-processor-multiple-p)
14040         (spam-group-spam-processor-report-gmane-p)
14041         (spam-group-spam-processor-report-resend-p)
14042         (spam-group-spam-processor-bogofilter-p)
14043         (spam-group-spam-processor-blacklist-p)
14044         (spam-group-spam-processor-ifile-p)
14045         (spam-group-ham-processor-ifile-p)
14046         (spam-group-spam-processor-spamoracle-p)
14047         (spam-group-spam-processor-crm114-p)
14048         (spam-group-ham-processor-bogofilter-p)
14049         (spam-group-spam-processor-stat-p)
14050         (spam-group-ham-processor-stat-p)
14051         (spam-group-ham-processor-whitelist-p)
14052         (spam-group-ham-processor-BBDB-p)
14053         (spam-group-ham-processor-spamoracle-p)
14054         (spam-group-ham-processor-copy-p): Remove functions with some
14055         prejudice against unneeded code.
14056         (spam-report-articles-resend)
14057         (spam-report-resend-register-routine): Allow the group/topic
14058         spam-resend-to value to override spam-report-resend-to.
14059         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14060         properly now.
14061
14062         * gnus.el (spam-resend-to): Add group/topic parameter.
14063         (spam-process): Move the OBSOLETE processors to the end of the
14064         choices.
14065
14066 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14067
14068         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14069         with resend-to set to nil, and then ask the user if necessary.
14070         (spam-report-resend): spam-report-resend takes a list of articles, not
14071         separate article numbers.
14072
14073 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14074
14075         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14076         addition to emacs-w3m.
14077
14078 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14079
14080         * assistant.el (assistant-authinfo-data): New function.
14081         (assistant-eval): Eval for entire assistant.
14082
14083         * netrc.el (netrc-services-file): New variable.
14084         (netrc-parse-services): New function.
14085         (netrc-find-service-name): New function.
14086         (netrc-find-service-number): New function.
14087         (netrc-port-equal): New function.
14088         (netrc-machine): Use it.
14089
14090         * nnimap.el (nnimap-open-connection): Use netrc.
14091
14092         * gnus-util.el (gnus-netrc-get): Remove aliases.
14093
14094         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14095
14096         * assistant.el (wid-edit): Fix compilation.
14097
14098         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14099
14100 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14101
14102         * gnus-util.el (gnus-set-file-modes): New function.  (small
14103         patch).
14104
14105 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14106
14107         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14108
14109         * assistant.el (assistant-render-node): Fix up rendering and
14110         read-only text.
14111         (assistant-render-node): Reset.
14112         (assistant-make-read-only): Not sticky.
14113
14114 2004-05-20  Danny Siu  <dsiu@adobe.com>
14115
14116         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14117         centered even when gnus-auto-center-summary is t.
14118
14119 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14120
14121         * dns.el (dns-get-txt-answer): New function.
14122         (dns-read-txt): Ditto.
14123         (query-dns): Use it.
14124
14125 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14126
14127         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14128         active for foreign groups even if the group level is higher than
14129         the specified value.
14130
14131 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14132
14133         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14134         non-active groups.
14135
14136         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14137
14138 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14139
14140         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14141
14142 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14143
14144         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14145         (spam-crm114-header, spam-crm114-spam-switch)
14146         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14147         (spam-crm114-positive-spam-header)
14148         (spam-crm114-database-directory, spam-list-of-processors)
14149         (spam-group-spam-processor-crm114-p)
14150         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14151         (spam-generic-score, spam-list-of-checks)
14152         (spam-list-of-statistical-checks, spam-registration-functions)
14153         (spam-check-crm114-headers, spam-crm114-score)
14154         (spam-check-crm114, spam-crm114-register-with-crm114)
14155         (spam-crm114-register-spam-routine)
14156         (spam-crm114-unregister-spam-routine)
14157         (spam-crm114-register-ham-routine)
14158         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14159         asjo@koldfront.dk (Adam Sjøgren).
14160
14161         * gnus.el: Add spam-use-crm114.
14162
14163         * spam.el (spam-list-of-processors, spam-registration-functions):
14164         Add spam-use-resend.
14165         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14166         (spam-report-articles-gmane): Add doc fix.
14167         (spam-report-articles-resend, spam-report-resend-register-routine):
14168         Add wrappers around spam-report-resend-to.
14169
14170         * spam-report.el (spam-report-resend-to, spam-report-resend):
14171         Add support for resending spam.
14172         (spam-report-gmane): Fix line length >80.
14173
14174         * gnus.el (spam-process): Add spam-use-resend.
14175
14176 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14177
14178         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14179         number of processed spam messages.
14180         (spam-ham-copy-or-move-routine): Return the number of processed
14181         ham messages.
14182         (spam-summary-prepare-exit): Use the above values to decide
14183         whether status messages shouled be displayed.
14184
14185 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14186
14187         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14188         `rfc2047-encoding-function-alist' in order to avoid conflicting
14189         with the old version.
14190         (rfc2047-encode-region): Concatenate words containing non-ASCII
14191         characters in structured fields; don't encode space-delimited
14192         ASCII words even in unstructured fields; don't break words at
14193         char-category boundaries.
14194         (rfc2047-encode-1): New function.
14195         (rfc2047-encode): Use it; encode text so that it occupies the
14196         maximum width within 76-column; work correctly on Q encoding for
14197         iso-2022-* charsets.
14198         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14199         sure not to break a line just after the header name.
14200         (rfc2047-b-encode-region): Removed.
14201         (rfc2047-b-encode-string): New function.
14202         (rfc2047-q-encode-region): Removed.
14203         (rfc2047-q-encode-string): New function.
14204
14205         * mm-util.el (mm-replace-in-string): New function.
14206
14207 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14208
14209         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14210         get it right.
14211         (gnus-inews-make-draft): Really.
14212
14213 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14214
14215         * nnmh.el (nnmh-request-list-1): Don't check the link count
14216         before descending.  (small patch)
14217
14218 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14219
14220         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14221         stuff.
14222
14223         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14224         on real group name.
14225
14226         * gnus-art.el (gnus-signature-limit): Doc fix.
14227
14228         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14229
14230         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14231
14232 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14233
14234         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14235         isn't a string.
14236
14237 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14238
14239         * gnus-draft.el (gnus-draft-send): Bind
14240         rfc2047-encode-encoded-words.
14241
14242         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14243         (rfc2047-encodable-p): Say that =? needs encoding.
14244         (rfc2047-encode-encoded-words): New variable.
14245
14246         * gnus-group.el (gnus-group-select-group): Doc fix.
14247
14248         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14249
14250         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14251         to nil.
14252
14253         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14254
14255         * nnheader.el (nnheader-get-lines-and-char): New function.
14256
14257 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14258
14259         * gnus-msg.el (gnus-summary-followup-with-original): Document
14260         yanking of region when active.
14261
14262 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14263
14264         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14265         groups if the group level is higher than the specified value.
14266
14267 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14268
14269         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14270         (gnus-group-jump-to-group): Added prefix argument using
14271         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14272         non-active group.
14273
14274         * compface.el (uncompface): Be verbose when changing
14275         `uncompface-use-external'.
14276
14277         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14278         handle manual section.
14279
14280 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14281
14282         * gnus-art.el (gnus-button-alist): Revert previous change.
14283
14284 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14285
14286         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14287
14288 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14289
14290         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14291         whether backend can accept message.
14292
14293         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14294
14295 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14296
14297         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14298         Avoid creating directory when nntp-marks-is-evil is true.
14299         Reported by Reiner Steib.
14300
14301 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14302
14303         * gnus-picon.el (gnus-picon-style): New variable.
14304         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14305         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14306         Jesper Harder <harder@ifa.au.dk>.
14307
14308 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14309
14310         * message.el (message-fill-field): Return point.
14311         (message-generate-headers): Go to end of field.
14312
14313         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14314         stuff for non-living groups.
14315
14316 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14317
14318         * gnus-art.el (gnus-article-followup-with-original)
14319         (gnus-article-reply-with-original): gnus-mark-active-p ->
14320         gnus-region-active-p.
14321
14322 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14323
14324         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14325         only when there is spam or ham to be processed.
14326
14327 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14328
14329         * mail-source.el (mail-source-delete-crash-box): Refactor.
14330         (mail-source-fetch): Use it.
14331         (mail-source-fetch-file): Ditto.
14332         (mail-source-fetch-directory): Run postscript in loop.
14333         (mail-source-fetch-pop): Delete.
14334         (mail-source-fetch-maildir): Ditto.
14335         (mail-source-fetch-imap): Ditto.
14336
14337         * imap.el (imap-authenticators): Comment out sasl.
14338
14339         * message.el (message-skip-to-next-address): New function.
14340         (message-fill-header-address): Refactor.
14341         (message-fill-address): Use it.
14342         (message-delete-address): Use it.
14343         (message-fill-header-general): Refactor.
14344         (message-fill-field-address): Rename.
14345         (message-narrow-to-field): Find the start of the header.
14346         (message-header-format-alist): Don't pre-fill.
14347         (message-fill-header): Removed.
14348         (message-insert-header): New function.
14349         (message-shorten-references): Use it.
14350
14351         * rfc2047.el (rfc2047-field-value): Strip props.
14352
14353         * mail-parse.el (mail-header-make-address): New alias.
14354
14355         * ietf-drums.el (ietf-drums-make-address): New function.
14356
14357         * imap.el: Add compiler directives.
14358
14359         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14360
14361         * gnus-art.el (article-decode-idna-rhs): Don't use
14362         message-idna-inside-rhs-p.
14363
14364 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14365
14366         * message.el (message-idna-inside-rhs-p): Removed.
14367         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14368
14369         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14370         false positives.
14371
14372 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14373
14374         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14375
14376 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14377
14378         * nneething.el (nneething-file-name): Don't create spurious
14379         files.
14380
14381         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14382         (gnus-inews-do-gcc): Remove sleep.
14383
14384         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14385         part under point.
14386
14387         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14388         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14389
14390 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14391
14392         * spam.el (spam-summary-prepare-exit): Fixed (length).
14393
14394 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14395
14396         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14397         as expired without moving it" message when there are spam
14398         messages left.
14399
14400 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14401
14402         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14403         header is not nil.
14404
14405 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14406
14407         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14408         nntp-possibly-create-directory, not nntp-possibly-change-group.
14409         (nntp-marks-changed-p): New arg SERVER.
14410         (nntp-request-update-info): Adjust caller.
14411
14412 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14413
14414         * nntp.el (nntp-save-marks): Pass missing arg.
14415
14416 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14417
14418         * nntp.el: Support marks.
14419         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14420         (nntp-marks-modtime, nntp-marks-directory): New variables.
14421         (nntp-request-set-mark, nntp-request-update-info)
14422         (nntp-possibly-create-directory, nntp-marks-changed-p)
14423         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14424         functions.
14425
14426 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14427
14428         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14429         (gnus-xmas-redefine): Rename.
14430
14431         * gnus-score.el (gnus-score-insert-help): Use
14432         gnus-select-lowest-window.
14433
14434         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14435         appt-select-lowest-window and rename to gnus-select-lowest-window.
14436
14437         * gnus.el: do.
14438
14439 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14440
14441         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14442         encodings of MIME-encoded words, in order to improve
14443         interoperability with several broken MUAs.
14444
14445 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14446
14447         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14448         tags, only when charsets are not specified in headers.
14449         (mm-inline-text-html-render-with-w3m): Ditto.
14450
14451         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14452         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14453
14454 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14455
14456         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14457         instead of MIME-decoded from fields when checking
14458         `gnus-article-address-banner-alist'.
14459
14460 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14461
14462         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14463         description rather than subject.
14464
14465 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14466
14467         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14468
14469 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14470
14471         * gnus.el (gnus-version-number): Bump.
14472
14473 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14474
14475         * gnus.el: No Gnus v0.2 is released.
14476
14477 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14478
14479         * gnus-agent.el (gnus-agent-read-agentview): Inline
14480         gnus-uncompress-range.
14481
14482 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14483
14484         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14485         `exec-installed-p'.
14486
14487 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14488
14489         * gnus.el (spam-process, spam-autodetect-methods): Add
14490         bsfilter and bsfilter-headers.
14491
14492         * spam.el (spam-bsfilter): New customize group.
14493         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14494         (spam-bsfilter-header, spam-bsfilter-probability-header)
14495         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14496         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14497         (spam-bsfilter-database-directory): New options.
14498         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14499         (spam-list-of-statistical-checks, spam-registration-functions):
14500         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14501         (spam-bsfilter-score): New command.
14502         (spam-check-bsfilter-headers, spam-check-bsfilter)
14503         (spam-bsfilter-register-with-bsfilter)
14504         (spam-bsfilter-register-spam-routine)
14505         (spam-bsfilter-unregister-spam-routine)
14506         (spam-bsfilter-register-ham-routine)
14507         (spam-bsfilter-unregister-ham-routine): New functions.
14508         (spam-generic-score): Support bsfilter; Accept an optional argument
14509         to recalcurate spam score even if scoring header has already been
14510         added.
14511         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14512         optional argument to recalcurate spam score even if scoring header
14513         has already been added.
14514
14515 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14516
14517         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14518         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14519         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14520         link is missing.
14521
14522 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14523
14524         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14525         (html2text-get-attr): Rewrite.
14526
14527         * message.el (message-setup-1): Remove redundant put-text-property
14528         on mail-header-separator.
14529
14530 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14531
14532         * gnus-registry.el (gnus-registry-cache-whitespace)
14533         (gnus-registry-action, gnus-registry-spool-action)
14534         (gnus-registry-split-fancy-with-parent): Change message levels
14535         from 5 to 3 or 7, as needed.
14536
14537         * spam.el (spam-summary-prepare-exit)
14538         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14539         (spam-split, spam-find-spam, spam-log-undo-registration)
14540         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14541         level from 5 to 6.
14542
14543 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14544
14545         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14546         2004-03-04 change).
14547
14548 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14549
14550         * sieve-manage.el (sieve-manage-open):
14551         * nnweb.el (nnweb-insert-html):
14552         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14553         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14554         * nnspool.el (nnspool-request-group):
14555         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14556         * nnml.el (nnml-request-update-info):
14557         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14558         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14559         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14560         (nnimap-request-set-mark):
14561         * nnfolder.el (nnfolder-request-update-info):
14562         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14563         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14564         * gnus-uu.el (gnus-uu-find-articles-matching):
14565         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14566         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14567         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14568         * gnus-nocem.el (gnus-nocem-scan-groups):
14569         * gnus-int.el (gnus-start-news-server):
14570         * gnus-group.el (gnus-group-make-kiboze-group)
14571         (gnus-group-browse-foreign-server):
14572         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14573         Use mapc when appropriate.
14574
14575 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14576
14577         FIXME: Make separate entries for each person.
14578
14579         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14580         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14581         <shields@msrl.com>:
14582
14583         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14584         may need for spam sorting and scoring.
14585         (spam-user-format-function-S): Add user format function suitable for
14586         general use.
14587         (spam-article-sort-by-spam-status): Add sorting function for summary
14588         sorting.
14589         (spam-extra-header-to-number): Add function to get a score from a
14590         header.
14591         (spam-summary-score): Add function to get a numeric score from the
14592         headers.
14593         (spam-generic-score): Fix function doc, was in wrong place.
14594         (spam-initialize): Take symbols when it's run, and install the
14595         extra headers that spam-necessary-extra-headers thinks we need.
14596
14597 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14598
14599         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14600         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14601
14602 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14603
14604         * gnus-sum.el (gnus-set-global-variables)
14605         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14606         (gnus-article-get-xrefs, gnus-summary-best-group)
14607         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14608         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14609         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14610         Use with-current-buffer.
14611
14612 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14613
14614         * spam.el (spam-summary-prepare-exit): Simplify logic.
14615         (spam-fetch-article-header): Read the article header if it's not
14616         available.
14617         (spam-list-articles): Simplify logic.
14618         (spam-filelist-register-routine): Fix bug with unregister-list.
14619
14620         * gnus-registry.el: Fix comments at beginning.
14621
14622 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14623
14624         * message.el (message-cater-to-broken-inn): Remove.
14625         (message-shorten-references): Make sure the total folded length of
14626         References is shorter than 998 characters to cater to a bug in INN
14627         2.3.  Also, don't pretend that references aren't folded -- this
14628         hasn't worked for a while.
14629
14630 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14631
14632         * gnus-agent.el (gnus-agentize):
14633         gnus-agent-send-mail-real-function no longer set to current value
14634         of message-send-mail-function but rather a lambda that calls
14635         message-send-mail-function.  The change makes the agent real-time
14636         responsive to user changes to message-send-mail-function.
14637
14638 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14639
14640         * legacy-gnus-agent.el
14641         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14642         help from Florian Weimer <fw@deneb.enyo.de>
14643
14644 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14645
14646         * nnmail.el (nnmail-cache-insert): Revert last change.
14647
14648 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14649
14650         * nnmail.el (nnmail-cache-insert): Always check whether
14651         nnmail-cache-ignore-groups matches a group name.
14652
14653 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14654
14655         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14656         (spam-find-spam, spam-log-processing-to-registry)
14657         (spam-log-registered-p, spam-log-unregistration-needed-p)
14658         (spam-log-undo-registration): Use gnus-message instead of
14659         gnus-error, none of these errors are fatal.
14660
14661         * gnus-registry.el (gnus-registry-clean-empty-function)
14662         (gnus-registry-clean-empty): Remove only empty entries without
14663         extra data.
14664
14665 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14666
14667         * spam-stat.el (spam-stat-buffer-change-to-spam)
14668         (spam-stat-buffer-change-to-non-spam): Change (error) to
14669         (gnus-message 8) invocation.
14670
14671 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14672
14673         * nntp.el (nntp-via-netcat-command): New variable.
14674         (nntp-via-netcat-switches): New variable.
14675         (nntp-open-via-rlogin-and-netcat): New function.
14676         (nntp-open-connection-function): Doc fix.
14677         (nntp-telnet-command): Doc fix.
14678         (nntp-end-of-line): Doc fix.
14679         (nntp-via-rlogin-command): Doc fix.
14680         (nntp-via-user-name): Doc fix.
14681         (nntp-via-address): Doc fix.
14682
14683 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14684
14685         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14686         error in Emacs 21.1.
14687
14688 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14689
14690         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14691
14692 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14693
14694         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14695         (gnus-agent-with-refreshed-group): New macro.
14696         (gnus-agent-rename-group): New function.
14697         (gnus-agent-delete-group): New function.
14698         (gnus-agent-save-group-info): Use gnus-command-method when
14699         `method' parameter is nil.  Don't write nil entries into the
14700         active file.
14701         (gnus-agent-get-group-info): New function.
14702         (gnus-agent-fetch-articles): Use
14703         gnus-agent-update-files-total-fetched-for to increment disk space
14704         used.
14705         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14706         gnus-agent-update-view-total-fetched-for to increment disk space
14707         used.
14708         (gnus-agent-get-local): Added optional parameters to avoid calling
14709         gnus-group-real-name and gnus-find-method-for-group.
14710         (gnus-agent-set-local): Delete stored entry if either min, or max,
14711         are nil.
14712         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14713         quit, use gnus-agent-regenerate-group to record existance of any
14714         articles fetched to disk before the quit occurred.
14715         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14716         gnus-agent-update-view-total-fetched-for, and
14717         gnus-agent-update-files-total-fetched-for to decrement disk space
14718         used.
14719         (gnus-agent-retrieve-headers): Use
14720         gnus-agent-update-view-total-fetched-for to increment disk space
14721         used.
14722         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14723         with gnus-agent-update-files-total-fetched-for to decrement disk
14724         space and fresh group buffer.
14725         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14726         (gnus-agent-need-update-total-fetched-for): New variable.
14727         (gnus-agent-update-files-total-fetched-for): New function.
14728         (gnus-agent-update-view-total-fetched-for): New function.
14729         (gnus-agent-total-fetched-for): New function.
14730
14731         * gnus-cache.el (gnus-cache-save-buffers): Use
14732         gnus-cache-update-overview-total-fetched-for to change disk space
14733         used by this group.
14734         (gnus-cache-possibly-enter-article): Use
14735         gnus-cache-update-file-total-fetched-for to increment disk space
14736         used by this group.
14737         (gnus-cache-possibly-remove-article): Use
14738         gnus-cache-update-file-total-fetched-for to decrement disk space
14739         used by this group.
14740         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14741         (gnus-cache-rename-group): New function.
14742         (gnus-cache-delete-group): New function.
14743         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14744         (gnus-cache-need-update-total-fetched-for): New variable.
14745         (gnus-cache-with-refreshed-group): New macro.
14746         (gnus-cache-update-file-total-fetched-for): New function.
14747         (gnus-cache-update-overview-total-fetched-for): New function.
14748         (gnus-cache-rename-group-total-fetched-for): New function.
14749         (gnus-cache-delete-group-total-fetched-for): New function.
14750         (gnus-cache-total-fetched-for): New function.
14751
14752         * gnus-group.el: Require gnus-sum and autoload functions to
14753         resolve warnings when gnus-group.el compiled alone.
14754         (gnus-group-line-format): Documented new %F.
14755         (size of Fetched data) group line format; identifies disk space
14756         used by agent and cache.
14757         (gnus-group-line-format-alist): Defined new F format.
14758         (gnus-total-fetched-for): New function.
14759         (gnus-group-delete-group): No longer update
14760         gnus-cache-active-altered as gnus-request-delete-group now keeps
14761         the cache in sync.
14762         (gnus-group-list-active): Let the agent store a server's active
14763         list if currently plugged.
14764
14765         * gnus-int.el (gnus-request-delete-group):
14766         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14767         local disk in sync with the server.
14768         (gnus-request-rename-group):
14769         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14770         local disk in sync with the server.
14771
14772         * gnus-start.el (gnus-get-unread-articles):
14773         Cosmetic simplification to logic.
14774
14775         * gnus-util.el (gnus-rename-file): New function.
14776
14777 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14778
14779         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14780
14781 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14782
14783         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14784         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14785
14786 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14787
14788         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14789         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14790
14791 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14792
14793         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14794
14795 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14796
14797         * spam.el (spam-set-difference): Add function to replace
14798         gnus-set-difference in spam.el.
14799         (spam-summary-prepare-exit): Use spam-set-difference.
14800
14801 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14802
14803         * gnus-registry.el (gnus-registry-cache-file): Update to use
14804         gnus-dribble-directory OR gnus-home-directory OR ~.
14805         (gnus-registry-split-fancy-with-parent): Fix doc.
14806
14807 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14808
14809         * message.el (message-exchange-point-and-mark): Use
14810         message-mark-active-p.  Suggested by Jesper Harder
14811         <harder@ifa.au.dk>.
14812
14813 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14814
14815         * message.el (message-exchange-point-and-mark): Don't activate
14816         region if it was inactive.  Suggested by Hiroshi Fujishima
14817         <pooh@nature.tsukuba.ac.jp>.
14818
14819 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14820
14821         * gnus-art.el (article-display-face): Display Faces in the same
14822         order as X-Faces.
14823
14824 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14825
14826         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14827
14828 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14829
14830         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14831         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14832         (gnus-article-mime-hierarchy): Remove.
14833         (gnus-article-mime-hierarchy-next): Remove.
14834         (gnus-article-mode): Revert 2004-03-19 change.
14835         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14836         (gnus-insert-mime-button): Revert 2004-03-19 change.
14837         (gnus-mime-accumulate-hierarchy): Remove.
14838         (gnus-mime-enter-multipart): Remove.
14839         (gnus-mime-leave-multipart): Remove.
14840         (gnus-mime-display-part): Revert 2004-03-19 change.
14841         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14842
14843         * mml.el (mml-preview): Revert 2004-03-19 change.
14844
14845 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14846
14847         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14848
14849 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14850
14851         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14852         t while entering a file name using the mm-with-multibyte macro.
14853         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14854
14855         * mm-util.el (mm-with-multibyte): New macro.
14856
14857 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14858
14859         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14860         user option.
14861         (gnus-mime-multipart-functions): Doc and customization fix.
14862         (gnus-article-mime-hierarchy): New variable.
14863         (gnus-article-mime-hierarchy-next): New variable.
14864         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14865         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14866         gnus-article-mime-hierarchy-next to nil.
14867         (gnus-insert-mime-button): Show hierarchy numbers.
14868         (gnus-mime-accumulate-hierarchy): New function.
14869         (gnus-mime-enter-multipart): New function.
14870         (gnus-mime-leave-multipart): New function.
14871         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14872         (gnus-mime-display-alternative): Show hierarchy numbers.
14873
14874         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14875         gnus-article-mime-hierarchy-next to nil.
14876
14877 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
14878
14879         * dns.el: Don't require gnus-xmas.
14880
14881 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
14882
14883         * mml.el (mml-generate-mime-1): Don't use format=flowed with
14884         inline PGP.
14885         (mml-menu): Disable mml-quote-region if mark is inactive.
14886
14887 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14888
14889         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
14890         when the group's active is not available.
14891
14892 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14893
14894         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
14895         error.
14896
14897 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
14898
14899         * imap.el (imap-store-password): New variable.
14900         (imap-interactive-login): Use it.
14901         Suggested by Mark Plaksin <happy@mcplaksin.org>.
14902
14903 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14904
14905         * gnus-art.el (gnus-article-read-summary-keys): Restore new
14906         window-start and hscroll to summary window.
14907
14908 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14909
14910         * gnus-start.el (gnus-convert-old-newsrc): Only write the
14911         conversion message to newsrc-dribble when an actual conversion is
14912         performed.
14913
14914 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
14915
14916         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
14917
14918 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14919
14920         * mm-decode.el (mm-complicated-handles): New function reviving
14921         former definition of mm-multiple-handles.
14922
14923         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
14924         (gnus-mime-delete-part): Use it.
14925
14926 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14927
14928         * gnus-agent.el (gnus-agent-read-local): Bind
14929         nnheader-file-coding-system to gnus-agent-file-coding-system to
14930         avoid the implicit assumption that they will always be equal.
14931         (gnus-agent-save-local): Bind buffer-file-coding-system, not
14932         coding-system-for-write, as the with-temp-file macro first prints
14933         to a buffer then saves the buffer.
14934
14935 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14936
14937         * gnus-art.el (gnus-article-edit-part): New function.
14938         (gnus-mime-save-part-and-strip): Use it; do query instead of
14939         signaling an error; don't use mm-multiple-handles.
14940         (gnus-mime-delete-part): Ditto.
14941
14942 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14943
14944         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
14945         old file versions.
14946         (gnus-group-prepare-hook): Removed function that converted list
14947         form of gnus-agent-expire-days to group properties.
14948
14949         * gnus-int.el: Autoload gnus-agent-regenerate-group.
14950         (gnus-request-accept-article): Re-indented.
14951
14952         * gnus-start.el (gnus-convert-old-newsrc): Registered new
14953         converters to handle old agent file formats.  Added logic for a
14954         "backup before upgrading warning".
14955         (gnus-convert-mark-converter-prompt): Developers can mark
14956         functions as needing (default), or not needing,
14957         gnus-convert-old-newsrc's "backup before upgrading warning".
14958         (gnus-convert-converter-needs-prompt): Tests whether the user
14959         should be protected from potentially irreversable changes by the
14960         function.
14961
14962         * legacy-gnus-agent.el: New.  Provides converters that are only
14963         loaded when gnus-convert-old-newsrc needs to call them.
14964
14965 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14966
14967         * mail-source.el (mail-source-touch-pop): Doc fix.
14968
14969         * message.el (message-smtpmail-send-it): Doc fix.
14970
14971 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
14972
14973         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
14974
14975         * nnmail.el (nnmail-split-fancy): do.
14976
14977         * gnus-kill.el (gnus-kill, gnus-execute): do.
14978
14979 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
14980
14981         * gnus-sum.el (gnus-widget-reversible-match)
14982         (gnus-widget-reversible-to-internal)
14983         (gnus-widget-reversible-to-external): New functions.
14984         (gnus-widget-reversible): New widget.
14985         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
14986
14987 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
14988
14989         * gnus-sum.el (gnus-thread-sort-functions)
14990         (gnus-article-sort-functions): Document `(not F)' items.
14991
14992 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
14993
14994         * spam.el (spam-use-gmane-xref): Add new backend.
14995         (spam-gmane-xref-spam-group): Add variable to control the name of the
14996         Gmane spam group.
14997         (spam-blackhole-servers, spam-blackhole-good-server-regex)
14998         (spam-regex-headers-spam, spam-regex-headers-ham)
14999         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
15000         (spam-list-of-checks): Add spam-use-gmane-xref to list of
15001         backends and checks.
15002         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
15003
15004         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
15005         an autodetect method.
15006
15007 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15008
15009         * gnus-int.el (gnus-request-accept-article): Inform the agent that
15010         articles are being added to a group.
15011         (gnus-request-replace-article): Inform the agent that articles
15012         need to be uncached as the cached contents are no longer valid.
15013
15014 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15015
15016         * binhex.el: Don't autoload executable-find.
15017
15018         * canlock.el: Don't autoload mail-fetch-field.
15019
15020         * dgnushack.el: Autoload c-mode for XEmacs.
15021
15022         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15023
15024         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15025         rmail-dont-reply-to and rmail-output.
15026
15027         * gnus-score.el: Don't autoload ffap-string-at-point.
15028
15029         * gnus-setup.el: Don't autoload sc-cite-original.
15030
15031         * imap.el: Don't autoload base64-decode-string,
15032         base64-encode-string and md5.
15033
15034         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15035         and rmail-msg-restore-non-pruned-header.
15036
15037         * mm-decode.el: Don't autoload executable-find.
15038
15039         * mm-url.el: Don't autoload executable-find.
15040
15041         * mm-view.el: Don't autoload diff-mode.
15042
15043         * nndb.el: Don't autoload news-reply-mode, news-setup,
15044         cancel-timer and telnet.
15045
15046         * password.el: Don't autoload run-at-time for Emacs.
15047
15048         * sha1-el.el: Don't autoload executable-find.
15049
15050         * sieve-mode.el: Don't autoload c-mode.
15051
15052         * uudecode.el: Don't autoload executable-find.
15053
15054 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15055
15056         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15057         (gnus-agent-possibly-alter-active): Avoid null in numeric
15058         comparison.
15059         (gnus-agent-set-local): Refuse to save null in local object table.
15060         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15061         list of articles that will be marked as unread.
15062
15063 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15064
15065         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15066
15067 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15068
15069         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15070         language tags.
15071
15072 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15073
15074         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15075         Don't bind "obarray".
15076
15077         * gnus-sum.el (gnus-thread-sort-functions): Added
15078         `gnus-thread-sort-by-most-recent-number' and
15079         `gnus-thread-sort-by-most-recent-date'.
15080         Reported by Kai Grossjohann <kai@emptydomain.de>.
15081
15082 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15083
15084         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15085
15086 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15087
15088         * gnus-cus.el (gnus-agent-customize-category): Removed
15089         ignore-errors macro reference that required cl to be loaded at
15090         run-time.
15091
15092         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15093         single-interval range of the form (min . max).  Previously the
15094         range had to look like ((min . max)).  Likewise, return
15095         (min . max) rather than ((min . max)).
15096         (gnus-range-map): Use gnus-range-normalize to accept
15097         single-interval range.
15098
15099         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15100         the cache, but not the agent, now appear with their usual face.
15101
15102         * dgnushack.el (loaddir): New variable that is bound to the
15103         directory containing the dgnushack.el file. Use loaddir, rather
15104         than srcdir, to update load-path. Change lets dgnushack compile
15105         code in directories other than GNUS/lisp.
15106
15107 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15108
15109         * lpath.el: Don't bind w3m-safe-url-regexp.
15110
15111         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15112         w3m-safe-url-regexp variable buffer-local.
15113
15114         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15115
15116 2004-02-27  Simon Josefsson  <jas@extundo.com>
15117
15118         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15119         gnus-group-real-prefix.
15120         (gnus-summary-move-article): Use it, instead of
15121         gnus-group-real-prefix.
15122
15123 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15124
15125         * lpath.el: Bind w3m-safe-url-regexp.
15126
15127         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15128         w3m-safe-url-regexp variable buffer-local and set it as the value
15129         of mm-w3m-safe-url-regexp.
15130
15131         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15132
15133         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15134         parsing gnus-posting-styles when the message is not for replying.
15135
15136         * dgnushack.el: Autoload sgml-mode for XEmacs.
15137
15138         * nnrss.el (nnrss-opml-export): Use
15139         mm-set-buffer-file-coding-system instead of
15140         set-buffer-file-coding-system.
15141
15142 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15143
15144         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15145         of checkdoc.el).
15146         * nnrss.el: do.
15147         * gnus-mlspl.el: do.
15148         * gnus-ml.el: do.
15149         * gnus-srvr.el: do.
15150
15151         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15152
15153 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15154
15155         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15156         Corrections to custom-manual links.
15157
15158         * gnus-art.el (gnus-article): Ditto.
15159
15160         * mm-decode.el (mime-display, mime-security): Ditto.
15161
15162 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15163
15164         * flow-fill.el: Typo.
15165
15166 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15167
15168         * spam-wash.el: New file.
15169
15170 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15171
15172         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15173
15174 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15175
15176         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15177         to be run with new-articles as LIST1, not LIST2.
15178         (spam-registration-functions): Add spam-use-ham-copy as a nil
15179         registration backend.
15180
15181 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15182
15183         * spam-stat.el (spam-stat-washing-hook): New option.
15184         (spam-stat-buffer-words): Use it.
15185         (spam-stat-process-directory, spam-stat-test-directory): Use
15186         insert-file-contents-literally.
15187         (spam-stat-coding-system): New variable.
15188         (spam-stat-load, spam-stat-save): Use it.
15189
15190 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15191
15192         * spam-report.el (spam-report-plug-agent): Quote
15193         spam-report-url-to-file and spam-report-url-ping-plain.
15194
15195 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15196
15197         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15198         / in mailto URLs.
15199
15200 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15201
15202         * spam-report.el (spam-report-process-queue): Fix interactive use.
15203         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15204         (spam-report-unplug-agent): Doc fixes.
15205         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15206         (spam-report-agentize, spam-report-deagentize): Autoload.
15207
15208 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15209
15210         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15211
15212         * message.el (message-setup-fill-variables): Add mml tags to
15213         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15214         <ajk@iu.edu>.
15215         (message-mode): Don't modify paragraph-separate there.
15216
15217 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15218
15219         * compface.el (uncompface-use-external): Default to undecided.
15220         (uncompface-use-external-threshold): New variable.
15221         (uncompface-float-time): New macro.
15222         (uncompface): Determine whether to use the external decoder if
15223         uncompface-use-external is undecided.
15224
15225 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15226
15227         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15228         after images.
15229
15230         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15231
15232 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15233
15234         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15235
15236         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15237
15238         * gnus-sum.el (gnus-summary-limit-to-age)
15239         (gnus-summary-limit-children): do.
15240
15241         * gnus-int.el (gnus-request-scan): do.
15242
15243         * gnus-group.el (gnus-group-suspend): do.
15244
15245         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15246
15247         * gnus-cite.el (gnus-cite-parse-attributions): do.
15248
15249         * gnus-agent.el (gnus-summary-set-agent-mark)
15250         (gnus-agent-regenerate-group): do.
15251
15252         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15253
15254         * binhex.el (binhex-decode-region-internal): do.
15255
15256 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15257
15258         * gnus-fun.el (gnus-face-properties-alist): New user option.
15259         (gnus-display-x-face-in-from): Use it.
15260
15261         * gnus-art.el (article-display-face): Ditto.
15262
15263         * compface.el (uncompface-use-external): Default to nil.
15264
15265 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15266
15267         * nntp.el (nntp-erase-buffer): New function.
15268         (nntp-retrieve-data, nntp-send-command)
15269         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15270         (nntp-possibly-change-group): Use it.
15271
15272         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15273         with-current-buffer.
15274
15275 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15276
15277         * compface.el: Merge the ELisp-based uncompface program.
15278         (compface): New customization group.
15279         (uncompface-use-external): New user option.
15280         (uncompface): Call uncompface-internal if uncompface-use-external
15281         is nil.
15282         (uncompface-internal): New function.  Note that there are also
15283         some other functions and variables added for this function.
15284
15285 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15286
15287         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15288         if necessary.
15289
15290 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15291
15292         * spam-report.el (spam-report-unplug-agent)
15293         (spam-report-plug-agent, spam-report-deagentize)
15294         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15295         Add support for the Agent in spam-report: when unplugged, report to a
15296         file; when plugged, submit all the requests.
15297
15298         * spam.el (spam-register-routine): Fix message about
15299         registration.
15300
15301 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15302
15303         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15304         dependencies.
15305         (rfc2047-encode): Use it.
15306
15307         * gnus-art.el (gnus-button-marker-list): Move before first
15308         reference.
15309
15310         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15311         (imap-parse-body): Fix format string mismatch.
15312
15313         * gnus-score.el (gnus-summary-increase-score): do.
15314
15315         * nnrss.el (nnrss-close): New function.
15316
15317 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15318
15319         * nnrss.el (nnrss-make-filename): New function.
15320         (nnrss-request-delete-group, nnrss-read-server-data)
15321         (nnrss-save-server-data, nnrss-read-group-data)
15322         (nnrss-save-group-data): Use it.
15323         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15324         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15325         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15326
15327 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15328
15329         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15330
15331 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15332
15333         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15334         files.
15335
15336         * message.el (message-generate-headers-first): Don't quote nil
15337         and t in docstrings.
15338
15339         * imap.el (imap-id): do.
15340
15341         * gnus-agent.el (gnus-agent-consider-all-articles)
15342         (gnus-agent-queue-mail): do.
15343
15344 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15345
15346         * spam-report.el (spam-report-process-queue): New function.
15347         Process requests from `spam-report-requests-file'.
15348         (spam-report-process-queue): Doc fix.
15349
15350 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15351
15352         * spam.el (spam-register-routine)
15353         (spam-log-processing-to-registry, spam-log-registered-p)
15354         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15355         Change "check" to "spam-check" for semi-clarity.
15356
15357 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15358
15359         * pop3.el: Require nnheader.
15360
15361         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15362
15363         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15364
15365         * gnus-picon.el: Require cl.
15366
15367         * gnus-fun.el: Require gnus-ems and gnus-util.
15368
15369         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15370
15371         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15372
15373         * gnus-art.el (gnus-article-edit-mode): Define before first
15374         reference.
15375
15376 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15377
15378         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15379         (gnus-uu-post-encoded): Use point-at-bol.
15380
15381         * gnus-topic.el (gnus-group-active-topic-p): do.
15382
15383         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15384
15385         * gnus-group.el (gnus-group-kill-region): do.
15386
15387         * gnus-art.el (article-date-ut): do.
15388
15389         * message.el (message-fetch-field): Remove redundant
15390         case-fold-search binding.
15391         (message-narrow-to-field): Simplify.
15392
15393 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15394
15395         * spam.el (spam-directory): Derive from `gnus-directory'.
15396
15397         * spam-report.el (spam-report-url-to-file)
15398         (spam-report-requests-file): New function and variable for offline
15399         reporting.
15400         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15401         and user defined function.
15402         (spam-report-url-ping-mm-url): Remove doubled slash.
15403
15404 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15405
15406         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15407
15408 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15409
15410         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15411         format string mismatch.
15412
15413         * sieve.el (sieve-deactivate-all): do.
15414
15415         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15416
15417         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15418
15419         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15420
15421         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15422
15423 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15424
15425         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15426         the list of checks.
15427
15428 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15429
15430         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15431         padding.
15432
15433 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15434
15435         * mm-view.el (mm-fill-flowed): New variable.
15436         (mm-inline-text): Use it.
15437
15438 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15439
15440         * spam.el (spam-spamassassin-register-ham-routine)
15441         (spam-spamassassin-register-spam-routine): Fix function names.
15442
15443 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15444
15445         * gnus.el (gnus-tmp-grouplens): Remove.
15446         (gnus-summary-line-format): Remove grouplens.
15447
15448         * gnus-group.el (gnus-group-line-format): Ditto.
15449
15450         * gnus-spec.el (gnus-format-specs): Ditto.
15451         (gnus-update-format-specifications): Flush the group format spec
15452         cache if there's the grouplens stuff.
15453         (gnus-parse-simple-format): Replace %l with the empty string.
15454
15455 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15456
15457         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15458         omission.
15459
15460 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15461
15462         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15463         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15464
15465 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15466
15467         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15468         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15469         New macros and functions.
15470         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15471         Handle > NLINK_MAX messages.
15472         * nnmaildir.el (nnmaildir-request-set-mark): Use
15473         nnmaildir--emlink-p and nnmaildir--eexist-p.
15474
15475 2004-01-25  Alex Schroeder  <alex@gnu.org>
15476
15477         * spam-stat.el (spam-stat-process-directory-age): New option.
15478         (spam-stat-process-directory): Use it.
15479
15480 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15481
15482         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15483         (spam-stat-save): Accept prefix argument.
15484
15485 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15486
15487         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15488         links" error.
15489
15490 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15491
15492         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15493         the rest of the and/or forms.
15494
15495 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15496
15497         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15498         compatibility with old .newsrc.eld files.
15499
15500         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15501
15502         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15503
15504         * gnus-start.el (gnus-1): do.
15505
15506         * gnus-group.el (gnus-group-line-format-alist): do.
15507
15508         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15509
15510         * gnus-gl.el: Remove.
15511
15512 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15513
15514         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15515         marks consisting of a single range {for example, (3 . 5)} rather
15516         than a list of a single range { ((3 . 5)) }.
15517
15518 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15519
15520         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15521         with-current-buffer.
15522         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15523         avoid consing a string.
15524
15525         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15526         Remove obsolete entries for big5 and gb2312.
15527
15528 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15529
15530         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15531         uncompressed list.
15532
15533 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15534
15535         * spam-stat.el (spam-stat-strip-xref): New function.
15536         (spam-stat-process-directory): Use it.
15537
15538         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15539         here -- it's done in message-fetch-field.
15540
15541 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15542
15543         * gnus-agent.el (gnus-agent-queue-mail)
15544         (gnus-agent-prompt-send-queue): New variables.
15545         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15546         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15547         "nndraft:queue" along to gnus-draft-send.  Use
15548         gnus-agent-prompt-send-queue.
15549         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15550         is "nndraft:queue".  Suggested by Gaute Strokkenes
15551         <gs234@srcf.ucam.org>
15552
15553         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15554         (agent-enable-undownloaded-faces): Added.
15555         (gnus-agent-cat-groups): Use eval-and-compile, not
15556         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15557         method of gnus-agent-cat-groups even when the buffer has been
15558         evaled.
15559         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15560         delete gnus-agent-save-active-1.
15561         (gnus-agent-save-groups): Deleted.  Identical to
15562         gnus-agent-save-active.
15563         (gnus-agent-write-active): No longer adjust agent's copy of active
15564         file as agent's adjustments are now stored in their own
15565         file.  Removed optional parameter.
15566         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15567         servers.  Add use of min/max range limits from server's local
15568         file.
15569         (gnus-agent-save-alist): Removed unused optional argument.
15570         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15571         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15572         (gnus-agent-set-local): A per-server file that keeps min/max range
15573         limits for articles known to the agent.  Provides a fast mechanism
15574         for altering many active ranges.
15575         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15576         active file (local makes it unnecessary).
15577         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15578
15579         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15580         (agent-enable-undownloaded-faces): Added.
15581
15582         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15583         disable it when sending to "nndraft:queue".
15584         (gnus-group-send-queue): Add safety check to avoid sending queue
15585         when unplugged.
15586
15587         * gnus-group.el (gnus-group-catchup): Use new
15588         gnus-sequence-of-unread-articles, not
15589         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15590         numbers of articles.  Use gnus-range-map to avoid having to
15591         uncompress the unread list.
15592         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15593         Fixed invalid ange-ftp reference.
15594
15595         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15596         (gnus-sorted-range-intersection): Intersection of two ranges
15597         without requiring that they first be uncompressed.
15598
15599         * gnus-start.el (gnus-activate-group): Unless blocked by the
15600         caller, possibly expand the active range to include both cached
15601         and agentized articles.
15602         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15603         multiple version-dependent converters.
15604         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15605         gnus-agent-save-active.
15606         (gnus-save-newsrc-file): Save dirty agent range limits.
15607
15608         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15609         gnus-agent-possibly-alter-active.
15610         (gnus-adjust-marked-articles): Faster handling of simple lists.
15611
15612 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15613
15614         * spam-stat.el (spam-stat-test-directory): New optional argument
15615         displays a list of files detected.  Suggested by Andrew Cohen
15616         <cohen@andy.bu.edu>.
15617         (spam-stat-buffer-words-with-scores): Don't narrow and change
15618         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15619
15620 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15621
15622         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15623         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15624         (spam-spamassassin-arguments)
15625         (spam-spamassassin-spam-flag-header)
15626         (spam-spamassassin-positive-spam-flag-header)
15627         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15628         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15629         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15630         (spam-list-of-processors, spam-list-of-checks)
15631         (spam-list-of-statistical-checks, spam-registration-functions)
15632         (spam-check-spamassassin-headers, spam-check-spamassassin)
15633         (spam-spamassassin-score)
15634         (spam-spamassassin-register-with-sa-learn)
15635         (spam-spamassassin-register-spam-routine)
15636         (spam-spamassassin-register-ham-routine)
15637         (spam-assassin-register-spam-routine)
15638         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15639         (spam-bogofilter-score): Fix to show article before scoring.
15640
15641 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15642
15643         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15644         default scoring function.
15645         (spam-generic-score): Call spam-spamassassin-score if
15646         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15647         spam-bogofilter-score otherwise.
15648
15649         * gnus.el (spam-process, spam-autodetect-methods): Add
15650         spamassassin and spamassassin-headers.
15651
15652 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15653
15654         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15655         Suppress unnecessary messages.
15656
15657 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15658
15659         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15660         make-hash-table.
15661
15662 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15663
15664         * canlock.el (base64-encode-string): Don't autoload it.
15665
15666 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15667
15668         * run-at-time.el: Remove useless (require 'itimer),
15669         eval-and-compile and (featurep 'xemacs).
15670
15671 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15672
15673         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15674         GROUP is a virtual group.
15675
15676 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15677
15678         * gnus.el: Autoload `message-y-or-n-p'.
15679
15680 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15681
15682         * pgg-parse.el: Remove unnecessary (require 'custom).
15683
15684         * pgg-def.el: do.
15685
15686         * nnmail.el: do.
15687
15688         * gnus-undo.el: do.
15689
15690         * gnus-picon.el: do.
15691
15692         * gnus-util.el: do.
15693
15694 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15695
15696         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15697
15698 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15699
15700         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15701         handle, as well as a list.
15702
15703         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15704         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15705         (mm-w3m-cid-retrieve): Simplify.
15706
15707 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15708
15709         * message.el (message-kill-to-signature): Allow prefix arg to
15710         specify number of lines to keep before signature.
15711
15712 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15713
15714         * message.el (message-kill-to-signature): Change docstring.
15715
15716 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15717
15718         * canlock.el: Always require sha1-el.
15719         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15720
15721         * message.el: Autoload sha1 only when compiling.
15722
15723         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15724         eudc-expand-inline for XEmacs.
15725
15726 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15727
15728         * message.el (message-canlock-generate): Require sha1-el.
15729
15730 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15731
15732         * message.el (message-expand-name): Silence the byte compiler.
15733
15734         * lpath.el: Add detect-coding-system.
15735
15736         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15737         cus-edit.
15738
15739 2004-01-13  Simon Josefsson  <jas@extundo.com>
15740
15741         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15742         Invoke gnus-score-mode.  Reported by
15743         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15744
15745         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15746         Jim Blandy <jimb@redhat.com> (tiny change).
15747
15748 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15749
15750         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15751
15752 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15753
15754         * spam.el (spam-get-article-as-string): Update to use
15755         gnus-request-article-this-buffer, much simpler.
15756         (spam-get-article-as-buffer): Remove.
15757
15758 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15759
15760         * message.el (message-expand-name): Use EUDC if the user uses that.
15761
15762 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15763
15764         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15765         character for the encoding to avoid consing a string.
15766
15767         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15768         unnecessarily.
15769
15770         * mm-util.el (mm-replace-chars-in-string): Remove.
15771
15772         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15773         of mm-replace-chars-in-string.
15774
15775 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15776
15777         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15778
15779         * mm-util.el (mm-subst-char-in-string): Support inplace.
15780
15781         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15782         a new string in every iteration.  Use shy groups.
15783
15784 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15785
15786         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15787         * gnus-soup.el (gnus-soup-group-brew):
15788         * gnus-msg.el (gnus-put-message):
15789         * gnus-move.el (gnus-group-move-group-to-server):
15790         * gnus-kill.el (gnus-batch-score):
15791         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15792         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15793         (gnus-group-update-group, gnus-group-read-group)
15794         (gnus-group-make-group, gnus-group-make-help-group)
15795         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15796         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15797         (gnus-group-sort-by-unread, gnus-group-catchup)
15798         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15799         (gnus-group-yank-group, gnus-group-set-info)
15800         (gnus-group-list-groups):
15801         * gnus.el (gnus-generate-new-group-name):
15802         * gnus-delay.el (gnus-delay-send-queue):
15803         * nnvirtual.el (nnvirtual-catchup-group):
15804         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15805         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15806         (gnus-group-prepare-topics, gnus-topic-check-topology):
15807         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15808         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15809         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15810         (gnus-group-make-articles-read):
15811         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15812         (gnus-group-change-level, gnus-kill-newsgroup)
15813         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15814         (gnus-get-unread-articles, gnus-make-articles-unread)
15815         (gnus-make-ascending-articles-unread): Use accessor
15816         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15817         to get group information for improved readability.
15818
15819
15820 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15821
15822         * gnus-art.el (article-decode-mime-words, article-babel)
15823         (gnus-article-highlight-signature, gnus-article-add-buttons)
15824         (gnus-signature-toggle): Use gnus-with-article-buffer.
15825
15826         * gnus-art.el (gnus-article-highlight-headers)
15827         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15828
15829         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15830         (gnus-article-set-globals, gnus-request-article-this-buffer)
15831         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15832         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15833         (gnus-mime-display-alternative): Use with-current-buffer.
15834
15835 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15836
15837         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15838         also under 80 char limit, and call gnus-error if needed.
15839         (spam-fetch-article-header): Fix - it was a
15840         buffer-local variable (gnus-newsgroup-data).
15841         (spam-find-spam): Use spam-generate-fake-headers, forget about
15842         spam-insert-fake-headers.
15843         (spam-insert-fake-headers): Remove.
15844
15845 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15846
15847         * deuglify.el (gnus-article-outlook-unwrap-lines)
15848         (gnus-outlook-rearrange-article)
15849         (gnus-outlook-repair-attribution-outlook)
15850         (gnus-outlook-repair-attribution-block)
15851         (gnus-outlook-repair-attribution-other): Remove redundant
15852         save-excursion.
15853
15854 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15855
15856         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15857         (spam-fetch-field-subject-fast)
15858         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15859         (spam-fetch-article-header): Add functions to deal with Gnus
15860         internals for fast retrieval of article header data.
15861         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15862
15863 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15864
15865         * pop3.el (pop3-md5): Remove.
15866         (pop3-apop): Replace pop3-md5 with md5.
15867
15868         * mm-bodies.el: base64 is always built-in.
15869
15870         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15871         with-current-buffer.
15872
15873 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15874
15875         * canlock.el (canlock-insert-header): Remove excessive grouping in
15876         regexp.
15877
15878         * gnus-sum.el (gnus-summary-read-document): Ditto.
15879
15880         * gnus-uu.el (gnus-uu-part-number): Ditto.
15881
15882         * html2text.el (html2text-remove-tags): Ditto.
15883         (html2text-format-tags): Ditto.
15884         (html2text-format-single-elements): Ditto.
15885
15886         * mml.el (mml-parse-1): Ditto.
15887
15888 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15889
15890         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
15891
15892         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
15893
15894         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
15895
15896         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
15897
15898 2003-11-15  Simon Josefsson  <jas@extundo.com>
15899
15900         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
15901         (pgg-gpg-lookup-key): Use regexp match instead of
15902         split-string (split-string is different between emacs 21.2 and
15903         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
15904
15905 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15906
15907         * gnus-art.el (gnus-mime-view-all-parts)
15908         (gnus-article-part-wrapper, gnus-article-view-part): Use
15909         with-current-buffer.
15910
15911 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15912
15913         * spam.el (spam-disable-spam-split-during-ham-respool)
15914         (spam-spamoracle-database, spam-cache-lookups)
15915         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
15916         (spam-group-ham-mark-p, spam-group-spam-mark-p)
15917         (spam-group-ham-marks, spam-group-spam-marks)
15918         (spam-group-spam-contents-p, spam-group-ham-contents-p)
15919         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
15920         also add spam-use-blackholes to the statistical checks.
15921         (spam-fetch-field-fast): Add interface to fetching fields, may
15922         become a macro.
15923         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
15924         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
15925         (spam-insert-fake-headers): Fake an article when needed.
15926         (spam-find-spam): Fake article when possible.
15927         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
15928         (spam-check-bogofilter-headers): Use message-fetch-field instead
15929         of nnmail-fetch-field.
15930
15931 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
15932
15933         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
15934
15935 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15936
15937         * spam.el (spam-split): Do not require spam-use-CHECK to be
15938         enabled if that check is passed to spam-split explicitly; also
15939         fix so 'spam doesn't get converted to spam-split-group when
15940         spam-split-symbolic-return is t.
15941         (spam-find-spam): Find registrations of the article and use those
15942         instead of re-running spam-split to find the spam/ham
15943         classification of the article.
15944         (spam-log-processing-to-registry, spam-log-registered-p)
15945         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15946         Use gnus-error instead of gnus-message.
15947         (spam-log-registration-type): Add function to determine the
15948         classification of a message based on registry entries; will
15949         return nil if both 'spam and 'ham are found.
15950         (spam-check-BBDB): Expand all the BBDB macros here so we can have
15951         a reasonably fast local cache without the loading errors.
15952         (spam-cache-lookups): Set to t by default.
15953         (spam-find-spam): Don't try to guess spam-cache-lookups.
15954         (spam-enter-whitelist, spam-enter-blacklist): Clear the
15955         spam-caches entry.
15956         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
15957         caching of whitelist/blacklist entries.
15958         (spam-check-whitelist, spam-check-blacklist): Invoke
15959         spam-from-listed-p with a type, not a cache variable.
15960         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
15961
15962 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
15963
15964         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
15965
15966         * nnmail.el (nnmail-split-fancy): do.
15967
15968         * mml.el (mml-parse): do.
15969
15970         * gnus-score.el (gnus-enter-score-words-into-hashtb)
15971         (gnus-score-adaptive): do.
15972
15973 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15974
15975         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
15976         (gnus-mime-button-map): Don't set keymap parent.
15977         (gnus-button-ctan-directory-regexp): Use shy grouping.
15978         (gnus-prev-page-map): Don't set keymap parent.
15979         (gnus-prev-page-map): Remove duplicated one.
15980         (gnus-next-page-map): Don't set keymap parent.
15981         (gnus-mime-security-button-map): Ditto.
15982
15983         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
15984         version number.
15985
15986         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
15987
15988 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15989
15990         * canlock.el (canlock-sha1-function): Remove.
15991         (canlock-sha1-function-for-verify): Remove.
15992         (canlock-openssl-program): Remove.
15993         (canlock-openssl-args): Remove.
15994         (canlock-ignore-errors): Remove.
15995         (canlock-sha1-with-openssl): Remove.
15996         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
15997         (canlock-verify): Don't use canlock-ignore-errors.
15998
15999         * sha1-el.el (sha1-string-external): Make it can return a string
16000         in binary form.
16001         (sha1-region-external): Ditto.
16002         (sha1-string-internal): Ditto.
16003         (sha1-region-internal): Ditto.
16004         (sha1-region): Ditto.
16005         (sha1-string): Ditto.
16006         (sha1): Ditto.
16007
16008 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16009
16010         * spam.el (spam-report-articles-gmane): New command.
16011
16012 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16013
16014         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16015
16016         * run-at-time.el (run-at-time-saved): Remove.
16017         (run-at-time): Doc fix.
16018
16019 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16020
16021         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16022         (gnus-summary-limit-map): Add it.
16023         (gnus-summary-make-menu-bar): do.
16024
16025 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16026
16027         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16028         Make attempt at some caching support (done for BBDB only now).
16029         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16030         addresses to be checked.
16031         (spam-clear-cache-BBDB): Add function, to be invoked by
16032         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16033         (spam-check-BBDB): Check and use the caches, if
16034         spam-cache-lookups is on, remove superfluous (provide).
16035
16036 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16037
16038         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16039
16040 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16041
16042         * run-at-time.el (run-at-time-saved): Move to after the definition
16043         of `run-at-time'.
16044
16045         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16046
16047 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16048
16049         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16050         mm-w3m-local-map-property.
16051
16052         * mm-view.el (mm-w3m-mode-map): Remove.
16053         (mm-w3m-local-map-property): Remove.
16054         (mm-inline-text-html-render-with-w3m): Don't use
16055         mm-w3m-local-map-property.
16056
16057 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16058
16059         * run-at-time.el: New file.
16060
16061         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16062         under Emacs.
16063
16064         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16065         of gnus-set-text-properties.
16066
16067         * gnus-uu.el (gnus-uu-save-article): Ditto.
16068
16069         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16070
16071         * gnus-cite.el (gnus-cite-parse): Ditto.
16072
16073         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16074         of gnus-.
16075
16076         * gnus-xmas.el (run-at-time): Require run-at-time.
16077
16078         * gnus.el: Changed calls to nnheader-run-at-time and
16079         password-run-at-time throughout to use run-at-time directly.
16080
16081         * password.el: Removed definition of run-at-time.
16082
16083         * nnheaderxm.el: Remove definition of run-at-time.
16084
16085 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16086
16087         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16088         in prompt.
16089
16090 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16091
16092         * messagexmas.el (message-xmas-redefine): Alias
16093         `message-make-caesar-translation-table' to
16094         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16095         version.
16096
16097         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16098         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16099         `gnus-xmas-set-text-properties'.
16100         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16101         `gnus-xmas-completing-read'.
16102         (gnus-xmas-completing-read): Removed.
16103         (gnus-xmas-open-network-stream): Removed.
16104
16105         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16106         XEmacs version.
16107
16108         * dns.el (dns-make-network-process): Use `open-network-stream'
16109         instead of `gnus-xmas-open-network-stream'.
16110
16111         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16112
16113         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16114
16115 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16116
16117         * gnus-art.el (gnus-mime-display-alternative)
16118         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16119         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16120         Don't use gnus-local-map-property.
16121
16122         * gnus-util.el (gnus-local-map-property): Remove.
16123
16124         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16125         gnus-completing-read-maybe-default with completing-read.
16126
16127         * gnus-util.el (gnus-completing-read): do.
16128         (gnus-completing-read-maybe-default): Remove.
16129
16130 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16131
16132         * password.el: Only autoload `run-at-time' if not XEmacs.
16133         Only autoload the itimer functions if XEmacs.
16134
16135 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16136
16137         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16138         XEmacsen.
16139
16140         * dgnushack.el: Autoload executable-find for XEmacs.
16141
16142 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16143
16144         * gnus-art.el (gnus-read-string): Remove.
16145         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16146         read-string.
16147
16148 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16149
16150         * netrc.el: Autoload password-read.
16151         (netrc): Add configuration group.
16152         (netrc-encoding-method, netrc-openssl-path): Add
16153         variables for encoding and decoding of files with symmetric
16154         ciphers.
16155         (netrc-encode): Add assistant function to encode a file with
16156         netrc-encoding-method.
16157         (netrc-parse): Add interactive parameter, added optional
16158         decoding if netrc-encoding-method is non-nil but otherwise
16159         behavior is standard.
16160         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16161         Do s/encode/encrypt/ everywhere.
16162
16163         * spam.el: Remove executable-find autoload.
16164
16165 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16166
16167         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16168
16169         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16170
16171 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16172
16173         * gnus-art.el (gnus-treat-ansi-sequences)
16174         (article-treat-ansi-sequences): New variable and function.
16175         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16176
16177         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16178         Use it.
16179
16180 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16181
16182         * mm-util.el (mm-quote-arg): Remove.
16183
16184         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16185         shell-quote-argument.
16186
16187         * gnus-uu.el (gnus-uu-command): do.
16188
16189         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16190
16191         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16192         with make-char.
16193
16194         * mm-util.el (mm-make-char): Remove.
16195
16196         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16197         add-minor-mode.
16198
16199         * gnus-undo.el (gnus-undo-mode): do.
16200
16201         * gnus-topic.el (gnus-topic-mode): do.
16202
16203         * gnus-sum.el (gnus-dead-summary-mode): do.
16204
16205         * gnus-start.el (gnus-slave-mode): do.
16206
16207         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16208
16209         * gnus-ml.el (gnus-mailing-list-mode): do.
16210
16211         * gnus-gl.el (gnus-grouplens-mode): do.
16212
16213         * gnus-draft.el (gnus-draft-mode): do.
16214
16215         * gnus-dired.el (gnus-dired-mode): do.
16216
16217         * gnus-ems.el (gnus-add-minor-mode): Remove.
16218
16219         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16220         Replace gnus-char-width with char-width.
16221
16222         * gnus-ems.el (gnus-char-width): Remove.
16223
16224         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16225         Replace gnus-char-width with char-width.
16226
16227         * gnus-ems.el (gnus-char-width): Remove.
16228
16229         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16230         definition.
16231         Remove Emacs 20 hash table compatibility code.
16232
16233         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16234         20 compatibility code.
16235
16236         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16237
16238         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16239
16240         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16241         with point-at-{eol,bol}.
16242
16243         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16244
16245         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16246
16247         * flow-fill.el (fill-flowed-point-at-bol)
16248         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16249
16250         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16251         Replace with point-at-{eol,bol} throughout all files.
16252
16253 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16254
16255         * ntlm.el (ntlm-string-as-unibyte): New macro.
16256         (ntlm-build-auth-response): Use it.
16257
16258         Remove Emacs 20 stuff:
16259         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16260         (butlast, mapc, remove): Remove the compiler macros.
16261         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16262         of delq and copy-sequence.
16263         * gnus-art.el (popup-menu): Remove the compiler macro.
16264         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16265         Emacs 20.
16266
16267 2004-01-05  Simon Josefsson  <jas@extundo.com>
16268
16269         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16270         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16271         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16272         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16273         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16274         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16275         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16276         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16277         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16278         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16279         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16280         string-xor into ntlm-string-xor.  Suggested by
16281         Jesper Harder <harder@myrealbox.com>.
16282
16283         * ntlm.el: Don't include poem.
16284
16285         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16286         Jesper Harder <harder@myrealbox.com>.
16287
16288         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16289
16290         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16291         probably breaks emacs with DL patch, but do we care? Is anyone
16292         still using the DL stuff?)
16293
16294         * sieve-manage.el: Use the password package.
16295         (sieve-manage-read-passwd): Remove.
16296         (sieve-manage-interactive-login): Use password.  Re-add
16297         condition-case around loop.
16298
16299         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16300         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16301         the password package.
16302
16303 2003-02-19  Simon Josefsson  <jas@extundo.com>
16304
16305         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16306         token.
16307
16308 2002-08-07  Simon Josefsson  <jas@extundo.com>
16309
16310         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16311         (sieve-manage-authenticators):
16312         (sieve-manage-authenticator-alist): Add some SASL mechs.
16313         (sieve-sasl-auth): New function.
16314         (sieve-manage-cram-md5-auth):
16315         (sieve-manage-plain-auth): Rewrite using SASL library.
16316         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16317         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16318         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16319         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16320
16321 2004-01-05  Simon Josefsson  <jas@extundo.com>
16322
16323         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16324         New files.
16325
16326 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16327
16328         * gnus-group.el (gnus-no-groups-message): Update.
16329
16330         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16331
16332 2003-11-09  Simon Josefsson  <jas@extundo.com>
16333
16334         * imap.el: Support for ID IMAP extension (RFC 2971).
16335         (imap-local-variables): Add imap-id.
16336         (imap-id): New variable.
16337         (imap-id): New function.
16338         (imap-parse-response): Parse untagged ID response.
16339         * nnimap.el (nnimap-id): New variable.
16340         (nnimap-open-connection): Use it.
16341
16342 2003-12-28  Simon Josefsson  <jas@extundo.com>
16343
16344         * gnus-score.el (gnus-score-edit-all-score): New.
16345         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16346
16347 2004-01-04  Simon Josefsson  <jas@extundo.com>
16348
16349         * password.el: Add.
16350
16351 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16352
16353         * dns.el (dns-query-types): Fix typo.
16354         (dns-query-types): New function.
16355         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16356         PTR and SOA replies, see RFC 1035.
16357
16358 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16359
16360         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16361
16362         * Moved to Changelog.2.
16363
16364 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16365
16366         * gnus.el (gnus-version-number): Bump version.
16367
16368 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16369
16370         * gnus.el: No Gnus v0.1 is released.
16371
16372 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16373
16374         * gnus.el: No Gnus v0.0 is released.
16375
16376 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16377
16378         * gnus.el (gnus-version-number): Bump.
16379         (gnus-version): No.
16380
16381 See ChangeLog.2 for earlier changes.
16382
16383     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16384       Free Software Foundation, Inc.
16385
16386   This file is part of GNU Emacs.
16387
16388   GNU Emacs is free software: you can redistribute it and/or modify
16389   it under the terms of the GNU General Public License as published by
16390   the Free Software Foundation, either version 3 of the License, or
16391   (at your option) any later version.
16392
16393   GNU Emacs is distributed in the hope that it will be useful,
16394   but WITHOUT ANY WARRANTY; without even the implied warranty of
16395   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16396   GNU General Public License for more details.
16397
16398   You should have received a copy of the GNU General Public License
16399   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16400
16401 ;; Local Variables:
16402 ;; coding: utf-8
16403 ;; fill-column: 79
16404 ;; add-log-time-zone-rule: t
16405 ;; End: