(gnus-html-wash-tags): Add support for i, b and u HTML tags.
[gnus] / lisp / ChangeLog
1 2010-09-18  Julien Danjou  <julien@danjou.info>
2
3         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
4         tags.
5
6 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7
8         * nnimap.el (nnimap-credentials): New function.
9         (nnimap-open-connection): Use the new function to look for credentials
10         also on the numeric equivalents of "imap" and "imaps".
11
12         * gnus-start.el (gnus-activate-group): Send the info to
13         gnus-request-group.
14
15         * nnimap.el (nnimap-request-group): Have the "check" version of the
16         function parse flags and update the info, so that a `M-g' get a total
17         resync of all flags from the group.
18
19         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
20         to allow backends to alter the info on group selection.  Also alter all
21         the backend -request-group functions to take the parameter.
22
23         * nnimap.el (nnimap-store-info): New function.
24         (nnimap-update-info): Store the info for later usage.
25         (nnimap-request-group): Use the stored info for the dont-check case, so
26         that we don't retrieve all marks when we enter a group.
27
28         * nnimap.el: Use deffoo instead of defun for interface functions.
29
30         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
31         update the group info.  This makes the nndraft groups, for instance, go
32         back to their old behaviour.
33
34         * gnus-sum.el (gnus-select-newsgroup): Indent.
35
36         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
37         in.
38         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
39         nothing.
40
41         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
42         from methods that are denied.
43
44         * gnus-int.el (gnus-method-denied-p): New function.
45
46         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
47         store the password instead of netrc.
48         (nnimap-open-connection): Don't error out when we can't make a
49         connections.
50
51         * auth-source.el (auth-source-create): In the password prompt, say what
52         we're querying for.  Also prompt for user name if that hasn't been
53         given.
54
55         * nnimap.el (nnimap-with-process-buffer): Removed.
56
57 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
58
59         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
60         method when we're reading from the agent.
61
62         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
63
64         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
65         that's probably most useful for users.
66
67         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
68         "failed" all the time.
69
70         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
71         ...)) with (with-current-buffer ... ).
72
73         * nntp.el (nntp-open-server): Return whether the open was successful or
74         not.
75
76         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
77         select an unread unseen article first.
78
79         * nnimap.el (nnimap-open-connection): If the user doesn't have a
80         /etc/services, supply some sensible port defaults.
81
82         * dgnushack.el: Define netrc-credentials.
83
84 2010-09-17  Julien Danjou  <julien@danjou.info>  (tiny fix)
85
86         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
87
88 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
89
90         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
91         doesn't have any parameters.
92
93 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
94
95         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
96         only upcased checks.
97
98         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
99
100         * nnimap.el (nnimap-open-shell-stream): New function.
101         (nnimap-open-connection): Use it.
102         (nnimap-transform-headers): Get the number of lines in each message.
103         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
104         number of lines.
105         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
106         problem.
107
108         * utf7.el (utf7-encode): Autoload.
109
110         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
111         to allow the mail splitting to not return a default group.  This is
112         useful for nnimap, which will leave unmatched mail in the inbox.
113
114         * nnimap.el: Rewritten.
115
116         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
117         nnimap usage.
118
119         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
120         if the move is internal, so that nnimap can do fast internal moves.
121
122         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
123         data.
124         (gnus-read-active-for-groups): Support finishing the early retrieval of
125         data.
126
127         * gnus-range.el (gnus-range-nconcat): New function.
128
129         * gnus-int.el (gnus-finish-retrieve-group-infos)
130         (gnus-retrieve-group-data-early): New functions.
131
132 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
133
134         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
135         (nnrss-retrieve-groups):
136         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
137         (pop3-quit): Use with-current-buffer.
138
139 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
140
141         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
142         instead of nnheader-accept-process-output.
143
144         * dgnushack.el (dgnushack-compile): Add comment.
145
146         * lpath.el: No need to fbind propertize for XEmacs 21.4.
147
148         * gnus-html.el (gnus-html-schedule-image-fetching)
149         (gnus-html-prefetch-images): Replace process-kill-without-query by
150         gnus-set-process-query-on-exit-flag.
151
152 2010-09-16  Romain Francoise  <romain@orebokech.com>
153
154         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
155
156 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
157
158         * gnus-registry.el (gnus-registry-install-shortcuts): The second
159         parameter to unintern is mandatory-ish in Emacs 24.
160
161         * gnus-html.el (gnus-html-schedule-image-fetching)
162         (gnus-html-prefetch-images): Check for curl before using it.
163
164         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
165         depend on curl, which isn't essential.
166
167         * imap.el: Revert back to version
168         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
169         seem problematic.
170
171 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
172
173         * gnus-registry.el (gnus-registry-install-shortcuts):
174         Explicitly pass `obarray' to `unintern' to avoid a warning.
175
176 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
177
178         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
179         change.
180
181         * nnrss.el (nnrss-request-list): Removed this function and related
182         functions, including the moreover stuff.
183
184 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
185
186         * nnrss.el (nnrss-retrieve-groups): New function.
187
188 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
189
190         * .dir-locals.el: Add no-byte-compile cookie.
191
192 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
193
194         * time-date.el (format-seconds): Comment fix.
195
196         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
197         for back end that doesn't support request-scan.
198
199 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
200
201         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
202         then do request scans from the backends.
203
204         * netrc.el (netrc-credentials): New conveniency function.
205
206         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
207         avoid running a hook per line, since this takes a lot of time,
208         profiling shows.
209         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
210         directly if gnus-visual-p is true.
211
212 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
213
214         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
215         groups; replace mapcar with dolist which is a bit faster; pass groups
216         info to gnus-read-active-file-1.
217         (gnus-read-active-file-1): Scan only specified groups if the new
218         optional arg `infos' is given.
219
220 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
221
222         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
223
224         * pop3.el (pop3-movemail): Removed.
225         (pop3-streaming-movemail): Renamed to pop3-movemail.
226
227         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
228         don't restrict end-tag searches to the end of the line.
229
230 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
231
232         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
233         articles of every unchecked group to t, which means unknown since the
234         server has never been opened.
235
236 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
237
238         * gnus-html.el (gnus-html-show-alt-text): New command.
239         (gnus-html-browse-image): Ditto.
240         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
241         to browse the image directly.
242         (gnus-html-wash-tags): Search for images first, so that <a><img> works
243         better.
244
245         * gnus-async.el (gnus-async-article-callback): Call
246         `gnus-html-prefetch-images' unconditionally.
247
248         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
249         before feeding URLs to curl.
250
251 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
252
253         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
254         internal images as deletable by `W D D'.
255
256         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
257         (gnus-async-article-callback): Fix typo.
258
259 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
260
261         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
262         current line to work around bugs in the output from w3m.
263
264         * gnus-async.el (gnus-async-article-callback): Always prefetch images
265         for groups that want that.
266
267         * nntp.el (nntp-wait-for-string): Supply a timeout for
268         accept-process-output to ensure progress.
269
270         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
271         level to get unread articles from, then use that for foreign groups,
272         too.
273
274         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
275         confuses the rest of the function.
276
277         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
278         for the methods that support -retrieve-groups, too.
279
280         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
281
282 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
283
284         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
285         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
286
287         * pop3.el: Require cl when compiling.
288         (pop3-number-of-responses): Search for "+OK", not "+OK ".
289
290 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
291
292         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
293         that aren't going to be activated.
294         (gnus-get-unread-articles): Fix up the last commit.
295
296         * gnus-html.el (gnus-article-html): Allow calling without specifying
297         the handle.  In that case, dissect the buffer first.
298
299         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
300
301         * nnimap.el (nnimap-open-connection): Revert the change that would look
302         into authinfo for imaps instead of imap.
303
304         * gnus-start.el (gnus-activate-group): Take an optional parameter to
305         say that you don't want to call gnus-request-group with don-check, but
306         do check the reponse.  This is for virtual groups only.
307         (gnus-get-unread-articles): Count the archive groups as secondary, so
308         that they're activated the same way as before.
309
310         * imap.el (imap-message-map): Removed optional buffer parameter, since
311         no callers use it.
312         (imap-message-get): Ditto.
313         (imap-message-put): Ditto.
314         (imap-mailbox-map): Ditto.
315         (imap-mailbox-put): Ditto.
316         (imap-mailbox-get): Ditto.
317         (imap-mailbox-get): Revert last change for this function.
318
319         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
320         case-insensitively.
321         (nnimap-debug): Removed.
322
323         * imap.el (imap-fetch-safe): Removed function, and altered all callers
324         to use `imap-fetch' instead.  According to the comments, this should be
325         safe, since all other IMAP clients use the 1:* syntax.
326         (imap-enable-exchange-bug-workaround): Removed.
327         (imap-debug): Removed -- doesn't seem very useful.
328
329         * mail-source.el (mail-source-fetch): Don't message if we're fetching
330         mail from a file, and the file doesn't exist.
331
332         * imap.el (imap-log): New convenience function used throughout instead
333         of repeating the same code all over the place.
334
335         * pop3.el (pop3-streaming-movemail): Return t for success.
336
337         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
338         .authinfo if we're using ssl connection.
339
340         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
341         already have if we're in a main Gnus `g' run.
342
343         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
344
345 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
346
347         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
348
349         * nnmh.el (nnmh-request-list-1): Bind `file'.
350
351         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
352         alias to set-process-query-on-exit-flag or process-kill-without-query.
353         (pop3-open-server): Use it.
354
355 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
356
357         * mail-source.el (mail-source-delete-crash-box): Always move the crash
358         box to the Incoming file.  Fixes mistake in previous checkin.
359
360         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
361         request loop (for debugging purposes) removed.
362
363         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
364         culprit is more visible.
365         (nnml-save-incremental-nov, nnml-open-incremental-nov)
366         (nnml-add-incremental-nov): New functions to do "incremental" nov
367         updates, where we just append to the end of the existing nov files
368         without reading/writing them in full.
369
370         * mail-source.el (mail-source-delete-crash-box): Really only check the
371         incoming files once in a while.
372
373         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
374
375         * mail-source.el (mail-source-delete-crash-box): Only check the
376         incoming files for deletion once per day to save a lot of file
377         accesses.
378
379         * pop3.el (pop3-logon): Fix up unbound variable typo.
380
381         * mail-source.el (pop3-streaming-movemail): Autoload.
382
383         * pop3.el (pop3-streaming-movemail): Respect
384         pop3-leave-mail-on-server.
385
386         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
387         retrieval.
388
389         * pop3.el (pop3-process-filter): Removed unused function.
390         (pop3-streaming-movemail, pop3-send-streaming-command)
391         (pop3-wait-for-messages, pop3-write-to-file)
392         (pop3-number-of-responses): New functions for streaming pop3
393         retrieval.
394
395         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
396         come from no known methods.
397         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
398         list.
399
400         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
401         message sizes.
402         (pop3-movemail): Use erase-buffer instead of looping and deleting
403         regions, which seems rather odd.
404
405         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
406         file once per `g' run.
407
408         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
409         directories.  This makes the draft queue directory work.
410
411         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
412         data from the backends, so that we only request the list of groups from
413         each method once.  This should speed things up considerably.
414
415         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
416         detect that it's not implemented.
417
418         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
419         we actually do recurse down into the tree, but don't stat all leaf
420         nodes.
421
422         * gnus-html.el (gnus-html-show-images): If there are no images to show,
423         then say so instead of bugging out.
424
425         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
426         files exist before trying to read them.
427
428         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
429         around <pre_int>.
430
431         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
432
433         * nnmh.el (nnmh-request-list-1): Optimize for speed.
434
435 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
436
437         * mm-util.el (mm-image-load-path): Just return the image directories,
438         not all directories in the path in addition to the image directories.
439         (mm-image-load-path): Maintain a cache of the image directories so that
440         the `g' command in Gnus doesn't have to stat dozens of directories each
441         time.
442
443         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
444         (gnus-html-wash-tags): Add a new `i' command to insert images.
445         (gnus-html-insert-image): New command and keystroke.
446         (gnus-html-redisplay-with-images): New command and keystroke.
447         (gnus-html-show-images): Renamed command.
448         (gnus-html-wash-tags): Remove more white space before <pre_int> image
449         spacers.
450         (gnus-html-wash-tags): Decode entities at the end, so that entities
451         inside the tags don't mess up the rest of the "parsing".
452
453         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
454         so that nnimap methods aren't agentized by default.  There's apparently
455         many problems related to agent/imap behaviour.
456
457         * gnus-art.el (gnus-article-copy-string): New command and key binding.
458
459         * gnus-html.el: Doc fix.
460
461 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
462
463         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
464         specifier-spec-list for Emacs 21.
465
466         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
467         glyph-width and glyph-height instead of display-graphic-p and
468         image-size; make avoidance of displaying small images work for XEmacs.
469
470         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
471         for XEmacs.
472
473         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
474         of symbol that holds plist data.
475         (gnus-process-plist): Remove plist of process after getting it.
476
477 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
478
479         * message.el (message-generate-hashcash): Change default to
480         'opportunistic if hashcash is installed.
481
482         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
483         (gnus-html-put-image): Only call image-size once, since it's somewhat
484         time-consuming on remote X servers.
485
486 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
487
488         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
489         type on data, not a file name.
490
491         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
492         window-pixel-edges for Emacs 21.
493
494         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
495         decoded contents.
496         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
497
498 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
499
500         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
501         group line format, since it isn't very interesting.
502
503         * gnus-agent.el (gnus-agent-short-article),
504         (gnus-agent-long-article): Increase values for these two variables,
505         since most people are likely to have more network connection and
506         storage than before.
507
508         * gnus.el (gnus-refer-article-method): Change default to 'current.
509         When referring an article, the common behaviour is to refer it from the
510         current select method, not the native select method.  The chances of
511         the native select method having the message in question is rather slim
512         these days.
513
514         * gnus-sum.el (gnus-auto-select-subject): Change default to
515         `unseen-or-unread'.  I think it's likely that most people want to
516         select an unseen article over a previously seen, but unread one.
517
518         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
519         means that in the article buffer none of the minor mode elements will
520         be shown, usually, and this is not desirable in most cases.
521
522         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
523         that commands like `d' (and the like) go to the next line in the
524         buffer, instead of the next unread article.  I think this is the
525         behaviour that is most natural for most users.
526         (gnus-single-article-buffer): Change default to nil, so that people can
527         have as many article buffers open as they have summary buffer.  I think
528         this is the most natural way for the groups to behave.
529
530         * message.el (message-generate-new-buffers): Change default to
531         `unsent', so that all new message buffers start their names with the
532         string "*unsent", and it's easier to find the buffers if you move from
533         them.
534
535 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
536
537         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
538         small. They're probably tracking images.
539         (gnus-html-wash-tags): Remove all <pre_int> place holders.
540         (gnus-html-rescale-image): Yet another try at getting the image sizing
541         right.
542
543         * nntp.el (nntp-request-set-mark): Refuse to do marks if
544         nntp-marks-file-name is nil.
545
546 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
547
548         * gnus-html.el (gnus-html-wash-tags)
549         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
550         Better logging.
551
552 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
553
554         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
555
556         * gnus-html.el (gnus-html-wash-tags): Check the value of
557         gnus-blocked-images in the summary buffer.
558
559 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
560
561         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
562
563 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
564
565         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
566         like "a", it seems like.
567         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
568         since it needs to be picked from the correct buffer.
569
570         * nnwfm.el: Removed.
571
572         * nnlistserv.el: Removed.
573
574 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
575
576         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
577         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
578
579 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
580
581         * nnkiboze.el: Removed.
582
583         * nndb.el: Removed.
584
585         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
586         alt text.
587         (gnus-html-rescale-image): Try to get the rescaling logic right for
588         images that are just wide and not tall.
589
590         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
591         overshadow variable bindings.
592
593 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
594
595         * gnus-html.el (gnus-html-wash-tags)
596         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
597         extra logging.
598
599 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
600
601         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
602         (gnus-max-image-proportion): New variable.
603         (gnus-html-rescale-image): New function.
604         (gnus-html-put-image): Rescale images.
605
606 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
607
608         Fix up some byte-compiler warnings.
609         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
610         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
611         (gnus-article-fill-cited-article, gnus-article-hide-citation)
612         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
613         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
614         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
615         (gnus-group-update-group): Use save-excursion and with-current-buffer.
616
617 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
618
619         * gnus-html.el (gnus-article-html): Decode contents by charset.
620
621 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
622
623         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
624         (gnus-html-frame-width, gnus-blocked-images)
625         * message.el (message-prune-recipient-rules): Add custom version.
626         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
627
628         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
629         functions.
630
631         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
632         gnus-process-get.
633
634 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
635
636         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
637         instead of lsub directly.
638
639 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
640
641         * nnwarchive.el: Removed.
642
643         * gnus-soup.el: Removed.
644
645         * nnsoup.el: Removed.
646
647         * nnultimate.el: Removed.
648
649         * gnus-html.el (gnus-blocked-images): New variable.
650
651         * message.el (message-prune-recipients): New function.
652         (message-prune-recipient-rules): New variable.
653
654         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
655         guess whether a long line is natural text or not.
656
657         * gnus-html.el (gnus-html-schedule-image-fetching): Use
658         gnus-process-plist and friends for compatibility.
659
660 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
661
662         * gnus-html.el: Require packages that define macros used in this file.
663         (gnus-article-mouse-face): Declare to silence byte-compiler.
664         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
665         process-get.
666         (gnus-html-put-image): Use plist-get to avoid getf.
667         (gnus-html-prefetch-images): Use with-current-buffer.
668
669 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
670
671         * gnus-ems.el: Provide compatibility functions for
672         gnus-set-process-plist.
673
674         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
675         header-line-format for XEmacs 21.4.
676
677         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
678         * gnus.el (gnus-valid-select-methods)
679         * message.el (message-send-mail-partially-limit)
680         * mm-decode.el (mm-text-html-renderer)
681         * mml.el (mml-insert-mime-headers-always)
682         * smiley.el (smiley-regexp-alist): Bump custom version.
683
684 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
685
686         * gnus-html.el: require mm-url.
687         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
688         with the url to `url'.
689         (gnus-html-wash-tags): Support cid: URLs/images.
690
691 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
692
693         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
694         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
695         bindings, as they aren't useful at all. `w' is moved to `W w'.
696
697         * gnus-move.el: Removed file, since it doesn't really work.
698
699         * gnus-html.el (gnus-article-html): Tell w3m that the input is
700         UTF-8. This seems to fix problems with some German web feeds.
701
702         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
703         at the top so that the proper colours are applied.
704
705         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
706         don't have dots in their names.
707
708         * gnus-art.el (gnus-article-view-part): Doc fix.
709
710         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
711         XEmacs-compatible.
712         (gnus-html-put-image): Don't do images on non-graphic displays.
713
714         * nnslashdot.el: Removed this unused backend.
715
716         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
717         actions.
718         (gnus-undo-register-1): Revert last change.
719
720         * gnus-group.el (gnus-group-completing-read): Protect against not
721         having completion-styles bound.
722
723         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
724         make broken recipients happier.
725
726         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
727
728         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
729         point parameter.
730
731         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
732
733         * gnus-group.el (gnus-group-completing-read): Add 'substring to
734         completion-styles for group selection.
735
736 2009-02-04  Andreas Schwab  <schwab@suse.de>
737
738         * gnus-score.el (gnus-score-string): Fix regex for matching extra
739         headers and regexp-quote the match if necessary.
740
741 2009-03-24  Miles Bader  <miles@gnu.org>
742
743         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
744         the blinking smiley.
745
746 2009-03-24  Simon Josefsson  <simon@josefsson.org>
747
748         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
749         blink smiley.
750
751 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
752
753         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
754         where the dribbel file lives exists.
755
756         * message.el (message-send-mail-partially-limit): Change the default to
757         nil, since most people don't want this.
758
759         * mm-url.el (mm-url-decode-entities): Also decode entities like
760         &#x3212.
761
762 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
763
764         * gnus-sum.el (gnus-summary-idna-message):
765         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
766         Hyperlink urls in docstrings with URL `...'.
767
768 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
769
770         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
771         functions.
772
773 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
774
775         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
776         say what the mouseover text should be.
777
778         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
779         version of the mm-w3m-safe-url-regexp variable to only download images
780         in the groups where we want that to happen.
781
782         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
783
784         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
785         easier debugging.
786         (gnus-article-beginning-of-window): Add kludge to allow spacing past
787         big pictures in the article buffer.
788
789         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
790         gnus-article-html.
791         (mm-text-html-renderer): gnus-article-html needs curl in addition to
792         w3m.
793
794         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
795
796 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
797
798         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
799         which doesn't exist.
800
801         * message.el (message-inhibit-ecomplete): New variable to allow some
802         function to inhibit ecomplete address storage.
803         (message-resend): Disable ecomplete message storage when resending
804         messages.
805
806         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
807
808 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
809
810         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
811         Save excursion while copying, moving, and deleting articles in order to
812         prevent the cursor from jumping to unforeseen place.
813
814 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
815
816         * lpath.el: No need to bind bookmark-current-buffer,
817         bookmark-yank-point and bookmark-make-record-function.
818
819 2010-08-17  Glenn Morris  <rgm@gnu.org>
820
821         * gnus-sync.el: Require gnus components whose functions are used.
822
823         * gnus-art.el (bookmark-make-record-function):
824         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
825         Declare for compiler.
826
827         * mm-url.el (mml-compute-boundary): Autoload.
828
829 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
830
831         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
832
833 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
834
835         Typo fix "hoo4a" -> "hook".
836
837         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
838
839 2010-08-14  Glenn Morris  <rgm@gnu.org>
840
841         * gnus-sync.el (gnus-sync): Fix defgroup version.
842
843 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
844
845         Doc fixes and keep unknown groups (ammended for nunion bug fix).
846
847         * gnus-sync.el: Fix docs.
848         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
849         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
850
851 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
852
853         Optimizations for gnus-sync.el.
854
855         * gnus-sync.el: Add docs about gnus-sync-backend
856         possibilities.
857         (gnus-sync-save): Remove unnecessary message.
858         (gnus-sync-read): Optimize and show what groups were skipped.
859
860 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
861
862         Minor bug fixes for gnus-sync.el.
863
864         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
865         read the sync on get-new-news.
866
867         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
868         quiet.
869
870         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
871
872 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
873
874         Make saving and restoring of hidden threads work with overlays.
875         Patch applied by Ted Zlatanov.
876
877         * gnus-sum.el (gnus-hidden-threads-configuration)
878         (gnus-restore-hidden-threads-configuration): Update to deal with text
879         properties, rather than searching for a magic character.
880
881 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
882
883         New gnus-sync.el library for synchronization of marks.
884
885         * gnus-sync.el: New library for synchronization of marks.
886
887         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
888         renamed from `gnus-registry-grep-in-list'.
889
890         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
891
892         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
893
894 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
895
896         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
897         determining charset of text fails.
898
899 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
900
901         * nnmail.el (nnmail-get-new-mail-1): Revert.
902
903         * nnml.el (nnml-active-number): Make sure names of newly created groups
904         in nnml-group-alist are encoded.
905
906 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
907
908         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
909         containing non-ASCII characters in active file for nnml back end.
910
911 2010-07-24  David Engster  <dengste@eml.cc>
912
913         * mml-smime.el (mml-smime-epg-verify): Also accept the older
914         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
915
916 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
917
918         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
919         tag (Bug#6654).
920
921 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
922
923         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
924         the article buffer, not the summary buffer.
925
926 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
927
928         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
929         Emacs 23 as well.
930
931 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
932
933         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
934         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
935
936 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
937
938         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
939         Patch applied by Karl Fogel.
940
941         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
942         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
943
944 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
945
946         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
947         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
948         C-w still not working correctly from Article buffers; Thierry's
949         patch to fix that will be applied after this.
950
951         * gnus-art.el (bookmark-make-record-function): New local variable.
952
953         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
954         article buffer.
955         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
956
957 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
958
959         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
960         on changes in bookmark.el.
961
962 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
963
964         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
965         `no-log' instead of message not to log prompt string.
966
967 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
968
969         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
970         the *other* type of HTML form submission.
971
972 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
973
974         * auth-source.el (auth-source-pick): If choice does not contain a
975         questioned keyword, set the check to t.
976
977 2010-06-12  Romain Francoise  <romain@orebokech.com>
978
979         * gnus-util.el (gnus-date-get-time): Move up before first use.
980
981 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
982
983         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
984         (gnus-article-edit-part): Bind it to make last part that is substituted
985         or deleted visible.
986         (gnus-mime-display-single): Buttonize part of which id equals to
987         gnus-mime-buttonized-part-id.
988
989 2010-06-10  Dan Christensen  <jdc@uwo.ca>
990
991         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
992         (gnus-dd-mmm): Use gnus-date-get-time.
993         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
994         simplify logic.
995         (gnus-summary-limit-to-age): Use gnus-date-get-time.
996         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
997
998 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
999
1000         * auth-source.el (top): Autoload `secrets-list-collections',
1001         `secrets-create-item', `secrets-delete-item'.
1002         (auth-sources): Fix tag string.
1003         (auth-get-source, auth-source-retrieve, auth-source-create)
1004         (auth-source-delete): New defuns.
1005         (auth-source-pick): Rewrite in order to avoid 2 passes.
1006         (auth-source-forget-user-or-password): New parameter USERNAME.
1007         (auth-source-user-or-password): New parameters CREATE-MISSING and
1008         DELETE-EXISTING.  Retrieve password interactively, if needed.
1009
1010 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1011
1012         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1013         deleting unused directories when gnus-expert-user is t.
1014
1015 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1016
1017         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1018         for each temp file when gnus-article-browse-delete-temp is ask.
1019
1020 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1021
1022         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1023         Lisp calls to delete-backward-char by calls to delete-char.
1024
1025 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1026
1027         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1028
1029 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1030
1031         * password-cache.el (password-cache-remove): Fix docstring.
1032
1033 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1034
1035         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1036         article unless decoding article to be saved.
1037
1038 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1039
1040         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1041         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1042         generated within the mm-with-unibyte-current-buffer macro.
1043
1044 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1045
1046         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1047         to nil when we're in a mml-preview buffer and no group is selected.
1048
1049 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1050
1051         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1052         when catching the `C-g'.  Reported by "Leo".
1053
1054 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1055
1056         * message.el (message-forward-make-body-plain)
1057         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1058         multibyte-string-p.
1059
1060         * lpath.el: Revert.
1061
1062 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1063
1064         * message.el (message-forward-make-body-mml): Assume original message
1065         is multibyte string; error on unibyte.
1066         (message-forward-make-body-plain): Ditto; don't add excessive newline
1067         in body end.
1068
1069         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1070
1071 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1072
1073         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1074         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1075
1076 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1077
1078         * mm-extern.el (mm-extern-url): Don't use
1079         mm-with-unibyte-current-buffer.
1080         (mm-extern-cache-contents): Use with-current-buffer instead of
1081         save-excursion + set-buffer.
1082
1083 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1084
1085         * mm-util.el (mm-emacs-mule): Remove.
1086
1087 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1088
1089         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1090         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1091         change.
1092
1093 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1094
1095         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1096         bind the default value of enable-multibyte-characters to nil.
1097
1098 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1099
1100         * message.el (message-forward-make-body-plain)
1101         (message-forward-make-body-mml):
1102         Don't use mm-with-unibyte-current-buffer.
1103
1104 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1105
1106         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1107
1108 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1109
1110         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1111         (Bug#5592).
1112
1113 2010-05-07  Julien Danjou  <julien@danjou.info>
1114
1115         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1116         it to mm-pipe-part.
1117
1118         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1119         it is given.
1120
1121 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1122
1123         * binhex.el (binhex-decode-region-internal)
1124         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1125         (dns-query)
1126         * nnweb.el (nnweb-gmane-search)
1127         * pgg-parse.el (pgg-parse-armor)
1128         * pgg.el (pgg-verify-region)
1129         * sha1.el (sha1-string-external)
1130         * uudecode.el (uudecode-decode-region-internal)
1131         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1132         XEmacs.
1133
1134         * gnus-art.el (gnus-article-browse-html-parts)
1135         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1136         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1137         make-temp-file.
1138
1139         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1140         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1141         compiling.
1142
1143         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1144         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1145         XEmacs when compiling.
1146
1147         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1148         gnus-pick-mode-off-hook for XEmacs when compiling.
1149         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1150         gnus-binary-mode-off-hook for XEmacs when compiling.
1151
1152         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1153         nil if char-charset is not available.
1154
1155         * imap.el (imap-disable-multibyte)
1156         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1157         macros.
1158
1159         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1160         instead of encode-coding-string.
1161
1162         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1163         'xemacs) instead of mm-emacs-mule to switch function definitions.
1164         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1165
1166         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1167         bind temporary-file-directory for XEmacs;
1168         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1169         timer-set-function for XEmacs 21.4 and SXEmacs;
1170         bind timer-list for XEmacs 21.4 and SXEmacs;
1171         fbind char-charset and find-charset-region for non-Mule XEmacs;
1172         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1173         encode-coding-region and encode-coding-string for XEmacs having no
1174         file-coding feature.
1175
1176 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1177
1178         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1179
1180 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1181
1182         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1183         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1184
1185 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1186
1187         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1188         alias `jka-compr-delete-temp-file' no longer exists.
1189
1190 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1191
1192         Use define-minor-mode in Gnus where applicable.
1193         * mml.el (mml-mode): Use define-minor-mode.
1194         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1195         (gnus-undo-mode): Use define-minor-mode.
1196         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1197         (gnus-dead-summary-mode): Use define-minor-mode.
1198         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1199         Initialize in declaration.
1200         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1201         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1202         (gnus-mailing-list-mode): Use define-minor-mode.
1203         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1204         (gnus-draft-mode): Use define-minor-mode.
1205         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1206         (gnus-dired-mode): Use define-minor-mode.
1207
1208 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1209
1210         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1211         handles on recursive mml-to-mime translation and check them for
1212         boundary delimiter collisions.  Reported by Greg Troxel.
1213
1214 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1215
1216         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1217
1218 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1219
1220         * mm-util.el (mm-find-buffer-file-coding-system):
1221         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1222
1223 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1224
1225         * message.el (message-generate-headers): Record insertion of optional
1226         headers as well.  Otherwise the check to prevent repeated insertion of
1227         optional headers is a no-op.
1228
1229 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1230
1231         * smime.el: Don't mention CVS.
1232
1233         * nnrss.el (nnrss-fetch): Don't mention CVS.
1234
1235         * nnir.el: Don't mention CVS.
1236
1237 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1238
1239         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1240
1241 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1242
1243         * lpath.el: Fbind bookmark-default-handler,
1244         bookmark-get-bookmark-record, bookmark-make-record-default,
1245         bookmark-prop-get for Emacs <23 and XEmacs.
1246
1247 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1248
1249         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1250         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1251         Use with-current-buffer to silence the byte-compiler.
1252         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1253         bother to require `gnus'.
1254         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1255
1256 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1257
1258         * gnus-sum.el (gnus-summary-bookmark-make-record)
1259         (gnus-summary-bookmark-jump): New functions.
1260         (gnus-summary-mode): Setup bookmark support.
1261
1262 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1263
1264         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1265         if set.
1266
1267 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1268
1269         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1270         gnus-article-browse-html-save-cid-image; make it work recursively for
1271         forwarded messages as well.
1272         (gnus-article-browse-html-parts): Work when prefix arg is given.
1273         (gnus-article-browse-html-article): Doc fix.
1274
1275 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1276
1277         * message.el (message-default-mail-headers):
1278         (message-default-headers): Carry the value mail-default-headers over
1279         into message-default-mail-headers, rather than message-default-headers.
1280
1281 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1282
1283         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1284         charset.
1285
1286         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1287         charset into the <meta> tag when the article is encoded to utf-8.
1288
1289 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1290
1291         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1292         directories as well.
1293         (gnus-article-browse-html-parts): Work for images that do not specify
1294         file names; delete temp directory when quitting; insert header at the
1295         right place; use file: scheme for image files.
1296
1297 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1298
1299         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1300         (gnus-article-browse-html-parts): Use it to make temporary cid image
1301         files in addition to html file so that browser may display them.
1302
1303 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1304
1305         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1306
1307 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1308
1309         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1310
1311 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1312
1313         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1314         about Secret Service API sources.  Improve Customize options.
1315         (auth-source-pick): Change to accept any number of search parameters.
1316         Implement fallbacks iteratively, not recursively.  Add scoring on the
1317         second pass and sort by score.  Call Secret Service API when needed.
1318         (auth-source-user-or-password): Use it.  Call Secret Service API
1319         directly when needed to get the user name and the password.
1320
1321 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1322
1323         * message.el (message-interactive): Doc fix.
1324         (message-qmail-inject-args): Reflow.
1325         (message-kill-to-signature): Fix typo in docstring.
1326
1327         * smiley.el (smiley-buffer): Fix typo in docstring.
1328
1329 2010-03-24  Glenn Morris  <rgm@gnu.org>
1330
1331         * mail-source.el (gnus-message): Declare.
1332         (mail-source-delete-old-incoming): Require gnus-util.
1333
1334 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1335
1336         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1337
1338         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1339
1340         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1341         password-cache's default if it is not bound.
1342         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1343         password-cache-expiry's default if it is not bound.
1344
1345         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1346         available in Emacs 21.
1347
1348         * lpath.el: Suppress compiler warnings for:
1349         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1350         XEmacs;
1351         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1352         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1353         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1354
1355 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1356
1357         * auth-source.el (auth-sources): Fix up definition so extra parameters
1358         are always inline.
1359
1360 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1361
1362         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1363         wasn't updated after mismatch.  Clear cached mailbox info correctly
1364         when uidvalidity changes.
1365         (nnimap-group-prefixed-name): New function to avoid some code
1366         duplication.
1367         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1368         (nnimap-request-group): Use it.
1369         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1370         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1371         with many imap folders.  This is done by caching the group status from
1372         the imap server persistently in a group parameter `imap-status'.  (This
1373         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1374         but not persistently, so every Gnus startup was still very slow.)
1375
1376 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1377
1378         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1379         delete the extra newline.  Otherwise editing of :string and :number
1380         types don't work.
1381
1382 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1383
1384         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1385         secrets.el dependency.
1386         (auth-sources): Add optional user name.  Add secrets.el configuration
1387         choice (unused right now).
1388
1389 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1390
1391         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1392         `gnus-registry-install-shortcuts' fill in the functions.
1393
1394         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1395         warnings.
1396         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1397         (gnus-registry-install-shortcuts): Populate and use it in a
1398         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1399
1400 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1401
1402         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1403         In-place substitutions for the group name encoding/decoding.
1404         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1405         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1406         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1407         (nnimap-update-unseen, nnimap-request-list)
1408         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1409         (nnimap-request-set-mark, nnimap-split-to-groups)
1410         (nnimap-split-articles, nnimap-request-newgroups)
1411         (nnimap-request-create-group, nnimap-request-accept-article)
1412         (nnimap-request-delete-group, nnimap-request-rename-group)
1413         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1414         `encoded-mbx' for consistency.
1415         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1416         variable `imap-current-mailbox'.
1417
1418         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1419         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1420
1421 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1422
1423         * pop3.el (pop3-display-message-size-flag): Display message size byte
1424         counts during POP3 download.
1425         (pop3-movemail): Use it.
1426         (pop3-list): Implement listing of available messages.
1427
1428 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1429
1430         * nnir.el (nnir-get-article-nov-override-function): New function to
1431         override the normal NOV retrieval.
1432         (nnir-retrieve-headers): Use it.
1433
1434 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1435
1436         * auth-source.el (netrc-machine-user-or-password): Autoload.
1437
1438 2010-03-19  Glenn Morris  <rgm@gnu.org>
1439
1440         Stop message.el from loading about 40 libraries it doesn't always need.
1441         The general approach is to autoload rather than require, and to
1442         require in the specific functions rather than the file.  (Bug#5642)
1443
1444         * gmm-utils.el: Don't require wid-edit.
1445         (widget-create-child-value, widget-convert, widget-default-get):
1446         Autoload.
1447
1448         * gnus-util.el: Don't require time-date, netrc.
1449         (message-fetch-field, gnus-group-name-decode): Declare rather than
1450         autoloading.
1451         (gnus-fetch-field): Require message.
1452         (gnus-decode-newsgroups): Require gnus-group.
1453
1454         * ietf-drums.el: Don't require time-date.
1455
1456         * message.el: Don't require hashcash, canlock, ecomplete.
1457         Do require mail-utils.  Require nnheader only when compiling.
1458         (smtpmail-default-smtp-server): Remove declaration.
1459         (message-send-mail-function): Check smtpmail-default-smtp-server
1460         is bound rather than requiring smtpmail.
1461         (message-auto-save-directory, message-insert-signature): Use
1462         expand-file-name rather than nnheader-concat.
1463         (nnheader-insert-file-contents): Autoload.
1464         (hashcash-wait-async): Declare.
1465         (message-send-mail): Only call gnus-setup-posting-charset if
1466         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1467         (message-send-mail-with-sendmail): Require sendmail.
1468         (canlock-password, canlock-password-for-verify): Declare.
1469         (message-canlock-password): Require canlock.
1470         (nnheader-get-report): Autoload.
1471         (gnus-setup-posting-charset): Declare.
1472         (message-send-news): Require gnus-msg.
1473         (message-make-references, message-make-in-reply-to): Use mail-header-id
1474         rather than the alias mail-header-message-id.
1475         (ecomplete-add-item, ecomplete-save): Declare.
1476         (message-put-addresses-in-ecomplete): Require ecomplete.
1477         (ecomplete-display-matches): Autoload.
1478
1479         * mm-decode.el: Don't require mailcap, gnus-util.
1480         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1481         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1482         Autoload.
1483         (mailcap-mime-extensions): Declare.
1484
1485         * mm-encode.el: Don't require mailcap.
1486         (mailcap-extension-to-mime): Autoload.
1487
1488         * mml-sec.el: Don't require password-cache.
1489
1490         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1491         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1492         (mml-minibuffer-read-type): Require mailcap.
1493         (mml-preview): Require gnus-msg.
1494
1495         * mml1991.el: Require password-cache.
1496         (password-cache-expiry): Remove declaration.
1497
1498         * mml2015.el: Require password-cache.
1499         (password-cache-expiry): Remove declaration.
1500
1501         * nneething.el (mailcap): Require mailcap.
1502
1503         * nnheader.el (declare-function): Add compatibility stub.
1504         (message-remove-header): Declare rather than autoload.
1505         (nnheader-replace-header): Require message.
1506
1507         * nnimap.el (declare-function): Add compatibility stub.
1508         (netrc-parse, netrc-machine-user-or-password): Declare.
1509         (nnimap-open-connection): Require netrc.
1510
1511         * nntp.el (declare-function): Add compatibility stub.
1512         (netrc-parse, netrc-machine, netrc-get): Declare.
1513         (nntp-send-authinfo): Require netrc.
1514
1515         * rfc2047.el: Don't require qp.
1516         (quoted-printable-encode-region, quoted-printable-decode-string):
1517         Autoload.
1518
1519         * sieve-mode.el: Don't require easymenu.
1520         (easy-menu-add-item): Autoload it.
1521
1522         * spam-stat.el (time-to-number-of-days): Autoload it.
1523
1524 2010-03-19  Glenn Morris  <rgm@gnu.org>
1525
1526         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1527
1528 2010-03-18  Glenn Morris  <rgm@gnu.org>
1529
1530         * hashcash.el (declare-function): Remove duplicate definition.
1531
1532 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1533
1534         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1535         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1536         value if any backslash escapes).
1537
1538 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1539
1540         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1541         if it is available.  (bug#5647)
1542
1543         * lpath.el: Suppress compiler warning for coding-system-from-name for
1544         Emacs 21 and XEmacs.
1545
1546 2010-03-14  Juri Linkov  <juri@jurta.org>
1547
1548         * hmac-def.el:
1549         * hmac-md5.el:
1550         * netrc.el: Fix keywords.
1551
1552 2010-02-26  Glenn Morris  <rgm@gnu.org>
1553
1554         * message.el (message-send-mail-function): Change the default, so that
1555         it inherits from a customized send-mail-function.  (Bug#5643)
1556
1557 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1558
1559         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1560         shell-command-to-string signals an error (bug#5299).
1561
1562 2010-02-24  Glenn Morris  <rgm@gnu.org>
1563
1564         * message.el (message-smtpmail-send-it)
1565         (message-send-mail-with-mailclient): Doc fixes.
1566
1567 2010-02-16  Glenn Morris  <rgm@gnu.org>
1568
1569         * message.el (message-default-mail-headers): Change the default value
1570         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1571
1572 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1573
1574         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1575         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1576
1577 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1578
1579         * time-date.el (date-to-time): Doc fix (Bug#5408).
1580
1581 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1582
1583         * message.el (message-mail): Just pass yank-action on to message-setup.
1584         (message-setup): Handle (FUN . ARGS) form of yank-action.
1585         (message-with-reply-buffer, message-widen-reply)
1586         (message-yank-original): Handle non-buffer values of
1587         message-reply-buffer (Bug#4080).
1588         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1589
1590 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1591
1592         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1593         Fix typo in docstring.
1594
1595 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1596
1597         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1598         response.
1599
1600 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1601
1602         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1603
1604         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1605
1606         * message.el (message-check-news-header-syntax): Protect against a
1607         string that `rfc822-addresses' returns when parsing fails.
1608
1609 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1610
1611         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1612         (gnus-previous-char-property-change): New functions.
1613
1614         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1615
1616 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1617
1618         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1619         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1620
1621 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1622
1623         * message.el (message-exchange-point-and-mark): Rework last change to
1624         avoid using optional arg of exchange-point-and-mark, for backward
1625         compatibility.
1626
1627 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1628
1629         * message.el (message-exchange-point-and-mark): Call
1630         exchange-point-and-mark with an argument rather than setting
1631         mark-active by hand (Bug#5175).
1632
1633 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1634
1635         * nntp.el (nntp-service-to-port): Work for service expressed with
1636         numeric string; replace [:digit:] with [0-9] for XEmacs.
1637
1638 2009-12-17  Glenn Morris  <rgm@gnu.org>
1639
1640         * gnus-group.el (gnus-bug-group-download-format-alist):
1641         Change emacs entry to debbugs.gnu.org.  Bump :version.
1642
1643 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1644
1645         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1646
1647 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1648
1649         * message.el (message-info): Explain why we use `Info-goto-node'.
1650
1651 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1652
1653         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1654
1655 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1656
1657         * message.el (message-completion-in-region): New compatibility function.
1658         (message-expand-group): Use it.
1659
1660 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1661
1662         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1663         with no unread article should be listed if the 2nd arg `predicate' is
1664         given.
1665
1666 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1667
1668         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1669
1670 2009-11-29  Juri Linkov  <juri@jurta.org>
1671
1672         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1673         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1674         on `gnus-recenter'. (Bug#4698, Bug#4981)
1675
1676 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1677
1678         * sha1.el (sha1-string-external): default-directory "/" in case
1679         otherwise non-existent.  process-connection-type pipe for touch of
1680         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1681
1682 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1683
1684         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1685         it's comms related and sgml-mode.el has "comm" on that basis too.
1686
1687 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1688
1689         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1690         containing tspecial characters if they have been already quoted.
1691
1692 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1693
1694         * dns-mode.el (auto-mode-alist): Purecopy string.
1695
1696 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1697
1698         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1699
1700 2009-10-24  Glenn Morris  <rgm@gnu.org>
1701
1702         * gnus-art.el (help-xref-stack-item): Define for compiler.
1703
1704 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1705
1706         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1707
1708 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1709
1710         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1711
1712 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1713
1714         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1715         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1716
1717 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1718
1719         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1720         (gnus-overlays-in): New alias to overlays-in.
1721
1722         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1723         gnus-overlay-get, and gnus-delete-overlay.
1724         (gnus-summary-show-thread): Make it work as well for systems in which
1725         next-single-char-property-change is not available.
1726         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1727
1728         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1729         (gnus-overlay-get): New alias to extent-property.
1730         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1731
1732         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1733         SXEmacs.
1734
1735         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1736         SXEmacs.
1737
1738 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1739
1740         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1741
1742 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1743
1744         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1745         and XEmacs that don't have `remove-overlays'.
1746
1747 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1748
1749         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1750         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1751         selective display.  Use overlays instead.
1752
1753 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1754
1755         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1756
1757 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1758
1759         * spam-stat.el (spam-stat-load): Fix typo in message.
1760
1761 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
1762
1763         * dig.el (dig-invoke): Fix typo in docstring.
1764         (query-dig): Reflow docstring.
1765
1766 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1767
1768         * gnus-art.el (gnus-article-encrypt-body):
1769         * message.el (message-check-recipients):
1770         * mm-util.el (mm-codepage-setup):
1771         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1772         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1773
1774 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1775
1776         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1777         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1778         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1779         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1780         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1781
1782 2009-09-21  Kevin Ryde  <user42@zip.com.au>
1783
1784         * dig.el: Add "Keywords: comm", as per net-utils.el.
1785
1786 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1787
1788         * dig.el (dig-mode): Use define-derived-mode.
1789
1790 2009-09-19  Glenn Morris  <rgm@gnu.org>
1791
1792         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
1793
1794 2009-09-18  Glenn Morris  <rgm@gnu.org>
1795
1796         * gnus-diary.el (gnus-diary-check-message):
1797         * message.el (message-insert-formatted-citation-line):
1798         * nnbabyl.el (top-level):
1799         * nndiary.el (nndiary-schedule):
1800         Fix typos in condition-case handlers.
1801
1802 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1803
1804         * gnus-art.el (gnus-article-edit-part): Work for the buffer
1805         configuration that provides the sole article window in a frame;
1806         position point correctly after deleting a part.
1807
1808 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
1809
1810         * spam.el (spam-unregister-on-reregister): Add boolean variable.
1811         (spam-resolve-registrations-routine): Use it to unregister articles
1812         that change status.
1813
1814 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1815
1816         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
1817         with XEmacs.
1818         (parse-time-string-chars): Use it.
1819
1820 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
1821
1822         * imap.el (imap-interactive-login): Better messages.
1823         (imap-open): Fix bug with renamed buffer on reconnect.
1824         (imap-authenticate): Add buffer-local imap-last-authenticator variable
1825         for easier debugging and cleaner code.  On successful (guessed based on
1826         server capabilities) secondary authentication, set imap-state
1827         correctly.
1828         (imap-last-authenticator): Define imap-last-authenticator as a variable
1829         to avoid warnings.
1830
1831 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1832
1833         * nnrss.el (nnrss-request-article): Remove binding of
1834         default-enable-multibyte-characters that has gotten needless by
1835         the 2007-07-13 change in rfc2047-encode-message-header.
1836
1837         * mml.el (mml-insert-multipart): Error on the message header.
1838         (mml-insert-part): Error on the message header; position point at
1839         the end of a MIME tag.
1840
1841 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1842
1843         * time-date.el (autoload): Expand define-obsolete-function-alias into
1844         defalias and make-obsolete for old Emacsen that Gnus supports.
1845         (with-no-warnings): Define it for old Emacsen.
1846         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
1847         is available.
1848         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
1849         float-time is available; suppress compile warning for time-to-seconds.
1850
1851         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
1852         (gnus-float-time): Alias to float-time if it exists.
1853
1854         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
1855         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
1856         float-time is available; suppress compile warning for time-to-seconds.
1857
1858         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
1859         XEmacs.
1860
1861 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
1862
1863         * imap.el (imap-message-map): Docstring fix.
1864
1865 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1866
1867         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
1868         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
1869         Add the optional argument `encoding' that overrides the default.
1870
1871         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
1872         mm-encode-buffer.
1873
1874 2009-09-04  Glenn Morris  <rgm@gnu.org>
1875
1876         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
1877         mm-disable-multibyte, rather than default-enable-multibyte-characters.
1878         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
1879         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
1880         * mm-util.el (mm-with-unibyte-current-buffer)
1881         (mm-find-buffer-file-coding-system):
1882         * yenc.el (yenc-decode-region): Use default-value rather than
1883         default-enable-multibyte-characters.
1884
1885 2009-09-03  Glenn Morris  <rgm@gnu.org>
1886
1887         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
1888         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
1889         than default-enable-multibyte-characters.
1890
1891 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
1892
1893         * gnus-art.el (gnus-article-read-summary-keys):
1894         Fix gnus-buffer-configuration's value temporarily used.
1895
1896 2009-09-02  Glenn Morris  <rgm@gnu.org>
1897
1898         * gnus-util.el (gnus-float-time): New function.
1899         * gnus-delay.el (gnus-delay-article):
1900         * gnus-sum.el (gnus-thread-latest-date):
1901         * gnus-util.el (gnus-user-date): Use gnus-float-time.
1902         * nnspool.el (nnspool-request-newgroups):
1903         Use gnus-float-time rather than time-to-seconds.
1904         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
1905
1906         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
1907         (gnus-header-subject-face, gnus-header-newsgroups-face)
1908         (gnus-header-name-face, gnus-header-content-face):
1909         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
1910         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
1911         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
1912         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
1913         (gnus-cite-face-11):
1914         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
1915         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
1916         (gnus-server-closed-face, gnus-server-denied-face)
1917         (gnus-server-offline-face):
1918         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
1919         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
1920         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
1921         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
1922         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
1923         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
1924         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
1925         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
1926         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
1927         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
1928         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
1929         (gnus-summary-selected-face, gnus-summary-cancelled-face)
1930         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
1931         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
1932         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
1933         (gnus-summary-high-undownloaded-face)
1934         (gnus-summary-low-undownloaded-face)
1935         (gnus-summary-normal-undownloaded-face)
1936         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
1937         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
1938         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
1939         (gnus-splash-face):
1940         * message.el (message-header-to-face, message-header-cc-face)
1941         (message-header-subject-face, message-header-newsgroups-face)
1942         (message-header-other-face, message-header-name-face)
1943         (message-header-xheader-face, message-separator-face)
1944         (message-cited-text-face, message-mml-face):
1945         * sieve-mode.el (sieve-control-commands-face)
1946         (sieve-action-commands-face, sieve-test-commands-face)
1947         (sieve-tagged-arguments-face):
1948         * spam.el (spam-face):
1949         Mark face aliases with "-face" in the name as obsolete.
1950
1951 2009-09-01  Glenn Morris  <rgm@gnu.org>
1952
1953         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
1954         than goto-line.
1955
1956 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1957
1958         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
1959         Don't move point if the command is invoked inside the message header.
1960
1961 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1962
1963         * imap.el (imap-send-command): Simplify.
1964         (imap-wait-for-tag): point-max -> buffer-size.
1965
1966 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1967
1968         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
1969         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
1970         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
1971         * nnir.el (nnir-swish-e-index-file):
1972         * gnus-sum.el (gnus-summary-delete-marked-as-read)
1973         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
1974         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
1975         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
1976         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
1977         (gnus-treat-display-xface): Add Emacs version of obsolescence.
1978
1979 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1980
1981         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
1982         Don't save excursion.
1983
1984 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1985
1986         * nnheader.el (nnheader-find-file-noselect):
1987         * mm-util.el (mm-insert-file-contents):
1988         Use (default-value 'major-mode) instead of default-major-mode.
1989
1990 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1991
1992         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
1993
1994 2009-08-26  Glenn Morris  <rgm@gnu.org>
1995
1996         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
1997         than placing in files.el.
1998
1999 2009-08-25  Glenn Morris  <rgm@gnu.org>
2000
2001         * nnir.el (top-level): Don't require cl at run-time.
2002         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2003         Replace cl-function substitute with gnus-replace-in-string.
2004         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2005         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2006         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2007         simplified expansions.
2008
2009 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2010
2011         * dig.el (dig): Add autoload cookie.
2012
2013 2009-08-22  Glenn Morris  <rgm@gnu.org>
2014
2015         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2016         goto-line.
2017
2018 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2019
2020         * parse-time.el (parse-time-string-chars): Save match data.
2021
2022 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2023
2024         * parse-time.el (parse-time-string-chars): Compute using character
2025         classes, to handle non-ascii characters (Bug#3190).
2026
2027 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2028
2029         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2030
2031         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2032         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2033         (gnus-mm-display-part, gnus-mime-display-single)
2034         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2035         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2036
2037         * gnus-sum.el
2038         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2039         (gnus-summary-move-article): Add expirable mark to articles copied or
2040         moved to group that has auto-expire turned on if the option is non-nil.
2041
2042 2009-07-24  Glenn Morris  <rgm@gnu.org>
2043
2044         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2045         Fix typo.  (Bug#3903)
2046
2047 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2048
2049         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2050         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2051         that should not be used for draft articles.
2052         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2053         that has no concern in minor mode keys.
2054         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2055         Abolish.
2056
2057 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2058
2059         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2060         article without making inquiry to a user for unknown encoding.
2061
2062         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2063         (nnmaildir--scan): Assume i-node and device number that file-attributes
2064         returns might be cons-cell.
2065
2066         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2067
2068         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2069
2070 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2071
2072         * auth-source.el: Remove docs now in auth.texi.  Don't use
2073         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2074         `auth-source-hide-passwords' and use them.
2075
2076 2009-07-15  Glenn Morris  <rgm@gnu.org>
2077
2078         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2079
2080 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2081
2082         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2083         excessive whitespace from the default values of title and description.
2084
2085 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2086
2087         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2088         mail-fetch-field to fetch Content-Description header in order to
2089         exclude newlines.
2090
2091 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2092
2093         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2094         format used by GnuPG 2.0.11.
2095
2096 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2097
2098         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2099         to deleted part.
2100
2101 2009-05-30  David Engster  <dengste@eml.cc>
2102
2103         * nnmairix.el: Remove old documentation in the commentary block.
2104         (nnmairix-request-group): Do not update active file for nnml back ends.
2105         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2106         end so that overview files are ignored.
2107         (nnmairix-update-groups): Make updating the groups more robust by using
2108         marks.
2109         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2110         with dollar characters in message-id.
2111
2112 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2113
2114         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2115         2008-12-25 in dns.el.
2116
2117 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2118
2119         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2120         could happen if the text is only composed of spaces and/or tabs.
2121
2122 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2123
2124         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2125         when sending a queued message to avoid extra mml tags.
2126
2127 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2128
2129         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2130
2131 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2132
2133         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2134         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2135         rmail-toggle-header for XEmacs;
2136         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2137
2138 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2139
2140         * gnus-dired.el: Remove autoload for gnus-setup-message.
2141         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2142         displaying Gnus logo; always use compose-mail.
2143
2144 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2145
2146         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2147
2148 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2149
2150         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2151         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2152         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2153         available.
2154         (gnus-nocem-epg-verify): New function.
2155
2156 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2157
2158         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2159
2160 2009-02-15  Glenn Morris  <rgm@gnu.org>
2161
2162         * gnus-util.el (rmail-insert-rmail-file-header)
2163         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2164         autoloads.
2165         (rmail-default-rmail-file): Remove unnecessary declaration.
2166         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2167
2168 2009-02-14  Glenn Morris  <rgm@gnu.org>
2169
2170         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2171         variable (only used in gnus-util, which declares it anyway).
2172         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2173         which was only needed by gnus-art (changed to not use it any more).
2174         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2175         only used in gnus-util, which autoloads it itself.
2176         (rmail-update-summary): Fix autoload.
2177
2178         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2179         rather than rmail-output-to-rmail-file.
2180
2181 2009-02-07  Glenn Morris  <rgm@gnu.org>
2182
2183         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2184         autoload of function that no longer exists.
2185         (rmail-toggle-header): Declare.
2186         (message-forward-rmail-make-body): Handle mbox Rmail.
2187
2188 2009-01-31  Glenn Morris  <rgm@gnu.org>
2189
2190         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2191         2009-01-09 change.
2192
2193 2009-01-31  Dave Love  <fx@gnu.org>
2194
2195         * imap.el (imap-fetch-safe): Bind debug-on-error.
2196         (imap-debug): Add imap-fetch-safe.
2197
2198 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2199
2200         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2201         (auth-source-forget-all-cached): New convenience function.
2202         (auth-source-user-or-password): Accept list of modes or a single mode.
2203
2204         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2205         auth-source modes.
2206
2207         * netrc.el (netrc-machine-user-or-password): Use list of
2208         auth-source modes.
2209
2210         * nnimap.el (nnimap-open-connection): Use list of
2211         auth-source modes.
2212
2213         * nntp.el (nntp-send-authinfo): Use list of
2214         auth-source modes.
2215
2216 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2217
2218         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2219         now.
2220
2221 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2222
2223         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2224         coding system in XEmacs; add a workaround for XEmacs.
2225
2226         * lpath.el: Fbind coding-system-aliasee.
2227
2228 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2229
2230         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2231         of current-language-environment.
2232
2233 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2234
2235         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2236         available at runtime.
2237
2238 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2239
2240         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2241
2242 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2243
2244         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2245         the greatest positive fixnum value doesn't work under an XEmacs with
2246         bignum support; use the most-positive-fixnum constant instead,
2247         available since Emacs 21.1 with cl and XEmacs 21.1.
2248
2249 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2250
2251         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2252         XEmacs gets not to work.
2253
2254 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2255
2256         * mm-util.el (mm-coding-system-priorities): Allow the value like
2257         "Japanese (UTF-8)" of current-language-environment.
2258
2259 2009-01-09  Glenn Morris  <rgm@gnu.org>
2260
2261         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2262         with last-command-event.
2263
2264 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2265
2266         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2267         in the doc string.
2268
2269         * message.el (message-fix-before-sending): Amend comment.
2270
2271 2009-01-08  Dave Love  <fx@gnu.org>
2272
2273         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2274
2275 2009-01-07  David Engster  <dengste@eml.cc>
2276
2277         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2278         simplified server definitions by converting it via
2279         gnus-server-to-method.
2280
2281 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2282
2283         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2284         parameter's operands.
2285
2286 2009-01-06  David Engster  <dengste@eml.cc>
2287
2288         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2289         primary select method (for gnus-group-mark-article-as-read).
2290
2291 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2292
2293         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2294         `(gnus)Face', not `(gnus)X-Face'.
2295
2296 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2297
2298         * mm-util.el (mm-ucs-to-char): New function.
2299
2300         * mm-url.el (mm-url-decode-entities): Use it.
2301
2302         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2303         unicode-to-char.
2304
2305 2009-01-05  Dave Love  <fx@gnu.org>
2306
2307         * time-date.el: Require cl for `declare'.
2308
2309 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2310
2311         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2312         Dave Love.
2313
2314 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2315
2316         * message.el (message-fix-before-sending): Add `eight-bit' to
2317         illegible-text check.
2318
2319 2009-01-03  Michael Olson  <mwolson@gnu.org>
2320
2321         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2322         `headers' is nil.  This can occur if the IMAP server does not have
2323         permissions to read messages from a folder, but can write new messages
2324         to the folder.
2325         (nnimap-request-article-part): Do not insert `data' if it is nil.
2326
2327         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2328         characters which will confuse `read', so skip past them.
2329
2330 2009-01-01  Dave Love  <fx@gnu.org>
2331
2332         * imap.el (imap-string-to-integer): Fix typo.
2333         (imap-fetch-safe): New function.
2334         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2335
2336         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2337
2338         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2339         (imap-parse-greeting): Fix doc strings.
2340         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2341         (imap-parse-flag-list): Make messages unique.
2342         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2343
2344         * nnimap.el: Fix author email.
2345         (nnimap-split-rule): Add FIXME comment.
2346         (nnimap-debug): Fix doc string.
2347
2348 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2349
2350         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2351
2352 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2353
2354         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2355         nslookup if resolv.conf isn't available.
2356         (dns-query): Rename from query-dns.
2357         (dns-query-cached): Rename from query-dns-cached.
2358
2359 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2360
2361         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2362         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2363         to check if those variables exist (first appeared in Emacs 18.50).
2364
2365 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2366
2367         * mm-util.el (mm-line-number-at-pos): New function.
2368
2369         * spam-report.el (spam-report-process-queue): Use it.
2370
2371 2008-12-24  David Engster  <dengste@eml.cc>
2372
2373         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2374         parameters that haven't existed as variables as buffer-local variables.
2375
2376 2008-12-23  Dave Love  <fx@gnu.org>
2377
2378         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2379         cadar.
2380
2381         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2382         imap-starttls-p.
2383         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2384
2385 2008-12-22  Dave Love  <fx@gnu.org>
2386
2387         * imap.el: Fix author email.  Doc fixes.
2388         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2389         reply.
2390
2391 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2392
2393         * spam-report.el (spam-report-gmane-max-requests): New constant.
2394         (spam-report-gmane-wait): New variable.
2395         (spam-report-gmane-ham, spam-report-gmane-spam)
2396         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2397         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2398         the server.
2399
2400         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2401         Add explanations.
2402
2403         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2404         nnheader-accept-process-output and nnheader-read-timeout if available.
2405         (pop3-movemail): Use it.
2406
2407         * message.el (message-check-news-body-syntax): Fix signature check if
2408         there's an attachment.
2409
2410 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2411
2412         * mm-util.el: Add comments to the mm- emulating functions.
2413
2414 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2415
2416         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2417         by Stephen Berman <stephen.berman@gmx.net>.
2418
2419 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2420
2421         * mm-util.el (mm-substring-no-properties): New function.
2422         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2423         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2424         (mm-string-to-multibyte): Doc fix.
2425
2426         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2427
2428 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2429
2430         * mml.el (mml-attach-file): Strip text properties from file name.
2431         (Bug#1574)
2432
2433 2008-12-16  Glenn Morris  <rgm@gnu.org>
2434
2435         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2436
2437 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2438
2439         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2440         knows since the charset specified might be a bogus alias that
2441         mm-charset-synonym-alist provides.
2442
2443 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2444
2445         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2446         "ISO_8859-1".
2447
2448         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2449
2450 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2451
2452         * mm-util.el (mm-charset-eval-alist):
2453         Define it before mm-charset-to-coding-system.
2454         (mm-charset-to-coding-system): Add optional argument `silent';
2455         define it before mm-charset-override-alist.
2456         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2457         default value if it can be used in Emacs currently running;
2458         silence mm-charset-to-coding-system.
2459
2460 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2461
2462         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2463         `allow-override' which says whether to use `mm-charset-override-alist'.
2464         (rfc2047-decode-encoded-words): Use it.
2465
2466         * mm-util.el (mm-charset-override-alist): Fix custom type;
2467         add `(gb2312 . gbk)' to choices.
2468
2469 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2470
2471         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2472         fast.
2473
2474         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2475
2476         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2477
2478 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2479
2480         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2481         on links.
2482
2483         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2484
2485 2008-12-03  Lute Kamstra  <lute@gnu.org>
2486
2487         * sha1.el: Remove leading * from docstrings of defcustoms,
2488         deffaces, defconsts and defuns.
2489
2490 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2491
2492         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2493         users' addresses that don't have domain parts.
2494         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2495         rather than message-narrow-to-head since there will be the message
2496         header separator.
2497
2498 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2499
2500         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2501         since the result is inserted in a unibyte buffer anyway.
2502         (nnimap-demule-use-string-to-multibyte): Remove.
2503         (nnimap-demule): Alias it to mm-string-to-multibyte.
2504
2505 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2506
2507         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2508         variable for debugging bug#464 and bug#1174.
2509         (nnimap-demule): Use it.
2510
2511 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2512
2513         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2514         score calculation correctly.
2515
2516 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2517
2518         * message.el (message-send-mail): Just set the buffer to unibyte
2519         rather than use mm-with-unibyte-current-buffer which does a lot more.
2520         (message-send-mail-partially): Don't bother with
2521         mm-with-unibyte-current-buffer since it's already been made unibyte by
2522         message-send-mail.
2523
2524 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2525
2526         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2527
2528 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2529
2530         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2531
2532 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2533
2534         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2535         require itself and to remove `with-no-warnings'.
2536
2537 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2538
2539         * starttls.el (starttls-any-program-available): Get the name of the
2540         available TLS layer program.
2541         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2542         well as the host name in the "opening" message.
2543
2544         * auth-source.el (auth-source-cache, auth-source-do-cache)
2545         (auth-source-user-or-password): Cache passwords and logins by default,
2546         allow override with `auth-source-do-cache'.
2547         (auth-source-forget-user-or-password): Allow users to remove cache
2548         entries if needed.
2549
2550 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2551
2552         * md4.el (md4-buffer): Fix typo in docstring.
2553         (md4, md4-64): Doc fixes.
2554         (md4-pack-int32): Reflow docstring.
2555
2556 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2557
2558         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2559         condition-case to only the forward-sexp call.
2560
2561 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2562
2563         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2564         quotes contained.  Make it more robust regardless by an extra
2565         condition-case wrapper.
2566
2567 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2568
2569         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2570
2571 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2572
2573         * nnml.el (nnml-request-expire-articles): Check if the function set to
2574         `nnmail-expiry-target' returns the symbol `delete'.
2575
2576         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2577
2578         * nnmail.el (nnmail-expiry-target): Fix custom type.
2579
2580 2008-10-02  Glenn Morris  <rgm@gnu.org>
2581
2582         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2583         Silence compiler warning.
2584
2585 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2586
2587         * tls.el (open-tls-stream): Show the actual command being
2588         executed, instead of the format string.
2589
2590 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2591
2592         * lpath.el: Fbind codepage-setup for Emacs 23.
2593
2594 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2595
2596         * mml.el (mml-menu): Don't assume mml2015 is bound.
2597
2598 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2599
2600         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2601         exists.
2602
2603 2008-09-27  Glenn Morris  <rgm@gnu.org>
2604
2605         * gnus-util.el (mail-header-remove-comments): Autoload it.
2606
2607 2008-09-27  Andreas Schwab  <schwab@suse.de>
2608
2609         * gnus-util.el (gnus-split-references): Strip comments.
2610         (gnus-parent-id): Likewise.
2611
2612 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2613
2614         * message.el (message-confirm-send): Fix version.
2615
2616 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2617
2618         * message.el (message-idna-to-ascii-rhs-1): Use
2619         mail-extract-address-components rather than mail-header-parse-addresses
2620         that is an alias by default to ietf-drums-parse-addresses that does not
2621         support non-ASCII names in headers' contents.
2622
2623 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2624
2625         * message.el (message-confirm-send): Fixed variable documentation to
2626         avoid the "y/n" wording.
2627
2628 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2629
2630         * message.el (message-set-auto-save-file-name): Save to a different
2631         filename so multiple messages (especially drafts) can be recovered.
2632
2633 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2634
2635         * message.el (message-confirm-send): Add appropriate version.
2636
2637 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2638
2639         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2640         defvar.
2641
2642 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2643
2644         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2645         (mm-pkcs7-enveloped-magic): Ditto.
2646
2647 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2648
2649         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2650         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2651
2652 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2653
2654         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2655         default, it's better.
2656
2657 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2658
2659         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2660         summary line gnus-number property and ignore them (with a warning
2661         message).
2662
2663 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2664
2665         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2666         macro caddr in the interactive form since it won't be expanded.
2667
2668 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2669
2670         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2671         `charset'; fix name of function called recursively.
2672         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2673
2674 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2675
2676         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2677         (gnus-mime-set-charset-parameters): New function.
2678         (gnus-mime-view-part-as-charset): Use it to correctly display part
2679         specifying wrong charset.
2680
2681 2008-09-08  David Engster  <dengste@eml.cc>
2682
2683         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2684         in completing-read for back end server.
2685
2686 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2687
2688         * message.el (message-confirm-send): New variable to confirm sending a
2689         message.
2690         (message-send): Use it.
2691
2692 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2693
2694         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2695
2696 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2697
2698         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2699
2700 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2701
2702         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2703         prevent tracking too many groups.
2704         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2705         Use it.
2706
2707 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2708
2709         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2710         moving point to the bottom of the window in order to avoid recentering.
2711
2712 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2713
2714         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2715
2716         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2717         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2718         (gnus-article-beginning-of-window): Fix calculation.
2719
2720 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2721
2722         * gnus-msg.el (gnus-summary-supersede-article)
2723         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2724         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2725         message header.
2726
2727 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2728
2729         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2730         pending output coming after the status change.
2731
2732 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2733
2734         * message.el:
2735         * gnus-start.el:
2736         * gnus-registry.el: Remove VMS support.
2737
2738 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2739
2740         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2741         macro.
2742         (rfc2104-hash): Use it.
2743
2744 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2745
2746         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2747         (gnus-summary-sort-by-most-recent-date): New commands.
2748         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2749         and menu entries.
2750
2751 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2752
2753         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2754         don't redisplay article for raw contents; remove plural articles stuff.
2755
2756         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2757         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2758         on gnus-summary-save-article; display results properly.
2759
2760 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2761
2762         * lpath.el: No need to fbind ns-focus-frame.
2763
2764 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2765
2766         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2767
2768 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2769
2770         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2771         gnus-save-all-headers.
2772
2773 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2774
2775         * gnus-util.el (ns-focus-frame): Remove declaration.
2776         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2777         like x.
2778
2779 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2780
2781         * rfc2104.el (rfc2104-zero): Delete defconst.
2782         (rfc2104-hex-alist): Likewise.
2783         (rfc2104-hex-to-int): Delete func.
2784         (rfc2104-hexstring-to-bitstring): Likewise.
2785         (rfc2104-nybbles): New defconst.
2786         (rfc2104-hash): Rewrite for speed.
2787
2788 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2789
2790         * tls.el (open-tls-stream): Make it work with the 2nd argument
2791         BUFFER that is a string but does not exist as a buffer object, as
2792         mentioned in the doc-string.
2793
2794 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2795
2796         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
2797         SXEmacs.
2798
2799 2008-07-16  Glenn Morris  <rgm@gnu.org>
2800
2801         * gnus-util.el (ns-focus-frame): Declare for compiler.
2802
2803 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2804
2805         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
2806         set as a group parameter.
2807         (gnus-summary-save-in-pipe): Work when it is called independently.
2808         (gnus-summary-pipe-to-muttprint): Don't modify
2809         gnus-summary-pipe-output-default-command.
2810
2811 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2812
2813         * message.el (message-send-mail-with-sendmail):
2814         Display the error message.
2815
2816 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2817
2818         * gnus-art.el (gnus-default-article-saver):
2819         Add gnus-summary-save-in-pipe to choices.
2820         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
2821         gnus-summary-pipe-output-default-command as the default command.
2822         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
2823         instead of gnus-last-shell-command.
2824
2825         * gnus-sum.el (gnus-summary-pipe-output-default-command):
2826         New user option.
2827         (gnus-summary-muttprint-program): Mention the value will be changed.
2828         (gnus-summary-save-article): Force showing of all headers.
2829         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
2830
2831 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
2832
2833         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
2834
2835 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
2836
2837         * nnimap.el (nnimap-id):
2838         * sieve-manage.el (sieve-manage-open): Doc fixes.
2839
2840 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
2841
2842         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
2843         if available.
2844
2845 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2846
2847         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
2848
2849         * nnkiboze.el (nnkiboze-generate-group):
2850         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
2851
2852         * nnmairix.el: Require CL.
2853
2854 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2855
2856         * dgnushack.el: Autoload get-display-table and put-display-table for
2857         XEmacs 21.5.
2858
2859         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
2860         21.4 and SXEmacs.
2861
2862 2008-06-15  David Engster  <dengste@eml.cc>
2863
2864         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
2865
2866 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
2867
2868         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
2869         New macros that expand to an `aset'/`aref' call under Emacs, and to a
2870         runtime choice under XEmacs.
2871
2872         * gnus-sum.el (gnus-summary-set-display-table):
2873         Use `gnus-put-display-table', `gnus-get-display-table',
2874         `gnus-set-display-table' for the display table, instead of `aset'.
2875
2876         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
2877         Use `gnus-put-display-table', `gnus-get-display-table',
2878         `gnus-set-display-table' for the display table.
2879
2880 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
2881
2882         * nnmairix.el: Add autoloads.
2883
2884 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
2885
2886         * nnmairix.el (nnmairix-delete-recreate-group)
2887         (nnmairix-update-and-clear-marks): Fix error messages.
2888
2889 2008-06-14  David Engster  <dengste@eml.cc>
2890
2891         * nnmairix.el: Upgrade to version 0.6.
2892         (nnmairix-group-toggle-propmarks-this-group)
2893         (nnmairix-group-toggle-readmarks-this-group)
2894         (nnmairix-group-delete-recreate-this-group)
2895         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
2896         (nnmairix-remove-tick-mark-original-article): New commands.
2897         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
2898         (nnmairix-propagate-marks-to-nnmairix-groups)
2899         (nnmairix-only-use-registry, nnmairix-allowfast-default)
2900         (nnmairix-marks-cache, nnmairix-version-output): New variables.
2901         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
2902         functions needed for marks propagation and manipulation of read marks.
2903         (nnmairix-update-groups): New function.
2904         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
2905         (nnmairix-determine-original-group-from-registry)
2906         (nnmairix-determine-original-group-from-path)
2907         (nnmairix-get-group-from-file-path, nnmairix-map-range)
2908         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
2909         New helper functions.
2910         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
2911         keystrokes for new commands.
2912         (nnmairix-delete-and-create-on-change): Doc string cleanup.
2913         (nnmairix-request-group): Check allow-fast group parameter.
2914         (nnmairix-request-create-group): Set allow-fast group parameter if
2915         nnmairix-allowfast-default is set.
2916         (nnmairix-close-group): Propagate marks upon closing if needed.
2917         (nnmairix-group-toggle-threads-this-group): Use new.
2918         nnmairix-group-toggle-parameter helper function.
2919         (nnmairix-search): Better check for empty search result.
2920         (nnmairix-goto-original-article): Use new helper functions for
2921         determining original article.
2922         (nnmairix-show-original-article): Make sure message-id is in brackets.
2923         (nnmairix-call-mairix-binary): Change variable name.
2924         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
2925         helper function.
2926         (nnmairix-widget-toggle-activate): Fix doc string.
2927
2928 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2929
2930         * nnir.el: Require edmacro when compiling with XEmacs.
2931         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
2932         available in Emacs 21.
2933
2934 2008-06-11  Glenn Morris  <rgm@gnu.org>
2935
2936         * gnus-util.el (x-focus-frame):
2937         * gnus.el (image-size):
2938         * mm-decode.el (image-size): Declare.
2939
2940         * gnus-picon.el (declare-function): Add compat definition.
2941         (image-size): Declare.
2942
2943         * gnus-group.el (tool-bar-map):
2944         * gnus-sum.el (tool-bar-map): Define for compiler.
2945
2946         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
2947
2948         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
2949
2950         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
2951         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
2952         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
2953         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
2954         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
2955         * sieve-manage.el, spam-report.el, spam.el:
2956         Remove unnecessary eval-and-compile of autoloads.
2957
2958 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
2959
2960         * auth-source.el: Precise Tramp doc.
2961
2962 2008-06-07  Glenn Morris  <rgm@gnu.org>
2963
2964         * nnmairix.el: Remove unnecessary eval-when-compile.
2965
2966 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2967
2968         * lpath.el: Fbind propertize for XEmacs 21.4.
2969
2970 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
2971
2972         * nnir.el: Move here from ../contrib.
2973
2974 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2975
2976         * gnus-util.el (gnus-read-shell-command): New function.
2977         * mm-decode.el (mm-pipe-part):
2978         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
2979
2980 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2981
2982         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
2983
2984 2008-06-03  Glenn Morris  <rgm@gnu.org>
2985
2986         * pop3.el (nnheader-accept-process-output): Autoload it.
2987
2988 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2989
2990         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
2991         are not 2-digit hexadecimal characters that follow `%'s.
2992
2993 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
2994
2995         * message.el (message-bogus-recipient-p): Fix type in doc string.
2996         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
2997         (message-bogus-addresses): Rename from message-bogus-address-regexp.
2998         Improve custom options.
2999         (message-bogus-recipient-p): Adjust accordingly.
3000
3001 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3002
3003         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3004         long-form month and day names.
3005
3006 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3007
3008         * dgnushack.el: Autoload debug, eudc-expand-inline and
3009         pgg-snarf-keys-region for XEmacs.
3010
3011         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3012
3013         * nnmairix.el: Require edmacro when compiling with XEmacs.
3014
3015 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3016
3017         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3018         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3019
3020 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3021
3022         * auth-source.el: Add more docs.
3023
3024         * netrc.el (netrc-machine): Always match if the port is not given.
3025
3026 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3027
3028         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3029         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3030         retrieval faster in some cases, but might make CPU usage larger.  If
3031         this has any bad side effects, we might revert this change.
3032
3033         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3034         seems to make mail retrieval much, much faster.
3035         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3036         unconditionally.
3037
3038         * gnus-draft.el (gnus-group-send-queue): Bind
3039         message-send-mail-partially-limit to nil to avoid being prompted.
3040
3041 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3042
3043         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3044
3045         * message.el (message-bogus-address-regexp): Fix and improve custom
3046         type.
3047         (message-setup-hook): Add message-check-recipients as custom option.
3048
3049 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3050
3051         * message.el (message-cite-function): Remove bogus autoload which crept
3052         in during merge from v5-10.
3053
3054 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3055
3056         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3057
3058         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3059
3060         * auth-source.el: Preliminary Tramp docs.
3061         (auth-sources): Change the default auth-sources to use
3062         EPA .gpg files.
3063
3064 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3065
3066         * nntp.el: Autoload `auth-source-user-or-password'.
3067         (nntp-send-authinfo): Use it.
3068
3069         * nnimap.el: Autoload `auth-source-user-or-password'.
3070         (nnimap-open-connection): Use it.
3071
3072         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3073         for the gnus-message function.
3074         (auth-source-user-or-password): Use it.
3075
3076 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3077
3078         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3079         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3080         (rfc2104-hash): Use it.
3081
3082 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3083
3084         * gnus-art.el (gnus-article-toggle-truncate-lines):
3085         Don't use `iff' in docstring.
3086
3087 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3088
3089         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3090
3091         * gnus-util.el (gnus-extract-address-component-name)
3092         (gnus-extract-address-component-email): Convenience functions around
3093         `gnus-extract-address-components'.
3094
3095         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3096         Use `gnus-extract-address-component-email' to fix bug of comparing full
3097         sender name to `user-mail-address'.
3098
3099 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3100
3101         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3102         catch/throw to optimize.
3103         (gnus-registry-find-keywords): Just use member to find a keyword.
3104
3105 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3106
3107         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3108         is current before calling gnus-server-prepare.
3109         (gnus-server-setup-buffer, gnus-server-update-server)
3110         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3111
3112 2008-05-04  Juri Linkov  <juri@jurta.org>
3113
3114         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3115         (mailcap-file-default-commands): Use mailcap-replace-in-string
3116         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3117         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3118
3119 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3120
3121         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3122
3123 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3124
3125         * gnus.el: Bump version to 0.11.
3126
3127 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3128
3129         * gnus.el: No Gnus v0.10 is released.
3130
3131 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3132
3133         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3134         hooks.
3135         (gnus-update-read-articles): Speed up non-marks-using users.
3136         (gnus-use-marks): Define gnus-use-marks.
3137         (gnus-propagate-marks): Rename variable to something more sensible.
3138
3139 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3140
3141         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3142         (gmm-image-load-path-for-library): Fix typos in docstrings.
3143         (gmm-message): Reflow docstring.
3144
3145 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3146
3147         * mail-source.el (mail-source-set-1, mail-source-bind):
3148         Move auth-source code out of the macro to clean it up and fix bugs.
3149
3150 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3151
3152         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3153         by sender if it's equal to user-mail-address, it's likely to be
3154         useless.
3155
3156         * mail-source.el (mail-source-bind): Don't use user or password if they
3157         are not bound.  Unintern them if they are nil.  Don't use server unless
3158         it's bound, and default it to empty string otherwise.
3159
3160 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3161
3162         * mail-source.el: Load auth-source.el.
3163         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3164         get user name or password, if auth-sources is set up.
3165
3166         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3167         strategy of splitting with parent.
3168         (gnus-registry-split-fancy-with-parent)
3169         (gnus-registry-post-process-groups): Use it and fix prior
3170         bug (returning a list as the split result).
3171
3172         * auth-source.el (auth-sources): Remove server parameter.
3173         (auth-source-pick, auth-source-user-or-password)
3174         (auth-source-user-or-password-imap)
3175         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3176         (auth-source-user-or-password-sftp)
3177         (auth-source-user-or-password-smtp): Remove server parameter.
3178
3179 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3180
3181         * smime.el (smime-sign-region, smime-encrypt-region)
3182         (smime-decrypt-region):
3183         Remove redundant calls to `generate-new-buffer-name'.
3184
3185 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3186
3187         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3188         Don't use QP for message/rfc822.
3189         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3190
3191 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3192
3193         * sieve-manage.el (sieve-string-bytes): Remove.
3194         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3195         correct byte-length only if the process's coding-system is the same as
3196         the one used internally by Emacs to represent strings.
3197
3198 2008-04-22  Juri Linkov  <juri@jurta.org>
3199
3200         * mailcap.el (mailcap-file-default-commands): New function.
3201
3202 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3203
3204         * message.el (message-signature-separator, message-cite-function):
3205         Change custom version.
3206
3207 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3208
3209         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3210         commands.
3211         (tls-checktrust): Ditto.
3212
3213 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3214
3215         * mm-decode.el (mm-display-external): Make temp file read-only.
3216
3217 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3218
3219         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3220         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3221         `C-c C-f d'.
3222
3223 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3224
3225         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3226
3227 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3228
3229         * gnus.el: Bump version to 0.9.
3230
3231 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3232
3233         * gnus.el: No Gnus v0.8 is released.
3234
3235 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3236
3237         * mail-source.el (mail-source-value):
3238         Prefer fboundp to functionp so it works with macros as well.
3239
3240 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3241
3242         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3243         Fix last change in case the element is not even a symbol.
3244
3245 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3246
3247         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3248         Prefer fboundp to functionp so it works with macros as well.
3249
3250 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3251
3252         * auth-source.el: Added docs.
3253         (auth-sources): Modify format to support server.
3254         (auth-source-pick, auth-source-user-or-password)
3255         (auth-source-user-or-password-imap)
3256         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3257         (auth-source-user-or-password-sftp)
3258         (auth-source-user-or-password-smtp): Add server parameter.
3259
3260 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3261
3262         * gnus-registry.el: Initialize the registry when gnus-registry-install
3263         is t.
3264
3265 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3266
3267         * compface.el (uncompface): Make buffer unibyte.
3268
3269 2008-04-05  Glenn Morris  <rgm@gnu.org>
3270
3271         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3272
3273 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3274
3275         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3276         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3277
3278         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3279         multibyteness after rather than before erasing it.
3280
3281         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3282         mm-with-multibyte.
3283         (gnus-request-article-this-buffer): Make sure the proper decoding is
3284         used if gnus-original-article-buffer happens to be unibyte.
3285
3286         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3287         default-enable-multibyte-characters.
3288
3289         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3290         default-enable-multibyte-characters.
3291
3292         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3293
3294         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3295
3296 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3297
3298         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3299         (imap-message-copyuid-1): Use it.
3300         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3301         J. Williams in
3302         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3303
3304         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3305         imap-enable-exchange-bug-workaround.
3306         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3307
3308 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3309
3310         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3311         a 100 byte status-checks into a 2-3MB transfer for each group.
3312         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3313         to enable bug workaround or not.
3314         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3315
3316 2008-03-31  Glenn Morris  <rgm@gnu.org>
3317
3318         * message.el (mml2015-use): Declare for compiler.
3319         (message-info): Require mml2015 when appropriate.
3320
3321 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3322
3323         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3324         whitespace.
3325
3326 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3327
3328         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3329         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3330         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3331         (nntp-service-to-port): New function.
3332         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3333         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3334         (nntp-open-netcat-stream): New function.
3335         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3336
3337 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3338
3339         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3340
3341 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3342
3343         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3344
3345 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3346
3347         * dns.el (dns-write): Use set-buffer-multibyte.
3348
3349 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3350
3351         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3352
3353 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3354
3355         * message.el (message-signature-separator): Change default.
3356         Improve custom type.
3357         (message-cite-function): Change default to
3358         message-cite-original-without-signature.
3359
3360         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3361         toggle.
3362
3363         * message.el (message-check-news-body-syntax): Fix signature check.
3364         (message-setup-1): Mark buffer as unmodified _after_ running
3365         message-setup-hook and handling message-alternative-emails.
3366         (message-shorten-references): Be more strict when building list of
3367         valid references to comply with GNKSA.
3368
3369         * gnus-group.el (gnus-read-ephemeral-bug-group)
3370         (gnus-read-ephemeral-debian-bug-group)
3371         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3372
3373         * message.el (message-info): Don't use booleanp which isn't supported
3374         in Emacs 21 and XEmacs.
3375
3376 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3377
3378         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3379         gnus-group-gmane-group-download-format.
3380         (gnus-group-read-ephemeral-gmane-group): Rename from
3381         gnus-group-read-ephemeral-gmane-group.
3382         (gnus-read-ephemeral-gmane-group-url): Rename from
3383         gnus-group-read-ephemeral-gmane-group-url.
3384         (gnus-bug-group-download-format-alist): New variable.
3385         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3386         (gnus-read-ephemeral-emacs-bug-group): New commands.
3387
3388 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3389
3390         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3391         (gnus-visible-headers): Improve custom type.
3392
3393 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3394
3395         * mml.el (mml-menu): Add workarounds for XEmacs.
3396
3397         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3398         X-Boundary header.
3399
3400         * message.el (message-simplify-recipients): Fix previous commit.
3401
3402 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3403
3404         * mm-util.el (mm-set-buffer-multibyte): New function.
3405         * mm-decode.el (mm-copy-to-buffer): Use it.
3406
3407 2008-03-19  Glenn Morris  <rgm@gnu.org>
3408
3409         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3410         Accidentally removed in the sync process with Emacs.
3411
3412 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3413
3414         * message.el (message-alter-recipients-discard-bogus-full-name):
3415         New function.
3416         (message-alter-recipients-function): New variable.
3417         (message-get-reply-headers): Use it.
3418         (message-replace-header): New helper function.
3419         (message-recipients-without-full-name): New variable.
3420         (message-simplify-recipients): New command.
3421
3422         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3423
3424         * message.el (message-info): Handle EasyPG manual.
3425
3426         * mml.el (mml-menu): Add entry for EasyPG.
3427
3428 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3429
3430         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3431         parameter.
3432
3433         * message.el (message-disassociate-draft): Specify drafts group name
3434         fully.
3435
3436 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3437
3438         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3439         unnecessary duplicates from the match list.
3440
3441 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3442
3443         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3444
3445         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3446
3447         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3448         args of `how-many' of which the XEmacs version doesn't take; declare
3449         Info-index-next as function.
3450
3451 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3452
3453         * gnus-score.el (gnus-score-headers): Fix handling of
3454         gnus-inhibit-slow-scoring.
3455
3456         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3457         string.
3458         (gnus-button-url-regexp): Improve handling of parenthesis.
3459         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3460         (gnus-button-handle-info-keystrokes): Handle index entries.
3461
3462 2008-03-15  Glenn Morris  <rgm@gnu.org>
3463
3464         * parse-time.el (parse-time-string): Simplify.
3465
3466 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3467
3468         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3469         Incoming* files.
3470
3471 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3472
3473         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3474         (auth-source-pick): Use it.
3475
3476 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3477
3478         * binhex.el (binhex-decode-region-internal):
3479         * uudecode.el (uudecode-decode-region-internal):
3480         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3481         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3482         setting default-enable-multibyte-characters.
3483
3484 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3485
3486         * auth-source.el (auth-source-protocols)
3487         (auth-source-protocols-customize, auth-source-choices): Added and
3488         modified variable customizations and defaults.
3489         (auth-source-pick, auth-source-user-or-password)
3490         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3491         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3492         (auth-source-user-or-password-sftp)
3493         (auth-source-user-or-password-smtp): Use new variables and provide an
3494         interface to netrc.el.
3495
3496 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3497
3498         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3499         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3500         Make sure the nntp port to specify is a string.
3501
3502 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3503
3504         * nntp.el: Use with-current-buffer.
3505         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3506         dubious mm-with-unibyte-current-buffer.
3507         (nntp-with-open-group-function): New function extracted from
3508         nntp-with-open-group macro.
3509         (nntp-with-open-group): Use the function, so it's easier to debug.
3510         Add indentation and debugging info.
3511         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3512         the use of the netcat alternatives.
3513
3514         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3515         Avoid mm-string-as-multibyte as well.
3516
3517         * nnweb.el (nnweb-insert-html):
3518         Remove use of nnheader-string-as-multibyte.
3519
3520         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3521         (nnheader-string-as-multibyte): Remove.
3522
3523         * mm-view.el: Use inhibit-read-only.
3524         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3525         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3526         or unibyte-string.
3527
3528         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3529         (mm-uu-yenc-extract): Use with-current-buffer.
3530
3531         * gnus-soup.el (gnus-soup-send-packet): Don't use
3532         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3533
3534         * nnmh.el: Use with-current-buffer.
3535         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3536         mm-string-as-multibyte on the output of mm-encode-coding-string.
3537
3538         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3539         (nnimap-request-move-article): Use with-current-buffer.
3540
3541         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3542         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3543         conversion uses string-make-unibyte rather than string-as-unibyte.
3544
3545         * gnus-msg.el: Use with-current-buffer.
3546
3547         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3548
3549 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3550
3551         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3552         string for caching if it is 'PIN.
3553
3554 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3555
3556         * lpath.el: Consider the case without Emacs/W3.
3557
3558 2008-03-08  Glenn Morris  <rgm@gnu.org>
3559
3560         * time-date.el (date-to-time, time-subtract, time-add)
3561         (safe-date-to-time): Doc fixes.
3562
3563 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3564
3565         * mail-source.el (mail-source-delete-old-incoming-confirm):
3566         Change default to nil.
3567         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3568
3569 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3570
3571         * lpath.el: Rearrange.
3572
3573         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3574         (gnus-article-goto-prev-page): Work for articles having ^L's.
3575
3576         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3577
3578         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3579
3580 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3581
3582         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3583         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3584         (gnus-bookmark-jump): Adjust some variable names.
3585
3586 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3587
3588         * auth-source.el: New package.
3589         (auth-source-choices): Add customization entry point variable.
3590
3591         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3592         bug.
3593
3594 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3595
3596         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3597         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3598         (gnus-registry-install-shortcuts): Rename from
3599         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3600         the `gnus-registry-mark-map' keymap dynamically from
3601         `gnus-registry-marks'.  The generated functions update the summary line
3602         when a registry mark is added or deleted, and will call
3603         `gnus-registry-install-p' (see the comments in the code).
3604         (gnus-registry-user-format-function-M): Use concat intelligently.
3605
3606         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3607         the registry mark functions.
3608
3609 2008-03-05  Glenn Morris  <rgm@gnu.org>
3610
3611         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3612         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3613         gnus-art.
3614         (top-level): No need to load own source when compiling.
3615
3616 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3617
3618         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3619         Suggested by <chris.anderton@zetnet.co.uk>.
3620
3621 2008-03-04  Glenn Morris  <rgm@gnu.org>
3622
3623         * gnus-sum.el (top-level): No need to require gnus when compiling,
3624         since unconditionally required near start of file.
3625         (gnus-summary-display-while-building): Move definition before use.
3626
3627 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3628
3629         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3630         formatting function.
3631
3632 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3633
3634         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3635         with plists.
3636         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3637         Use new format.
3638
3639 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3640
3641         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3642         `where-is-internal' that returns a range of key sequences.
3643
3644 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3645
3646         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3647
3648         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3649         (gnus-summary-jump-to-group): Consider windows on other displayed
3650         frames as well.  Similar changes might be needed elsewhere, but that's
3651         the one I've bumped into during my use.
3652
3653         * nndoc.el (nndoc-oe-dbx-type-p):
3654         * gnus-msg.el (gnus-debug):
3655         * gnus-group.el (gnus-update-group-mark-positions):
3656         Use mm-string-to-multibyte.
3657
3658 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3659
3660         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3661         doesn't handle NotDashEscaped.
3662
3663         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3664         (mml-dnd-attach-options): Fix typo in custom choice.
3665
3666         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3667         nndoc-article-type to mbox.
3668         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3669
3670         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3671         to nil, instead of html2text.
3672
3673         * imap.el (imap-debug): Add `imap-ping-server'.
3674
3675         * gnus-bookmark.el: Add FIXMEs.
3676
3677         * message.el (message-form-letter-separator)
3678         (message-send-form-letter-delay): New variables.
3679         (message-send-form-letter): Use them.  New command to send form
3680         letters.  Requested by Uwe Siart.
3681         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3682
3683 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3684
3685         * Update copyright years.
3686
3687 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3688
3689         Sync from EMACS_22_BASE.
3690
3691         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3692
3693 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3694
3695         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3696         empty author.
3697
3698 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3699
3700         * gnus-registry.el (gnus-registry-marks): Add variable for
3701         customization of marks and their appearance.
3702         (gnus-registry-read-mark): Use it.
3703         (gnus-registry-do-marks): Add utility function to loop through
3704         `gnus-registry-marks'.
3705         (gnus-registry-install-shortcuts-and-menus): Add function to install
3706         shortcuts and menus.
3707         (gnus-registry-initialize): Use it.
3708         (gnus-registry-default-mark): Clarify documentation.
3709
3710 2008-02-29  Glenn Morris  <rgm@gnu.org>
3711
3712         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3713         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3714         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3715         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3716         Change defcustom :version from 23.0 to 23.1.
3717
3718 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3719
3720         * gnus-registry.el (gnus-registry-follow-group-p)
3721         (gnus-registry-post-process-groups): Add functions to aid registry
3722         splitting and improve logging.  Clarify behavior in function
3723         documentation.
3724         (gnus-registry-split-fancy-with-parent): Use them.
3725
3726 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3727
3728         * gnus-art.el: Use with-current-buffer.
3729
3730 2008-02-27  David Engster  <dengste@eml.cc>
3731
3732         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3733         Express real group name in the response.
3734
3735 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3736
3737         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3738         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3739         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3740         autoload gnus-registry-fetch-group when compiling.
3741         (nnmairix-request-group-with-article-number-correction): Remove
3742         unreferenced argument passed to nnmairix-call-backend.
3743
3744 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3745
3746         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3747         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3748         Wilde.
3749
3750 2008-02-27  Glenn Morris  <rgm@gnu.org>
3751
3752         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3753         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3754         variables to defconsts.  Convert comments to doc-strings.
3755         (nnmairix-last-server, nnmairix-current-server): Convert from free
3756         variables to defvars.  Convert comments to doc-strings.
3757         (gnus-registry-fetch-group): Autoload.
3758         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3759         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3760         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3761         caddr.
3762         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3763         nnmairix-request-group-with-article-number-correction call.
3764         (nnmairix-fast, nnmairix-group): New, less general names, for free
3765         variables passed from nnmairix-request-group to
3766         nnmairix-request-group-with-article-number-correction.  Declare.
3767         (nnmairix-request-group-with-article-number-correction):
3768         Use nnmairix-fast, nnmairix-group rather than fast, group.
3769
3770 2008-02-26  David Engster  <dengste@eml.cc>
3771
3772         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3773         version 0.5.
3774
3775 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3776
3777         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3778         instead of making an extra function call.  Don't add the current group
3779         to articles only when they have the group.  Use
3780         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3781         Reported by David <de_bb@arcor.de>.
3782
3783 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3784
3785         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
3786         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
3787
3788 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
3789
3790         * mail-source.el (mail-source-delete-incoming): Change default.
3791         Supplement doc string.
3792
3793         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
3794
3795 2008-02-14  Glenn Morris  <rgm@gnu.org>
3796
3797         * time-date.el (format-seconds): New function.
3798
3799 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
3800
3801         * nnmail.el (nnmail-message-id-cache-file): Derive from
3802         `gnus-home-directory'.
3803
3804 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
3805
3806         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
3807         Document negative prefix.
3808
3809         * gnus-group.el (gnus-group-read-group): Document negative prefix.
3810
3811 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3812
3813         * message.el (message-unsent-separator): Add the Exim bounce
3814         separator.
3815
3816 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
3817
3818         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
3819         list.
3820         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
3821         recipient/signer list.
3822
3823 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3824
3825         * Makefile.in (datarootdir): Define.
3826         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
3827         name that might contain whitespace.
3828
3829 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
3830
3831         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
3832         fbound (Emacs 23 unicode), signal an error.
3833
3834 2008-02-08  Glenn Morris  <rgm@gnu.org>
3835
3836         * gnus-art.el (pgg-display-output-buffer): Declare as function.
3837
3838 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
3839
3840         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
3841         ports to the calls to `netrc-machine-user-or-password' in addition to
3842         "imap" and "imaps".
3843
3844 2008-02-01  Zhang Wei  <id.brep@gmail.com>
3845
3846         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
3847
3848         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
3849
3850 2008-02-01  Kenichi Handa  <handa@m17n.org>
3851
3852         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
3853         rfc2104-hexstring-to-bitstring and changed to return a byte list.
3854         (rfc2104-hash): Convert the result of concat to unibyte string.
3855
3856 2008-02-01  Dave Love  <fx@gnu.org>
3857
3858         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
3859         coding-system-for-read.
3860         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
3861
3862 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
3863
3864         * gnus.el (gnus-group-startup-message): Add `find-image' call before
3865         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
3866         <hanche@math.ntnu.no>.
3867
3868 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3869
3870         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
3871
3872         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
3873
3874 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
3875
3876         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
3877         * message.el (message-beginning-of-line): Use featurep instead of bound
3878         tests in order to resolve conditionals at compile time.
3879
3880 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
3881
3882         * mail-source.el (mail-sources): Add `group' choice.
3883
3884         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
3885         parameter `in-group' to control into which group the articles go.
3886         Add treatment of `group' mail-source.
3887
3888 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
3889
3890         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
3891
3892         * mm-decode.el (mm-dissect-buffer): Decode description.
3893
3894         * mml.el (mml-to-mime): Encode message header first.
3895
3896 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3897
3898         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
3899         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
3900
3901         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
3902         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
3903
3904 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
3905
3906         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
3907
3908 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3909
3910         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
3911         prefix keys.
3912         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
3913         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
3914         gnus-xmas.el.
3915
3916         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
3917         (gnus-xmas-article-describe-bindings): New function.
3918         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
3919         gnus-xmas-article-describe-bindings.
3920
3921         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
3922
3923 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
3924
3925         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
3926         Add new variables for article mark management.
3927         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
3928         list of extra data entries which, when present, will indicate that the
3929         article ID should not be trimmed from the registry.
3930         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
3931         functions.
3932         (gnus-registry-read-mark): New function to read a mark name from the
3933         user.
3934         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
3935         (gnus-registry-set-article-mark-internal): New functions to add and
3936         remove marks.
3937         (gnus-registry-get-article-marks): New function to show the marks for
3938         an article, or retrieve them for further use.
3939
3940 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3941
3942         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
3943         keys when no argument is given.
3944
3945 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
3946
3947         * imap.el (imap-ping-server): New variable.
3948         (imap-opened): On add extra ping if imap-ping-server is non-nil.
3949         (imap-ping-server): Minor doc string fixes.
3950
3951 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
3952
3953         * imap.el (imap-ping-server): New function.
3954         (imap-opened): Call imap-ping-server.
3955
3956 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
3957
3958         * gnus-sum.el (gnus-article-sort-by-random)
3959         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
3960         jidanni@jidanni.org.
3961
3962 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3963
3964         * gnus-art.el (gnus-article-describe-bindings): New function.
3965         (gnus-article-read-summary-keys): Use it.
3966         (gnus-article-mode-map): Bind `C-h b' to it.
3967
3968 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3969
3970         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
3971         XEmacs.
3972         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
3973         against non-character events.
3974
3975         * lpath.el: Fbind map-keymap for Emacs 21.
3976
3977 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
3978
3979         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
3980         command.
3981         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
3982         instead of END.  Change name of the temp file.
3983         (gnus-group-gmane-group-download-format): Add doc string.  Make it
3984         customizable.
3985
3986 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3987
3988         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
3989         bind `S W' to gnus-article-wide-reply-with-original; set default
3990         binding to gnus-article-read-summary-send-keys.
3991         (gnus-article-read-summary-keys): Fix the order of keys; display
3992         continuation keys correctly in the echo area; describe bindings
3993         correctly when keys end with `C-h'.
3994         (gnus-article-read-summary-send-keys): New function.
3995         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
3996         for gnus-article-read-summary-send-keys; display continuation keys
3997         correctly in the echo area.
3998         (gnus-article-reply-with-original): Ignore prefix argument.
3999         (gnus-article-wide-reply-with-original): New function.
4000
4001         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4002         Emacs 21.
4003
4004 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4005
4006         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4007         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4008
4009 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4010
4011         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4012         (gnus-group-read-ephemeral-gmane-group): New command.
4013
4014 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4015
4016         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4017
4018 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4019
4020         * message.el (message-send-mail-function): Increase custom version.
4021
4022         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4023         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4024
4025 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4026
4027         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4028         for the cases where imap-authenticate is called with a nil buffer
4029         parameter.
4030
4031 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4032
4033         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4034         html parts correctly; support forwarded messages.
4035         (gnus-article-browse-html-article): Remove work buffers.
4036
4037         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4038         compiling.
4039         (netrc-bound-and-true-p): New macro.
4040         (netrc-parse): Use it instead of bound-and-true-p that is not available
4041         in XEmacs 21.4.
4042
4043 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4044
4045         * gnus-registry.el (gnus-registry-mark-article)
4046         (gnus-registry-article-marks): Add functionality to mark articles
4047         through the Gnus registry.
4048
4049         * encrypt.el: Clarify documentation for the new pgg method.
4050         (encrypt-file-alist): Add PGG option.
4051         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4052         functionality.  Abstract password key and messaging to external
4053         functions.
4054         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4055         (encrypt-message-method-and-cipher): Add new convenience external
4056         functions.
4057         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4058         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4059
4060         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4061         (netrc-parse): Use encrypt-file-alist to determine if
4062         encrypt-find-model or encrypt-insert-file-contents should be used.
4063
4064         * encrypt.el: Clarify documentation.  Load password-cache or
4065         password, whichever one is found first, instead of autoloading.
4066
4067 2007-12-19  Glenn Morris  <rgm@gnu.org>
4068
4069         * mml.el (message-options-set, message-narrow-to-head)
4070         (message-in-body-p, message-mail-p, message-encode-message-body):
4071         Autoload.
4072         (message-remove-header, message-narrow-to-headers-or-head)
4073         (message-subscribed-p, message-make-mail-followup-to)
4074         (message-position-on-field, message-news-p)
4075         (message-options-set-recipient, message-generate-headers)
4076         (message-sort-headers): Declare as functions.
4077
4078 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4079
4080         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4081         convention in doc string.
4082
4083 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4084
4085         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4086         title to html parts.
4087         (gnus-article-browse-html-article): Pass message header to it.
4088
4089         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4090
4091 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4092
4093         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4094         or password compatible with XEmacs.
4095
4096 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4097
4098         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4099         format document.
4100         (gnus-mime-delete-part): Don't write description line if empty.
4101         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4102
4103 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4104
4105         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4106         (gnus-summary-mark-read-and-unread-as-read)
4107         (gnus-summary-mark-current-read-and-unread-as-read)
4108         (gnus-summary-mark-unread-as-ticked): Doc fix.
4109         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4110
4111 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4112
4113         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4114         Christoph Conrad <christoph.conrad@gmx.de>.
4115
4116 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4117
4118         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4119         yes-or-no-p.
4120
4121 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4122
4123         * mm-decode.el (mm-add-meta-html-tag): New function.
4124         (mm-save-part-to-file, mm-pipe-part): Use it.
4125
4126         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4127         gnus-y-or-n-p instead of y-or-n-p.
4128         (gnus-article-browse-html-parts): Work with message/external-body; use
4129         mm-add-meta-html-tag.
4130
4131 2007-12-11  Glenn Morris  <rgm@gnu.org>
4132
4133         * gnus-cache.el: Require gnus-sum not just when compiling.
4134
4135         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4136
4137         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4138         definitions before use.
4139
4140         * mm-decode.el: Require gnus-util.
4141         (mm-remove-part): Only call delete-annotation on XEmacs.
4142
4143         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4144
4145         * nnmail.el: Require gnus-int.
4146
4147         * spam.el: Move `require's before `eval-when-compile's.
4148
4149         * gnus-ems.el (gnus-alive-p):
4150         * gnus-fun.el (message-goto-eoh):
4151         * gnus-util.el (gnus-group-name-decode):
4152         * mail-source.el (gnus-compress-sequence):
4153         * message.el (Info-goto-node, format-spec):
4154         * mm-bodies.el (message-options-get):
4155         * mm-decode.el (mm-view-pkcs7):
4156         * mm-util.el (gmm-write-region):
4157         * mml-smime.el (mml-compute-boundary)
4158         (gnus-completing-read-with-default):
4159         * mml.el (widget-button-press, gnus-make-hashtable):
4160         * mml1991.el (mm-decode-content-transfer-encoding)
4161         (mm-encode-content-transfer-encoding)
4162         (message-options-get, message-options-set):
4163         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4164         * nnfolder.el (gnus-request-group):
4165         * nnheader.el (ietf-drums-unfold-fws):
4166         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4167         * smime.el (gnus-run-mode-hooks):
4168         * spam-stat.el (gnus-message): Autoload.
4169
4170         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4171         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4172         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4173         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4174         Add declare-function compatibility definition.
4175
4176         * gnus-cache.el (nnvirtual-find-group-art):
4177         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4178         (gnus-add-image, gnus-add-wash-type):
4179         * gnus-group.el (nnkiboze-score-file):
4180         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4181         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4182         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4183         (message-tokenize-header, gnus-get-buffer-create)
4184         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4185         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4186         * gnus.el (gnus-group-decoded-name):
4187         * mail-source.el (imap-capability):
4188         * mm-bodies.el (message-options-set):
4189         * mm-decode.el (gnus-configure-windows):
4190         * mm-extern.el (message-goto-body):
4191         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4192         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4193         (epg-sub-key-validity, message-options-set):
4194         * mml.el (widget-event-point, gnus-configure-windows):
4195         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4196         * mml2015.el (epg-check-configuration, epg-configuration)
4197         (message-options-set):
4198         * nndb.el (nndb-request-article):
4199         * nnfolder.el (gnus-request-create-group):
4200         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4201         * nnmaildir.el (gnus-group-mark-article-read):
4202         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4203         * rfc1843.el (message-fetch-field):
4204         * spam.el (gnus-extract-address-components):
4205         Declare as functions.
4206
4207 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4208
4209         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4210
4211         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4212
4213         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4214         bind show-trailing-whitespace for XEmacs.
4215
4216 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4217
4218         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4219         new no-op macro for backward compatibility.
4220
4221         * imap.el (imap-string-to-integer): New function.
4222
4223 2007-12-09  Glenn Morris  <rgm@gnu.org>
4224
4225         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4226
4227         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4228         * message.el, mm-view.el, sieve-manage.el, smime.el:
4229         Add declare-function compatibility definition.
4230
4231         * gnus-art.el (w3-region, w3m-region, Info-menu):
4232         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4233         * gnus-sum.el (gnus-get-predicate):
4234         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4235         * message.el (mail-abbrev-in-expansion-header-p):
4236         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4237         (w3m-detect-meta-charset, w3m-region):
4238         * sieve-manage.el (password-read, password-cache-add)
4239         (password-cache-remove):
4240         * smime.el (password-read-and-add): Declare as functions.
4241
4242 2007-12-08  David Kastrup  <dak@gnu.org>
4243
4244         * gnus-sum.el (gnus-summary-simplify-subject-query):
4245         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4246         `message'.
4247
4248 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4249
4250         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4251         it to bind idna-program, installation-directory, defined-colors, and
4252         face-attribute for XEmacs of the version that compiles defcustom forms.
4253
4254 2007-12-07  Glenn Morris  <rgm@gnu.org>
4255
4256         * gnus-art.el (article-make-date-line): Revert previous change.
4257
4258 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4259
4260         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4261
4262 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4263
4264         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4265         Call gnus-add-to-range ranges only once with a prepared article-list.
4266
4267 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4268
4269         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4270         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4271         group names with backslashes.  Reported by Tassilo Horn
4272         <tassilo@member.fsf.org>.
4273
4274 2007-12-06  Deepak Goel  <deego3@gmail.com>
4275
4276         * gnus-art.el (article-make-date-line):
4277         * gnus-start.el (gnus-load):
4278         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4279
4280 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4281
4282         * gnus-art.el (gnus-use-idna)
4283         * gnus-start.el (gnus-site-init-file)
4284         * message.el (message-use-idna)
4285         * mm-uu.el (mm-uu-hide-markers)
4286         * smiley.el (smiley-style): Revert changes that suppress warnings.
4287
4288 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4289
4290         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4291         specify charset to html source.  Reported by Christoph Conrad
4292         <christoph.conrad@gmx.de>.
4293
4294 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4295
4296         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4297         idna-program in order to suppress byte compile warning issued by XEmacs
4298         that came to byte compile the default value section of defcustom forms
4299         recently.
4300
4301         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4302         value of installation-directory.
4303
4304         * message.el (message-use-idna): Don't directly refer to the value of
4305         idna-program.
4306
4307         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4308
4309         * smiley.el (smiley-style): Don't directly call face-attribute.
4310
4311 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4312
4313         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4314
4315         * gnus-dired.el: Reduce Gnus dependencies.
4316         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4317         require.  Use autoloads instead.
4318         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4319         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4320         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4321         (gnus-dired-mode): Adjust doc string.
4322         (gnus-dired-mail-mode): New variable.
4323         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4324         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4325         (gnus-dired-mail-buffers): New function.  Return mail or message
4326         composition buffers.
4327         (gnus-dired-attach): Use it.
4328         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4329         NO-DECODE.
4330         (gnus-dired-print): Use `gnus-print-buffer' depending on
4331         `gnus-dired-mail-mode'.
4332
4333 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4334
4335         * rfc2047.el (rfc2047-encoded-word-regexp)
4336         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4337         explaining what regexp patterns are for.
4338
4339 2007-12-04  Glenn Morris  <rgm@gnu.org>
4340
4341         * password.el: Move to password-cache.el.
4342
4343         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4344         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4345         * mml-smime.el (password-read, password-cache-add)
4346         (password-cache-remove):
4347         No need to autoload, since mml-sec requires password.
4348
4349         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4350         * message.el (gnus-extract-address-components):
4351         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4352
4353         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4354         password.
4355
4356 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4357
4358         * mailcap.el: Reduce dependencies.
4359         (mail-header-parse-content-type): Autoload.
4360         (mailcap-delete-duplicates): New alias.
4361         (mailcap-mime-info): Add optional argument NO-DECODE.
4362         (mailcap-mime-types): Use mailcap-delete-duplicates.
4363
4364         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4365
4366 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4367
4368         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4369         (imap-parse-status): Upcase status-att for servers that sends them
4370         lower-case (e.g., MS Exchange 2007).
4371
4372 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4373
4374         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4375         function.
4376
4377         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4378         (gnus-uu-yenc-article): New function.
4379
4380         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4381
4382         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4383         buffer.
4384
4385 2007-12-02  Glenn Morris  <rgm@gnu.org>
4386
4387         * binhex.el (binhex): New custom group.
4388         (binhex-decoder-program, binhex-decoder-switches)
4389         (binhex-use-external): Move to the binhex custom group.
4390
4391         * uudecode.el (uudecode): New custom group.
4392         (uudecode-decoder-program, uudecode-decoder-switches)
4393         (uudecode-use-external): Move to the uudecode custom group.
4394
4395         * netrc.el (top-level): Don't load `encrypt' features.
4396         (netrc-parse): Don't use encrypt.
4397         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4398
4399         * encrypt.el: Remove file.
4400
4401 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4402
4403         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4404         matches on patches.
4405
4406         * gnus-art.el (gnus-article-browse-html-article): Mention
4407         `mm-text-html-renderer' in the doc string.
4408
4409         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4410         string.  Add comments.
4411
4412         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4413         if rhs is ASCII.
4414
4415 2007-12-01  Glenn Morris  <rgm@gnu.org>
4416
4417         * mail-source.el (top-level): Require format-spec before
4418         eval-when-compile.
4419
4420 2007-11-30  Glenn Morris  <rgm@gnu.org>
4421
4422         * encrypt.el: Require password, rather than autoloading password-read.
4423
4424 2007-11-29  Glenn Morris  <rgm@gnu.org>
4425
4426         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4427         (sasl-make-client, sasl-next-step, sasl-step-data)
4428         (sasl-step-set-data): Declare as functions.
4429
4430 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4431
4432         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4433
4434 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4435
4436         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4437         certs should be verified and what is to be done in the event of a
4438         verification failure.
4439
4440         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4441         caller can indicate whether the cache should be disregarded for this
4442         call.  This way the result of the call is reproducible at all times and
4443         can be considered a canonical server name for the supplied method.
4444         (gnus-agent-method-p): Canonicalize server names by pushing their
4445         method through `gnus-method-to-server' using the no-cache argument.
4446
4447         * gnus-srvr.el (gnus-server-insert-server-line): Call
4448         `gnus-method-to-server' with `no-cache' argument.
4449
4450         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4451         gnus-agent-possibly-synchronize-flags as this should be called when the
4452         server is actually being opened.
4453         (gnus-agent-possibly-synchronize-flags)
4454         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4455         flags file of an agentized server to the latter function.
4456
4457         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4458         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4459         after a connection has been established successfully.
4460
4461 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4462
4463         * gnus-art.el (article-display-face): Force to display face if called
4464         interactively; check if gnus-article-x-face-too-ugly matches author.
4465         (article-display-x-face): Display face even if From header is missing
4466         as article-display-face does.
4467
4468 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4469
4470         * hashcash.el (message-narrow-to-headers-or-head)
4471         (message-fetch-field, message-goto-eoh)
4472         (message-narrow-to-headers): Declare as functions.
4473
4474 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4475
4476         * mail-source.el (mail-sources): Default to fetch from file for
4477         compatibility with default of nnmail-spool-file.
4478
4479 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4480
4481         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4482         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4483         to look for encoded word that should be encoded again.
4484         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4485         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4486         encoding pattern.
4487         (rfc2047-decode-region): Switch strict regexp and loose one according
4488         to rfc2047-allow-irregular-q-encoded-words.
4489
4490 2007-11-25  Romain Francoise  <romain@orebokech.com>
4491
4492         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4493
4494 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4495
4496         * tls.el (tls-program): Provide more custom choices from
4497         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4498         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4499
4500 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4501
4502         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4503         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4504
4505         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4506         `nnmail-spool-file'.
4507
4508         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4509         `nnmail-spool-file'.
4510
4511         * gnus-move.el (gnus-change-server): Ditto.
4512
4513         * gnus-kill.el (gnus-batch-score): Ditto.
4514
4515         * gnus-cache.el (gnus-jog-cache): Ditto.
4516
4517         * gnus-msg.el (gnus-summary-reply):
4518         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4519
4520 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4521
4522         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4523         version.  Minor improvement to doc strings.
4524         (tls-program): Add comment.
4525
4526 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4527
4528         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4529         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4530         mismatch between the hostname provided in the certificate and the name
4531         of the host connnecting to.
4532         (open-tls-stream): Use them.  Check certificates against trusted root
4533         certificates.
4534
4535 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4536
4537         * gnus-cache.el (gnus-cache-generate-nov-databases):
4538         Use nnml-generate-nov-databases-directory instead of
4539         nnml-generate-nov-databases-1.
4540
4541 2007-11-24  Glenn Morris  <rgm@gnu.org>
4542
4543         * message.el (message-tool-bar-retro): Update for rename
4544         mail_send.xpm->mail-send.xpm.
4545
4546 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4547
4548         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4549         `smime-ldap-search' for Emacs 22 and up.
4550
4551 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4552
4553         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4554
4555         * message.el (message-send-mail-function): Fix error convention.
4556         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4557         (message-widen-reply, message-send-mail, message-talkative-question)
4558         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4559         (message-clone-locals, message-send-news): Use with-current-buffer.
4560         (message-insert-or-toggle-importance): Remove unused var `valid'.
4561         (message-make-references): Remove unused var `new-references'.
4562         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4563
4564 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4565
4566         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4567         (spam-split-symbolic-return-positive): Reflow docstring.
4568         (spam-backends, spam-summary-exit-behavior)
4569         (spam-mark-ham-unread-before-move-from-spam-group)
4570         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4571         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4572         (spam-clear-cache, spam-backend-check, spam-install-backend)
4573         (spam-install-statistical-backend, spam-list-of-processors)
4574         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4575         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4576         (spam-check-crm114, spam-initialize, spam-unload-hook):
4577         Fix typos in docstrings.
4578
4579 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4580
4581         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4582         been checked if they have never been read and those group levels are
4583         higher than the one that a user specified.
4584
4585 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4586
4587         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4588         foreign groups unless a group level is specified by a user.
4589         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4590
4591 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4592
4593         * message.el (message-send-mail-function): Require sendmail.
4594
4595 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4596
4597         * message.el (message-send-mail-function): Check for smtpmail too.
4598
4599         * utf7.el (utf7-encode, utf7-decode): Use coding system
4600         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4601
4602         * message.el (message-send-mail-function): New function.
4603         (message-send-mail-function): Set default using
4604         message-send-mail-function.  Adjust doc string.
4605         (message-send-mail-with-mailclient): New function.
4606
4607 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4608
4609         * smime.el (from):
4610         * rfc2047.el (message-posting-charset):
4611         * qp.el (mm-use-ultra-safe-encoding):
4612         * pop3.el (parse-time-months):
4613         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4614         * nnml.el (files):
4615         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4616         (jka-compr-compression-info-list, ange-ftp-path-format)
4617         (efs-path-regexp):
4618         * nndiary.el (files):
4619         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4620         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4621         (epg-digest-algorithm-alist, inhibit-redisplay)
4622         (password-cache-expiry):
4623         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4624         (pgg-output-buffer, password-cache-expiry):
4625         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4626         (efs-path-regexp):
4627         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4628         (inhibit-redisplay):
4629         * mm-uu.el (file-name, start-point, end-point, entry)
4630         (gnus-newsgroup-name, gnus-newsgroup-charset):
4631         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4632         (latin-unity-ucs-list):
4633         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4634         (mm-uu-binhex-decode-function):
4635         * message.el (gnus-message-group-art, gnus-list-identifiers)
4636         (rmail-enable-mime-composing, gnus-local-organization)
4637         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4638         (gnus-read-active-file, facemenu-add-face-function)
4639         (facemenu-remove-face-function, gnus-article-decoded-p)
4640         (tool-bar-mode):
4641         * mail-source.el (display-time-mail-function):
4642         * gnus-util.el (nnmail-pathname-coding-system)
4643         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4644         (gnus-original-article-buffer, gnus-user-agent)
4645         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4646         (xemacs-codename, sxemacs-codename, emacs-program-version):
4647         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4648         * gnus-start.el (gnus-agent-covered-methods)
4649         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4650         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4651         (gnus-newsgroup-headers, gnus-group-list-mode)
4652         (gnus-group-mark-positions, gnus-newsgroup-data)
4653         (gnus-newsgroup-unreads, nnoo-state-alist)
4654         (gnus-current-select-method, mail-sources)
4655         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4656         (nnmail-spool-file, gnus-cache-active-hashtb):
4657         * gnus-mh.el (mh-lib-progs):
4658         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4659         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4660         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4661         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4662         (gnus-group-buffer):
4663         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4664         (font-lock-set-defaults):
4665         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4666         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4667         (gnus-summary-post-menu, total-parts, type, condition, length):
4668         * gnus-agent.el (gnus-agent-read-agentview):
4669         * flow-fill.el (show-trailing-whitespace):
4670         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4671         eval-and-compile wrappers for byte compiler pacifiers.
4672
4673         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4674         (mm-display-inline-fontify): Check for featurep 'xemacs not
4675         extent-list.
4676
4677         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4678         itimer-list.
4679         (mm-create-image-xemacs): Only do something for XEmacs.
4680         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4681
4682         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4683
4684         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4685         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4686
4687 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4688
4689         * nnimap.el (nnimap-split-download-body):
4690         * gnus-demon.el (gnus-demon):
4691         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4692
4693 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4694
4695         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4696         macros.
4697         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4698         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4699         copy data from unibyte buffer to multibyte current buffer.
4700         (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
4701         to copy data from unibyte current buffer to multibyte buffer.
4702         (nntp-make-process-buffer): Make process buffer unibyte.
4703
4704         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4705
4706 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4707
4708         * pop3.el (pop3-open-server): Accept and process data more robustly at
4709         connexion start to avoid spurious "POP SSL connexion failed" errors.
4710
4711 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4712
4713         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4714         read group names.
4715
4716 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4717
4718         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4719
4720 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4721
4722         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4723         (nnmail-save-active): Use a unibyte buffer when saving active file,
4724         which may contain non-ASCII group names.
4725
4726         * nnml.el (nnml-request-group): Decode group names in messages.
4727
4728 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4729
4730         * message.el (message-citation-line-function)
4731         (message-insert-formatted-citation-line): Fix spelling of
4732         `message-insert-formated-citation-line'.
4733
4734 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4735
4736         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4737
4738 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4739
4740         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4741         nnmail-pathname-coding-system.
4742
4743         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4744         that a user enters; decode group names in messages.
4745
4746         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
4747
4748 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
4749
4750         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
4751
4752         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
4753
4754         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
4755         risky local variable.
4756
4757         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
4758
4759 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4760
4761         * encrypt.el: Improve documentation to fix function name typo.
4762         Reported by Daiki Ueno <ueno@unixuser.org>.
4763
4764 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4765
4766         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
4767         even if the point is not in the last page of an article.
4768         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
4769         back to the previous page.
4770
4771 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
4772
4773         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
4774
4775 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4776
4777         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
4778
4779 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4780
4781         * message.el (message-check-news-body-syntax): Avoid
4782         mm-string-as-multibyte.
4783         (message-hide-headers): Don't assume (point-min)==1.
4784
4785 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
4786
4787         * message.el (message-remove-blank-cited-lines): Fix if remove is
4788         given.
4789         (message-bogus-address-regexp): New variable.
4790         (message-bogus-recipient-p): New function.
4791         (message-check-recipients): New command.
4792         (message-syntax-checks): Add `bogus-recipient'.
4793         (message-fix-before-sending): Add `bogus-recipient'.
4794
4795         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
4796         (gnus-treat-body-boundary): Don't test window-system.
4797
4798 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
4799
4800         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
4801
4802 2007-10-28  Miles Bader  <miles@gnu.org>
4803
4804         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
4805         at compile-time too.
4806
4807 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
4808
4809         * gnus-msg.el (gnus-message-setup-hook): Add
4810         `message-remove-blank-cited-lines' to options.
4811
4812 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
4813
4814         * message.el (message-remove-blank-cited-lines): New function.
4815         Suggested by Karl Plästerer.
4816
4817 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4818
4819         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
4820         mapc.
4821
4822         * imap.el (imap-open): Replace mapcar called for effect with mapc.
4823         (top-level): Use mapc to set functions to be traced for debugging.
4824
4825         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
4826         called for effect with while loop.
4827
4828         * message.el (message-talkative-question): Replace mapcar called for
4829         effect with mapc.
4830
4831         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
4832         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
4833         called for effect with dolist.
4834
4835         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
4836
4837         * nndiary.el: Use dolist instead of mapcar to add diary headers to
4838         gnus-extra-headers and nnmail-extra-headers.
4839
4840         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
4841         called for effect with dolist.
4842         (top-level): Use mapc to set functions to be traced for debugging.
4843
4844         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
4845         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
4846         dolist.
4847
4848         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
4849         Replace mapcar called for effect with mapc.
4850         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
4851         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
4852         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
4853         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
4854
4855         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
4856         remove-if that's a cl function.
4857
4858         * webmail.el (webmail-debug): Replace mapcar called for effect with
4859         dolist.
4860
4861         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
4862         with mapc.
4863
4864 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4865
4866         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
4867         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
4868         with while loop.
4869
4870         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
4871         functions from article-* functions.
4872         (gnus-multi-decode-header): Replace mapcar called for effect with
4873         dolist.
4874
4875         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
4876         (gnus-bookmark-show-details): Replace mapcar called for effect with
4877         while loop.
4878
4879         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
4880         called for effect with while loop.
4881
4882         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
4883         with dolist.
4884
4885         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
4886         mapcar called for effect with dolist.
4887
4888         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
4889
4890         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
4891         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
4892         Replace mapcar called for effect with dolist.
4893         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
4894         mapc.
4895
4896         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
4897         Replace mapcar called for effect with dolist.
4898         (gnus-topic-list): Replace mapcar called for effect with mapc.
4899
4900         * gnus.el: Use mapc instead of mapcar to add autoloads.
4901
4902 2007-10-23  Richard Stallman  <rms@gnu.org>
4903
4904         * gnus-group.el (gnus-group-highlight): Mark as risky.
4905
4906 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4907
4908         * gnus.el (gnus-server-to-method): Return method found first in
4909         gnus-newsrc-alist.
4910
4911         * gnus-art.el (gnus-article-highlight-signature)
4912         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
4913         button overlay without the front stickiness.
4914
4915 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
4916
4917         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
4918         overview buffer needed a catch to receive its throw.
4919         (gnus-agent-flush-cache): Declared as interactive to make this function
4920         easier to use.
4921
4922 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
4923
4924         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
4925         `next-line'.
4926
4927 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4928
4929         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
4930         exclude address matching message-dont-reply-to-names.
4931
4932 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4933
4934         * gnus-util.el (gnus-string<): New function.
4935
4936         * gnus-sum.el (gnus-article-sort-by-author)
4937         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
4938
4939 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4940
4941         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
4942         the frame-focus tag is set in gnus-buffer-configuration.
4943
4944 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4945
4946         * gnus-art.el (gnus-article-add-button): Make a button overlay without
4947         the front stickiness.
4948
4949 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4950
4951         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
4952         url pattern; remove duplicate one.
4953         (gnus-article-extend-url-button): New function.
4954         (gnus-article-add-buttons): Use it.
4955         (gnus-button-push): Use concatenated url that it makes.
4956
4957 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
4958
4959         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
4960
4961 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4962
4963         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
4964         Don't hardcode point-min==1.
4965
4966 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
4967
4968         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
4969         Fix comment about "iso8859-1".
4970
4971 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
4972
4973         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
4974         ones returned from the verify-function.
4975
4976         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
4977         mml2015-extract-cleartext-signature if extraction failed.
4978
4979 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
4980
4981         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
4982         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
4983         failed.
4984
4985 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
4986
4987         * Relicense "GPLv2 or later" files to "GPLv3 or later".
4988
4989 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
4990
4991         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
4992         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
4993         recommends to use EasyPG instead of PGG.
4994
4995         * pgg.el: Revert to revision 6.23.2.16.
4996
4997         * pgg-def.el: Revert to revision 6.6.2.14.
4998
4999         * pgg-gpg.el: Revert to revision 6.23.2.34.
5000
5001 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5002
5003         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5004         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5005         thread for both the null and zero (kill/expire thread) universal prefix
5006         cases.
5007         (gnus-summary-expire-thread): Add new function to expire a thread,
5008         using gnus-summary-kill-thread.
5009         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5010         shortcuts for gnus-summary-expire-thread.
5011         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5012         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5013
5014 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5015
5016         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5017         extras value, so an extras entry can be deleted.
5018         (gnus-registry-delete-extra-entry): Use it.
5019         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5020         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5021         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5022         storage through the gnus-registry, and provide an appropriate API for
5023         it.
5024
5025 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5026
5027         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5028         Suggested by Leo <sdl.web@gmail.com>.
5029
5030         * gnus.el: Do.
5031
5032 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5033
5034         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5035         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5036
5037         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5038
5039         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5040         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5041
5042 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5043
5044         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5045         newline.
5046         (nnmbox-request-accept-article): Don't change article in source buffer;
5047         narrow to header to use message-fetch-field rather than
5048         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5049         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5050         as delimiters; make sure article ends with newline.
5051         (nnmbox-delete-mail): Correct last position of article to be deleted;
5052         ignore X-Gnus-Newsgroup header in article body.
5053         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5054         positions; make sure article ends with newline.
5055
5056         * message.el (message-display-abbrev): Don't infloop when a user
5057         inserts SPC in the beginning of header.
5058
5059         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5060         coding-system-for-read and coding-system-for-write for XEmacs having no
5061         file-coding feature.
5062
5063         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5064
5065 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5066
5067         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5068         list of groups not followed by default.  Fix type to be regexp.
5069         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5070
5071 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5072
5073         * hmac-def.el (define-hmac-function): Switch from old-style to
5074         new-style backquotes.
5075
5076         * md4.el (md4-make-step): Likewise.
5077
5078 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5079
5080         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5081         raw-text coding system when saving .newsrc file, which may contain
5082         non-ASCII group names.
5083
5084 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5085
5086         * gnus-cus.el (gnus-score-extra): New widget.
5087         (gnus-score-extra-convert): New function.
5088         (gnus-score-customize): Use it for Extra.
5089
5090 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5091
5092         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5093         (mml2015-mailcrypt-clear-verify): Use it.
5094         (mml2015-gpg-clear-verify): Use it.
5095         (mml2015-pgg-clear-verify): Use it.
5096         (mml2015-epg-clear-verify): Replace the current part with the output
5097         from GnuPG; don't extract the plaintext by itself.
5098
5099         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5100         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5101         mml2015-clear-verify-function; don't touch the armor headers or
5102         dash-escaped text here.
5103
5104 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5105
5106         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5107         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5108         parts, or application/octet-stream as a last resort.
5109         (gnus-mime-view-part-as-type): Don't toggle display.
5110         (gnus-mime-view-part-as-charset): Don't turn off display before
5111         querying charset.
5112
5113         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5114         stuff to undisplayer function in Emacs.
5115         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5116
5117         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5118         text/calendar parts.
5119
5120 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5121
5122         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5123         decoding text/calendar parts.
5124
5125         * message.el (message-forward-make-body-mime): Always mark body as
5126         having no illegible text; remove signed-or-encrypted argument.
5127         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5128
5129         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5130         (mml-generate-mime-1): Don't encode body if it is specified to be in
5131         raw form; don't make buffer be unibyte when inserting multibyte string.
5132
5133 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5134
5135         * sha1.el: Fix up comment style.
5136         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5137         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5138
5139         * hex-util.el: Fix up comment style.
5140         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5141
5142         * gnus-salt.el: Use with-current-buffer.
5143         (gnus-pick-setup-message): Fix long-standing typo.
5144
5145 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5146
5147         * imap.el (imap-logout-timeout): New variable.
5148         (imap-logout, imap-logout-wait): New functions.
5149         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5150
5151         * nnimap.el (nnimap-logout-timeout): New server variable.
5152         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5153         nnimap-logout-timeout.
5154
5155         * gnus-art.el (gnus-article-summary-command-nosave)
5156         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5157
5158 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5159
5160         * gnus.el (gnus-maximum-newsgroup): New variable.
5161
5162         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5163         according to gnus-maximum-newsgroup.
5164
5165         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5166         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5167         Limit the range of articles according to gnus-maximum-newsgroup.
5168
5169 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5170
5171         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5172         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5173         Don't perform gnus-configure-windows here; reuse existing sticky
5174         article buffer.
5175
5176         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5177         it doesn't exist in gnus-article-mode.
5178
5179 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5180
5181         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5182         (gnus-agent-decoded-group-name): New function.
5183         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5184         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5185
5186 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5187
5188         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5189         Add binding for gnus-sticky-article.
5190         (gnus-summary-exit): Don't kill sticky article buffers.
5191
5192         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5193         article buffer.
5194         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5195         (gnus-kill-sticky-article-buffers): New commands.
5196
5197 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5198
5199         * nntp.el (nntp-xref-number-is-evil): New server variable.
5200         (nntp-find-group-and-number): If it is non-nil, don't trust article
5201         numbers in the Xref header.
5202
5203 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5204
5205         * gnus-agent.el (gnus-agent-read-group): New function.
5206         (gnus-agent-flush-group, gnus-agent-expire-group)
5207         (gnus-agent-regenerate-group): Use it.
5208         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5209         nnmail-pathname-coding-system.
5210
5211 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5212
5213         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5214
5215         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5216         that are unread as unread, and also as selected so that information of
5217         marks having been changed by a user may be updated when exiting group.
5218
5219 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5220
5221         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5222         calculated ignoring signature parts to gnus-treat-article.
5223
5224 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5225
5226         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5227         a point here in order to keep the window start.
5228         (gnus-insert-mime-security-button): Make a button overlay without the
5229         front stickiness.
5230         (gnus-mime-display-security): Goto the end of a button.
5231
5232         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5233
5234 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5235
5236         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5237         group-name-at-point.
5238         (gnus-group-completing-read): New function that offers decoded
5239         non-ASCII group names for completion.
5240         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5241         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5242         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5243         (gnus-group-fetch-control): Use it.
5244         (gnus-fetch-group): Use group-name-at-point for the initial value
5245         rather than the default value; use gnus-alive-p.
5246
5247         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5248         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5249         (gnus-summary-post-news): Use gnus-group-completing-read.
5250
5251         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5252         (gnus-read-move-group-name): Decode group name for completion.
5253
5254 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5255
5256         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5257         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5258         Yamaoka slightly modified the code).
5259
5260 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5261
5262         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5263         (nnmail-split-incoming): Bind it.
5264
5265         * nnml.el (nnml-group-name-charset): New function.
5266         (nnml-decoded-group-name): Use it; don't decode group name if
5267         nnmail-group-names-not-encoded-p is non-nil.
5268         (nnml-encoded-group-name): New function.
5269         (nnml-group-pathname): Inline nnml-decoded-group-name.
5270         (nnml-request-expire-articles): Decode group name in message.
5271         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5272         nnmail-pathname-coding-system.
5273         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5274         not decoded ones according to nnmail-group-names-not-encoded-p.
5275         (nnml-generate-active-info): Use nnml-encoded-group-name.
5276
5277 2007-08-08  Glenn Morris  <rgm@gnu.org>
5278
5279         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5280         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5281         doc-strings and comments.
5282
5283 2007-07-25  Glenn Morris  <rgm@gnu.org>
5284
5285         * Relicense all FSF files to GPLv3 or later.
5286
5287 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5288
5289         * gnus-sum.el (gnus-summary-move-article): Make
5290         gnus-summary-respool-article work.
5291
5292 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5293
5294         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5295         string.
5296
5297 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5298
5299         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5300         that should be ignored when comparing distant RSS articles with local
5301         ones.
5302         (nnrss-make-hash-index): New function.  Create a hash index according
5303         to the ignored fields.
5304         (nnrss-check-group): Use it.
5305
5306 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5307
5308         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5309
5310         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5311
5312         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5313         the new optional argument ENCODED is non-nil.
5314         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5315         coding system for encoding group name.
5316         (gnus-group-make-rss-group): Pass un-encoded group name to
5317         gnus-group-make-group.
5318         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5319         encoded.
5320
5321         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5322         Encode group name to which articles are moved or copied.
5323         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5324         coding system for encoding Newsgroup, Followup-To and Xref headers.
5325
5326         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5327         marks; use nnheader-file-coding-system to write a file.
5328         (nnagent-retrieve-headers): Bind file-name-coding-system to
5329         nnmail-pathname-coding-system.
5330
5331         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5332
5333         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5334         (nnml-request-article, nnml-request-create-group)
5335         (nnml-request-rename-group, nnml-find-id)
5336         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5337         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5338         (nnml-save-marks): Use nnml-group-pathname instead of
5339         nnmail-group-pathname.
5340
5341         (nnml-request-create-group, nnml-request-expire-articles)
5342         (nnml-request-move-article, nnml-request-delete-group)
5343         (nnml-deletable-article-p, nnml-possibly-create-directory)
5344         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5345         (nnml-open-marks): Bind file-name-coding-system to
5346         nnmail-pathname-coding-system.
5347
5348         (nnml-request-article): Pass server argument to nnml-find-group-number.
5349         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5350         server argument to nnml-possibly-create-directory.
5351         (nnml-request-accept-article): Pass server argument to
5352         nnml-active-number and nnml-save-mail.
5353         (nnml-find-group-number): Pass server argument to nnml-find-id.
5354         (nnml-request-update-info): Pass server argument to
5355         nnml-marks-changed-p.
5356
5357         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5358         (nnml-save-mail, nnml-active-number): Add server argument.
5359
5360         (nnml-request-delete-group): Warn if group is missing.
5361         (nnml-get-nov-buffer): Decode group name.
5362         (nnml-generate-active-info): Encode group name.
5363         (nnml-open-marks): Decode group name in messages.
5364
5365 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5366
5367         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5368         if it is not specified.
5369         (gnus-article-pipe-part, gnus-article-save-part)
5370         (gnus-article-interactively-view-part, gnus-article-copy-part)
5371         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5372         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5373         (gnus-article-replace-part, gnus-article-delete-part)
5374         (gnus-article-view-part-as-type): Pass raw prefix argument to
5375         gnus-article-part-wrapper.
5376
5377 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5378
5379         * gnus-agent.el (gnus-agent-save-active): Bind
5380         nnheader-file-coding-system to gnus-agent-file-coding-system.
5381
5382         * gnus-cache.el (gnus-cache-save-buffers)
5383         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5384         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5385         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5386         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5387         (gnus-cache-generate-active, gnus-cache-rename-group)
5388         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5389         (gnus-cache-update-overview-total-fetched-for): Bind
5390         file-name-coding-system to nnmail-pathname-coding-system.
5391         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5392         variables.
5393         (gnus-cache-decoded-group-name): New function.
5394         (gnus-cache-file-name): Use it.
5395         (gnus-cache-generate-active): Use non-decoded group name for active.
5396
5397         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5398         right place.
5399         (gnus-write-active-file): Don't break non-ASCII group names.
5400
5401         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5402         nnmail-pathname-coding-system.
5403
5404         * lpath.el: Bind default-file-name-coding-system,
5405         file-name-coding-system and language-info-alist for XEmacs.
5406
5407         * gnus-uu.el (gnus-uu-decode-save): Typo.
5408
5409 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5410
5411         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5412
5413 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5414
5415         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5416         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5417         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5418         (gnus-agent-flush-group, gnus-agent-flush-cache)
5419         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5420         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5421         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5422         (gnus-agent-regenerate-group)
5423         (gnus-agent-update-files-total-fetched-for)
5424         (gnus-agent-update-view-total-fetched-for): Bind
5425         file-name-coding-system to nnmail-pathname-coding-system.
5426         (gnus-agent-group-pathname): Don't encode file names by
5427         nnmail-pathname-coding-system.
5428         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5429         coding-system-for-write instead of buffer-file-coding-system to
5430         gnus-agent-file-coding-system.
5431
5432         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5433         Decode group name.
5434
5435         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5436
5437         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5438         (gnus-read-newsrc-el-file): Make group names unibyte.
5439
5440         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5441         nnmail-pathname-coding-system.
5442
5443         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5444         (nnrss-request-delete-group): Bind file-name-coding-system to
5445         nnmail-pathname-coding-system.
5446         (nnrss-read-server-data, nnrss-read-group-data): Bind
5447         file-name-coding-system correctly.
5448         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5449
5450         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5451         (nntp-server-to-method-cache): New variable.
5452         (nntp-group-pathname): New function that decodes non-ASCII group names.
5453         (nntp-possibly-create-directory, nntp-marks-changed-p)
5454         (nntp-save-marks, nntp-open-marks): Use it.
5455         (nntp-possibly-create-directory, nntp-open-marks):
5456         Bind file-name-coding-system to nnmail-pathname-coding-system.
5457         (nntp-open-marks): Decode group names when bootstrapping marks.
5458
5459         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5460         Newsgroups and Folowup-To headers.
5461
5462 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5463
5464         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5465         (gnus-server-closed-face, gnus-server-denied-face)
5466         (gnus-server-offline-face): Remove variable.
5467         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5468
5469         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5470         of modifying message-stack directly for XEmacs.
5471
5472         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5473         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5474         if the coding-system argument is nil for XEmacs.
5475
5476         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5477         mm-charset-override-alist.
5478
5479         * rfc2047.el: Don't require base64; require rfc2045 for the function
5480         rfc2045-encode-string.
5481         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5482         to quote the parameter value.
5483
5484 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5485
5486         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5487         form in gnus-group-name-charset-method-alist.
5488
5489         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5490         overrides the default layout edit-form.
5491
5492         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5493
5494         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5495
5496 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5497
5498         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5499         as unfetched articles.
5500
5501 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5502
5503         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5504
5505 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5506
5507         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5508         original back end that keeps marks in the local system.
5509
5510 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5511
5512         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5513         arg of pop-to-buffer for XEmacs.
5514         (gnus-article-read-summary-keys): Ditto; don't restore window
5515         configuration if summary command ends up with neither article buffer
5516         nor summary buffer; describe bindings if summary keys end with C-h.
5517
5518 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5519
5520         * message.el (message-fix-before-sending): Skip raw message part to be
5521         forwarded while checking illegible text.
5522         (message-forward-make-body-mime, message-forward-make-body): Mark
5523         signed or encrypted raw message as having no illegible text.
5524
5525 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5526
5527         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5528         (gnus-message-with-timestamp-1): New macro.
5529         (gnus-message-with-timestamp): New function.
5530         (gnus-message): Use them.
5531
5532         * nnheader.el (nnheader-message): Use them.
5533
5534 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5535
5536         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5537         .newsrc.eld file.
5538
5539 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5540
5541         * gnus-agent.el (gnus-agent-fetch-headers)
5542         (gnus-agent-retrieve-headers): Bind
5543         gnus-decode-encoded-address-function to identity.
5544
5545         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5546         available also when the server returns simply a dot.
5547
5548         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5549
5550 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5551
5552         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5553
5554 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5555
5556         * gnus-ems.el (gnus-x-splash): Make it work.
5557
5558         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5559         from being used.
5560
5561         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5562
5563 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5564
5565         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5566         4th and the 5th arguments.
5567
5568         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5569         the front stickiness.
5570         (gnus-article-summary-command-nosave): Correct the order of the
5571         arguments passed to pop-to-buffer.
5572         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5573         summary command ends up with the article buffer.
5574
5575         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5576         the same faces.
5577
5578 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5579
5580         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5581
5582 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5583
5584         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5585         * gnus-sum.el (gnus-summary-highlight):
5586         * pgg.el (pgg-sign-region, pgg-sign):
5587         * mail-source.el (mail-source-delete-old-incoming-confirm):
5588         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5589
5590 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5591
5592         * gnus-art.el (gnus-mime-view-part-externally)
5593         (gnus-mime-view-part-internally): Fix predicate function passed to
5594         completing-read.
5595
5596         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5597
5598         * gnus.el (gnus-update-message-archive-method): Add :version.
5599
5600 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5601
5602         * gnus.el (gnus-update-message-archive-method): New variable.
5603
5604         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5605         according to gnus-message-archive-method if
5606         gnus-update-message-archive-method is non-nil.
5607
5608 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5609
5610         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5611         by Loic Dachary <loic@dachary.org>.
5612         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5613
5614 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5615
5616         * message.el (message-pop-to-buffer): Add switch-function argument.
5617         (message-mail): Pass switch-function argument to it.
5618
5619 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5620
5621         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5622         Improve doc string.
5623
5624 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5625
5626         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5627         (gnus-header-content)
5628         * gnus-cite.el (gnus-cite-10)
5629         * gnus-srvr.el (gnus-server-closed)
5630         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5631         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5632         (gnus-group-mail-3-empty, gnus-group-mail-low)
5633         (gnus-group-mail-low-empty, gnus-splash)
5634         * message.el (message-header-to, message-header-cc)
5635         (message-header-subject, message-header-other, message-header-name)
5636         (message-header-xheader, message-separator, message-cited-text)
5637         (message-mml): Lighten colors of faces used for dark background.
5638
5639 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5640
5641         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5642         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5643
5644 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5645
5646         * message.el (message-narrow-to-headers-or-head):
5647         Ignore mail-header-separator in the body.
5648
5649 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5650
5651         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5652         same as window size.
5653
5654 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5655
5656         * message.el (message-font-lock-keywords): Use message-header-xheader
5657         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5658         ahead of the anything pattern, to get it recognised.
5659
5660 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5661
5662         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5663         spam.el loads uses it in the compiled defadvice form.
5664
5665 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5666
5667         * gnus-sum.el (gnus-articles-to-read)
5668         (gnus-summary-insert-old-articles): Don't truncate group name for
5669         `read-string'.
5670
5671         * gnus-util.el (gnus-limit-string): Delete this function.
5672
5673         * gnus-sum.el (gnus-simplify-subject-fully): Use
5674         `truncate-string-to-width' instead.
5675
5676 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5677
5678         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5679         if, on summary exit, the next group has to be selected.
5680         (gnus-summary-exit): Use it.
5681
5682 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5683
5684         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5685         non-break space.
5686
5687 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5688
5689         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5690         Check if group is not a directory.
5691         (nnfolder-request-expire-articles): Don't delete articles if the target
5692         group is not available.
5693
5694         * nnml.el (nnml-request-create-group): Properly check if group is not a
5695         file.
5696         (nnml-request-expire-articles): Don't delete articles if the target
5697         group is not available.
5698
5699         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5700         Don't quote characters that are within parentheses.
5701
5702 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5703
5704         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5705         (gnus-handle-ephemeral-exit): Select article according to it.
5706
5707 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5708
5709         * message.el (message-insert-formated-citation-line): Remove newline.
5710         (message-citation-line-format): Add final \n here so that the user can
5711         avoid a blank line.
5712
5713 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5714
5715         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5716         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5717         Update lanl/arXiv support.
5718
5719 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5720
5721         * gnus.el: Bump version number.
5722
5723 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5724
5725         * gnus.el (gnus-version-number): Bump version.
5726
5727 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5728
5729         * gnus.el: No Gnus v0.6 is released.
5730
5731 2007-04-27  Didier Verna  <didier@xemacs.org>
5732
5733         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5734         * gmm-utils.el (gmm-regexp-concat): here.
5735         * message.el: Don't require 'gnus-util.
5736         (message-dont-reply-to-names): Handle name change above.
5737         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5738
5739 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5740
5741         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5742         since the initial value varies according to the system.
5743
5744 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5745
5746         * mm-util.el (mm-charset-synonym-alist): Defcustom.
5747
5748 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5749
5750         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
5751
5752 2007-04-24  Didier Verna  <didier@xemacs.org>
5753
5754         Improve the type of gnus-ignored-from-addresses.
5755         * gnus-util.el (gnus-orify-regexp): New function.
5756         * message.el (gnus-util): Require it.
5757         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
5758         * gnus-sum.el (gnus-ignored-from-addresses): New function.
5759         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
5760
5761 2007-04-24  Didier Verna  <didier@xemacs.org>
5762
5763         * gnus-sum.el:
5764         * gnus-utils.el: Fix some trailing whitespaces.
5765
5766 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5767
5768         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
5769         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
5770         article's Message-ID; refer parent article in summary buffer.
5771
5772         * message.el (message-bounce): Call mime-to-mml.
5773
5774         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
5775         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
5776         optimize and/or forms properly.
5777
5778 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
5779
5780         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
5781         URL.
5782
5783 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5784
5785         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
5786
5787 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5788
5789         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
5790         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
5791         displayed of multipart/alternative part if it is invoked from summary
5792         buffer.
5793
5794         * mm-view.el (mm-inline-text-html-render-with-w3m)
5795         (mm-inline-text-html-render-with-w3m-standalone)
5796         (mm-inline-render-with-function): Use mail-parse-charset by default.
5797
5798 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
5799
5800         * parse-time.el (parse-time-string-chars): Check if CHAR
5801         is less than the length of parse-time-syntax.
5802
5803 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5804
5805         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
5806         from gnus-newsgroup-processable.
5807
5808 2007-04-16  Didier Verna  <didier@xemacs.org>
5809
5810         * gnus-msg.el (gnus-configure-posting-styles): Handle
5811         message-signature-directory properly with :file syntax.  Reported by
5812         "Leo".
5813
5814 2007-04-11  Didier Verna  <didier@xemacs.org>
5815
5816         New user option: message-signature-directory.
5817         * gnus-msg.el (gnus-configure-posting-styles): Support it.
5818         * message.el (message-insert-signature): Ditto.
5819         * message.el (message-signature-file): Doc update.
5820         * message.el (message-signature-directory): New.
5821
5822 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5823
5824         * gnus-msg.el (gnus-inews-yank-articles): Use
5825         message-exchange-point-and-mark instead of exchange-point-and-mark.
5826
5827 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5828
5829         * message.el (message-yank-original): Make sure cited text ends with
5830         newline; don't exchange point and mark.
5831
5832 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
5833
5834         * tls.el (open-tls-stream): Properly handle case where there
5835         is no associated buffer.
5836
5837 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
5838
5839         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
5840         message-yank-original, make sure (< mark TEXT point).
5841
5842 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
5843
5844         * message.el (message-fill-column): New variable.
5845         (message-mode): Use it.  Add comment on a possible new hook.
5846
5847         * nnmail.el (nnmail-spool-file): Mark as obsolete.
5848         (nnmail-get-new-mail): Reformat.
5849
5850         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
5851
5852         * gmm-utils.el: Fix Commentary.
5853         (gmm-tool-bar-from-list): Fix typo in doc string.
5854
5855 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
5856
5857         * message.el (message-yank-original): Don't switch point and mark
5858         unnecessarily to put point and mark as documented.
5859
5860 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5861
5862         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
5863         from the message heads.
5864
5865 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
5866
5867         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
5868         article buffer does not have a window.  This may not be the best
5869         solution but is certainly better than setting the start of the null,
5870         that is the current, window.
5871
5872 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
5873
5874         * gnus-draft.el (gnus-draft-setup-hook): New hook.
5875         (gnus-draft-setup): Run it.
5876
5877         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
5878         gnus-score-fast-scoring.  Allow regexp.
5879         (gnus-score-headers): Use it.
5880
5881         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
5882         XEmacs.
5883
5884         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
5885         string.
5886         (gnus-button-alist): Also catch `<f1> k ...'.
5887         (gnus-treat-display-x-face): Fix doc string.
5888
5889 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5890
5891         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
5892         evaluation of gnus-extended-version to ensure correct generation of the
5893         User-Agent header when message-generate-headers-first is used.
5894
5895 2007-03-24  Simon Josefsson  <simon@josefsson.org>
5896
5897         * hashcash.el (hashcash-generate-payment-async): Don't crash if
5898         hashcash-path is nil.  Don't call callback with incorrect number of
5899         parameters if val is 0.
5900
5901 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
5902
5903         * message.el (message-required-news-headers):
5904         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
5905
5906 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
5907
5908         * tls.el (open-tls-stream): In handshake-waiting loop,
5909         don't wait more if there is output available to process.
5910
5911 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
5912
5913         * tls.el (tls-program): Doc fix.
5914
5915 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5916
5917         * message.el (message-generate-new-buffers): Change the meaning of the
5918         nil value; add `standard' to the choices; treat t as `unique'; improve
5919         doc string.
5920         (gnus-select-frame-set-input-focus): Autoload.
5921         (message-buffer-name): Search for the existing message buffer if
5922         message-generate-new-buffers is nil or `standard'; treat the value t of
5923         message-generate-new-buffers as `unique'.
5924         (message-pop-to-buffer): Raise the frame already displaying the message
5925         buffer; clear the echo area after querying.
5926         (message-setup): Pass the `continue' argument to compose-mail.
5927         (message-mail): Prefer `switch-function' if it is given; search for the
5928         existing message buffer if the `continue' argument is non-nil; pass
5929         continue and switch-function arguments to compose-mail by way of
5930         message-setup.
5931         (message-mail-other-window): Adjust argument of message-setup.
5932         (message-mail-other-frame): Ditto.
5933
5934 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5935
5936         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
5937         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
5938         to turn font-lock on when turning gnus-message-citation-mode on.
5939
5940 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
5941
5942         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
5943         (mml-smime-function-alist): New variable; add epg as the backend.
5944         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
5945         mml-smime- functions instead.
5946         * mm-view.el: Require smime.
5947
5948 2007-03-05  Didier Verna  <didier@xemacs.org>
5949
5950         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
5951         instead of just inheritance for posting styles.
5952         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
5953
5954 2007-02-24  Chris Moore  <dooglus@gmail.com>
5955
5956         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
5957         * pgg-pgp.el (pgg-pgp-encrypt-region):
5958         * pgg-gpg.el (pgg-gpg-encrypt-region):
5959         Check pgg-encrypt-for-me if no other recipients.
5960
5961 2007-02-24  John Paul Wallington  <jpw@pobox.com>
5962
5963         * tls.el (tls-certtool-program): Fix custom type.
5964
5965 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5966
5967         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
5968         and point-at-eol instead of line-(beginning|end)-position.
5969
5970         * assistant.el (assistant-parse-buffer): Ditto.
5971
5972         * netrc.el (netrc-parse-services): Ditto.
5973
5974 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
5975
5976         * mml2015.el (mml2015-epg-find-usable-key): New function.
5977         (mml2015-epg-sign): Use it.
5978         (mml2015-epg-encrypt): Use it.
5979
5980 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5981
5982         * message.el (message-make-in-reply-to): Quote name containing
5983         non-ASCII characters.  It will make the RFC2047 encoder cause an error
5984         if there are special characters.  Reported by NAKAJI Hiroyuki
5985         <nakaji@jp.freebsd.org>.
5986
5987 2007-02-27  Didier Verna  <didier@xemacs.org>
5988
5989         Include the group parameters as well as the topic ones in the
5990         inheritance filter process.
5991         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
5992         argument GROUP-PARAMS-LIST.
5993         * gnus-topic.el (gnus-group-topic-parameters): Use it.
5994
5995 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5996
5997         * nntp.el (nntp-never-echoes-commands)
5998         (nntp-open-connection-functions-never-echo-commands): New variables.
5999         (nntp-send-command): Use them.
6000
6001 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6002
6003         * mml2015.el (mml2015-epg-verify): Simplified.
6004
6005 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6006
6007         * mml.el (mml-content-disposition-alist): New user option.
6008         (mml-content-disposition): New function.
6009         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6010         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6011
6012 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6013
6014         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6015         verification.
6016
6017 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6018
6019         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6020         articles posted in the last 24 hours.
6021
6022 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6023
6024         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6025
6026 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6027
6028         * nntp.el (nntp-send-command): Don't wait for echoes when
6029         nntp-open-ssl-stream is used.
6030
6031 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6032
6033         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6034         (gnus-message-add-citation-keywords)
6035         (gnus-message-remove-citation-keywords): Remove.
6036         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6037         directly, make the variables in font-lock-defaults buffer-local, add
6038         gnus-message-citation-keywords to them and then update the value of
6039         font-lock-keywords.
6040
6041 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6042
6043         * message.el (message-cite-original-1): Don't call
6044         gnus-article-highlight-citation.
6045
6046         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6047         citations; fix line count.
6048
6049 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6050
6051         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6052         (gnus-message-add-citation-keywords)
6053         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6054         versions of font-lock-add-keywords and font-lock-remove-keywords to
6055         work with XEmacs correctly.
6056
6057 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6058
6059         * gnus-cite.el (gnus-cite-face-list): Set the values of
6060         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6061         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6062         (gnus-message-cite-prefix-regexp): New variable.
6063         (gnus-message-search-citation-line): Use it; protect against long
6064         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6065         the 0th match data for Emacs.
6066         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6067         (gnus-message-add-citation-keywords): Append keywords rather than
6068         prepending; emulate font-lock-add-keywords if it is not available.
6069         (gnus-message-remove-citation-keywords): Emulate
6070         font-lock-remove-keywords if it is not available.
6071
6072         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6073
6074         * message.el (message-cite-prefix-regexp): Set the value of
6075         gnus-message-cite-prefix-regexp.
6076
6077 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6078
6079         * nnweb.el (nnweb-google-parse-1): Update parser.
6080
6081 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6082
6083         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6084
6085 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6086
6087         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6088         regexp.
6089
6090 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6091
6092         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6093         string-to-multibyte.
6094         (uudecode-decode-region-internal): Use it.
6095
6096         * lpath.el: Fbind string-as-multibyte for XEmacs.
6097
6098 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6099
6100         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6101         custom choice.
6102
6103         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6104
6105 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6106
6107         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6108
6109         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6110         `write-region' to respect `mm-inhibit-file-name-handlers'.
6111
6112 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6113
6114         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6115         Use gnus-home-directory instead of "~/" or "$HOME".
6116
6117 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6118
6119         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6120         to mention filename.
6121         Add comments at beginning regarding usage.
6122         (encrypt-write-file-contents): Change interactive so a string is
6123         acceptable.  If the file has no associated model, show an error instead
6124         of a nonsense prompt.
6125
6126 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6127
6128         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6129         Thanks to Yoshihiko Yamada for kind notification of this typo.
6130
6131 2007-01-12  Kenichi Handa  <handa@m17n.org>
6132
6133         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6134         multibyte buffer.
6135
6136 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6137
6138         * gnus-score.el (gnus-score-fast-scoring): New variable.
6139         (gnus-score-headers): Use it.
6140
6141         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6142
6143         * message.el (message-cite-original-1): Call
6144         gnus-article-highlight-citation if requested.
6145         (message-make-from): Allow name and address as optional arguments.
6146
6147         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6148
6149         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6150         bugs to doc string.
6151         (gnus-button-alist): Add mid\\|message-id.
6152         (gnus-button-fetch-group): Extend for use in
6153         `browse-url-browser-function'.
6154         (gnus-button-url-regexp): Try to catch paired parentheses like in
6155         Wikipedia URLs.
6156
6157         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6158         Suggested by Simon Krahnke <overlord@gmx.li>.
6159
6160 2007-01-13  Romain Francoise  <romain@orebokech.com>
6161
6162         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6163         Update copyright.
6164
6165 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6166
6167         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6168
6169 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6170
6171         * gnus-registry.el (gnus-registry-unfollowed-groups)
6172         (gnus-registry-split-fancy-with-parent): Fix documentation.
6173
6174 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6175
6176         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6177         from nnweb groups.
6178
6179 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6180
6181         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6182         Xref urls.  Erase buffer before requesting head.
6183
6184 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6185
6186         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6187         customizable.
6188
6189 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6190
6191         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6192         no signing key is found.
6193         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6194         no encrypting and/or signing key is found.
6195
6196 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6197
6198         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6199
6200 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6201
6202         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6203         headers read from disk with the ones newly found in the current search.
6204         This should no longer cause problems, because the article numbers in
6205         Gmane's `nov.php' output are ignored since the previous change.
6206
6207 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6208
6209         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6210
6211 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6212
6213         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6214         replace-regexp-in-string; bind url-version; fbind display-images-p and
6215         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6216         find-face and set-itimer-function for Emacs; bind itimer-list for
6217         Emacs.
6218
6219         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6220
6221 2007-01-01  Romain Francoise  <romain@orebokech.com>
6222
6223         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6224
6225 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6226
6227         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6228         `define-minor-mode' macro definition expanded properly.
6229         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6230         exclude it there.
6231
6232         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6233         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6234         `fboundp' test.
6235         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6236         This is OK to autoload in (S)XEmacs now.
6237
6238 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6239
6240         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6241         keystroke.
6242         (gnus-summary-limit-to-singletons): Fix typo.
6243
6244         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6245         else fails.
6246
6247 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6248
6249         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6250         docstring.
6251
6252         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6253         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6254         (gnus-summary-insert-dormant-articles): Fix typo in message.
6255
6256 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6257
6258         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6259         nil for XEmacs.
6260         (gnus-message-citation-mode): Don't autoload in XEmacs.
6261
6262         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6263
6264 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6265
6266         * nnimap.el (nnimap-expunge-search-string): Mention
6267         nnimap-search-uids-not-since-is-evil in docstring.
6268
6269 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6270
6271         * spam.el: Revert to make-obsolete-variable because
6272         define-obsolete-variable-alias is not supported in Emacs 21.
6273
6274         * spam.el (spam-ifile-path, spam-ifile-database-path)
6275         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6276         make-obsolete-variable.
6277         (spam-bsfilter-path, spam-bsfilter-program)
6278         (spam-spamassassin-path, spam-spamassassin-program)
6279         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6280         use "path" inappropriately.
6281         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6282         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6283         variable names.
6284
6285 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6286
6287         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6288         summary buffer.
6289
6290         * password.el (password-cache-remove): Use clear-string to burn
6291         password, if available.
6292
6293 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6294
6295         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6296
6297         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6298
6299         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6300         (gnus-message-highlight-citation): Move defcustom here from
6301         gnus-cite.el.
6302         (gnus-message-citation-mode): Autoload.
6303
6304         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6305         checks to make it compile with XEmacs.
6306         (gnus-message-citation-mode): New minor mode.
6307         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6308         (gnus-message-highlight-citation): New variables.
6309         (gnus-message-search-citation-line)
6310         (gnus-message-add-citation-keywords)
6311         (gnus-message-remove-citation-keywords)
6312         (turn-on-gnus-message-citation-mode)
6313         (turn-off-gnus-message-citation-mode): New functions.
6314
6315 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6316
6317         * gnus-cite.el: Enable highlighting of different citation levels in
6318         message-mode.
6319
6320 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6321
6322         * message.el (message-make-fqdn): Fix comment.
6323         (message-bogus-system-names): Add ".local".
6324
6325         * spam.el (spam-ifile-path, spam-ifile-program)
6326         (spam-ifile-database-path, spam-ifile-database)
6327         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6328         Don't use "path" inappropriately.
6329         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6330         strings.
6331         (spam-check-ifile, spam-ifile-register-with-ifile)
6332         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6333         new variable names.
6334
6335         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6336         (gnus-treat-display-smileys): Simplify using
6337         gnus-image-type-available-p.
6338
6339         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6340         available.
6341
6342         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6343         `display-images-p' if available.
6344
6345 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6346
6347         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6348         one after turning on the buffer's multibyteness instead of decoding
6349         them directly in the unibyte buffer that causes unexpected conversion
6350         in Emacs 23 (unicode).
6351
6352 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6353
6354         * message.el (message-generate-hashcash): Fix custom type.
6355
6356 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6357
6358         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6359
6360 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6361
6362         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6363         disconnect icons.  Add help text.
6364
6365 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6366
6367         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6368         negated to be consistent with the others we handle.
6369
6370 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6371
6372         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6373         version of gnus-summary-buffer to something, so that we can use two
6374         article buffers at the same time.
6375
6376 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6377
6378         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6379         trigger all the extra headers.
6380         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6381         sorting.
6382
6383 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6384
6385         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6386         solid groups.
6387
6388 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6389
6390         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6391
6392 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6393
6394         * legacy-gnus-agent.el: Add Copyright notice.
6395
6396 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6397
6398         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6399
6400 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6401
6402         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6403
6404         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6405         to make it work reliably in CVS Emacs.
6406         (gnus-summary-limit-strange-charsets-predicate)
6407         (gnus-summary-limit-to-predicate): New functions.
6408
6409 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6410
6411         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6412         specifying array size.
6413         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6414         array if it is too small.
6415         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6416         (gnus-sort-threads-loop): New function.
6417
6418 2006-12-06  Chris Moore  <dooglus@gmail.com>
6419
6420         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6421         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6422
6423 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6424
6425         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6426         options.
6427
6428 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6429
6430         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6431         DOS-ing the recipient.
6432
6433         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6434         the headers when creating the mapping to avoid mismappings.
6435         (nnweb-gmane-create-mapping): Always nix out old mapping.
6436
6437 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6438
6439         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6440         and mm-verify-option to never.
6441
6442 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6443
6444         * message.el (message-signed-or-encrypted-p): New function.
6445         (message-forward-make-body): Use it.
6446
6447         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6448         Replace encode-coding-string with mm-encode-coding-string.
6449
6450 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6451
6452         * nneething.el (nneething-decode-file-name): Replace
6453         decode-coding-string with mm-decode-coding-string.
6454
6455         * gnus-int.el (gnus-open-server): Say failed server's name.
6456
6457 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6458
6459         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6460         strings to a single string.  Quote `errors-file-name'.
6461         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6462         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6463         Adjust calls.  Use `shell-quote-argument'.
6464
6465 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6466
6467         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6468         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6469
6470         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6471         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6472         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6473         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6474         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6475         (gnus-subscribe-newsgroup, gnus-1):
6476         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6477         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6478         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6479         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6480
6481 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6482
6483         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6484         keystroke.
6485         (gnus-summary-limit-to-bodies): Implement headersp.
6486
6487 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6488
6489         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6490
6491 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6492
6493         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6494
6495 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6496
6497         * message.el (message-generate-hashcash): Expand range of values to
6498         include `opportunistic'.
6499         (message-send-mail): Use it.
6500
6501 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6502
6503         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6504         and comment it.
6505
6506         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6507
6508 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6509
6510         * gnus-util.el (gnus-extract-address-components): Improve comment.
6511
6512 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6513
6514         * gnus-util.el (gnus-extract-address-components): Work with address in
6515         which the name portion contains @.
6516
6517         * lpath.el: Fbind custom-autoload.
6518
6519 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6520
6521         * gnus.el (gnus-start): Move custom group up.
6522         (gnus-select-method): Don't autoload, but make it available for
6523         `customize-variable'.
6524         (gnus-getenv-nntpserver): Don't autoload.
6525
6526 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6527
6528         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6529
6530 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6531
6532         * message.el (message-sendmail-extra-arguments): New variable.
6533         (message-send-mail-with-sendmail): Use it.
6534
6535 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6536
6537         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6538         mm-with-unibyte-current-buffer to make string unibyte.
6539
6540         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6541         mm-string-as-multibyte.
6542
6543 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6544
6545         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6546         Reported by Werner Koch <wk@gnupg.org>.
6547
6548 2006-11-14  Daiki Ueno  <ueno@p360>
6549
6550         * mml2015.el: Autoload epa-select-keys when compiling.
6551
6552 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6553
6554         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6555         message-options.
6556         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6557
6558 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6559
6560         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6561         EasyPG (< 0.0.6).
6562         (mml2015-always-trust): New user option.
6563         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6564         prompt.
6565
6566 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6567
6568         * nntp.el (nntp-authinfo-force): New variable.
6569         (nntp-send-authinfo): Use it.
6570
6571 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6572
6573         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6574         decode encoded words.  Improve prompt.  Add comment about forwarding.
6575         (message-replacement-char): Move up.
6576
6577 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6578
6579         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6580         instead of gnus-intersection because arguments of gnus-sorted-nunion
6581         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6582
6583 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6584
6585         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6586         (message-simplify-subject-functions): Enable
6587         message-strip-subject-encoded-words by default.
6588
6589 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6590
6591         * message.el (message-strip-subject-encoded-words): New function.
6592         (message-simplify-subject-functions): New variable.
6593         (message-simplify-subject): Use it.  Fix typo in doc string.
6594         Support message-strip-subject-encoded-words.
6595
6596 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6597
6598         * gnus-diary.el (gnus-diary-delay-format-function):
6599         * nndiary.el (nndiary-reminders):
6600         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6601
6602 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6603
6604         * gnus-art.el (article-hide-boring-headers): Fetch date from
6605         gnus-original-article-buffer to avoid problems with localized date
6606         strings.
6607
6608 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6609
6610         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6611
6612 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6613
6614         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6615         New variables.
6616         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6617         (mm-charset-synonym-alist): Move some entries to
6618         mm-codepage-iso-8859-list.
6619         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6620         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6621
6622 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6623
6624         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6625
6626 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6627
6628         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6629         with Emacs 21 and XEmacs.
6630
6631 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6632
6633         * spam.el (spam-parse-address): New function for better parsing,
6634         catching errors, etc.
6635         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6636
6637 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6638
6639         * mm-view.el: Add interactive arg to html2text autoload.
6640
6641 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6642
6643         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6644
6645 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6646
6647         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6648         variables.
6649         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6650         (mm-charset-synonym-alist): Move some entries to
6651         mm-codepage-iso-8859-list.
6652
6653         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6654
6655 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6656
6657         * message.el (message-citation-line-format)
6658         (message-insert-formated-citation-line): Fix implementation of %E, %N
6659         and %n according to the doc string.
6660
6661 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6662
6663         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6664         car-safe to avoid bad parses.
6665
6666 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6667
6668         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6669         names.
6670
6671         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6672
6673 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6674
6675         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6676         header.
6677
6678         * message.el (message-draft-headers): Add Date.
6679         (message-headers-to-generate): Fix typo in docstring.
6680
6681         * nndraft.el (nndraft-required-headers): New variable.
6682         (nndraft-generate-headers): Use it.
6683
6684         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6685
6686 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6687
6688         * gnus-registry.el (gnus-registry-wash-for-keywords)
6689         (gnus-registry-find-keywords): New functions to allow easy searching of
6690         articles that are in the registry.
6691
6692 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6693
6694         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6695         ietf-drums-parse-address instead of gnus-extract-address-components.
6696         Reported by Damien Elmes <damien@repose.cx>.
6697
6698 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6699
6700         * gnus.el (gnus-mime): Remove unused custom group.
6701
6702 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6703
6704         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6705         "blank line" when searching for end of armor headers.
6706
6707 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6708
6709         * gmm-utils.el (gmm-write-region): Fix variable name.
6710
6711 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6712
6713         * gmm-utils.el (gmm-write-region): New function based on compatibility
6714         code from `mm-make-temp-file'.
6715
6716         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6717
6718         * nnmaildir.el (nnmaildir--update-nov)
6719         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6720         Use `gmm-write-region'.
6721
6722 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6723
6724         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6725         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6726
6727         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6728
6729         * message.el (message-replacement-char): New variable.
6730         (message-fix-before-sending): Use it.
6731         (message-simplify-subject): New function to remove duplicate code.
6732         (message-reply, message-followup): Use it.
6733
6734         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6735         gnus-summary-limit-to-articles.
6736
6737 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6738
6739         * gnus-util.el (gnus-with-local-quit): New macro.
6740
6741         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6742
6743 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6744
6745         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
6746         ignore non-string data.
6747
6748 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
6749
6750         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
6751         non-string data (needs to be done in the registry too).
6752
6753 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6754
6755         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
6756         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
6757         (gnus-registry-split-fancy-with-parent)
6758         (gnus-registry-fetch-simplified-message-subject-fast)
6759         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
6760         Remove text properties on ingress into the registry and when it's saved.
6761         (gnus-registry-clean-empty-function): Fix bug with cleaning the
6762         registry from entries with no groups.
6763
6764 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6765
6766         * gnus-util.el (gnus-string-remove-all-properties): Add utility
6767         function to remove string properties.
6768
6769 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
6770
6771         * gmm-utils.el (gmm): Adjust custom version.
6772
6773         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
6774         custom version.
6775
6776         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
6777
6778 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
6779
6780         * gnus-art.el (gnus-insert-prev-page-button)
6781         (gnus-insert-next-page-button): Simplify.  Reformat.
6782
6783 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6784
6785         * gnus-art.el (gnus-insert-prev-page-button)
6786         (gnus-insert-next-page-button): Apply gnus-article-button-face.
6787
6788 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
6789
6790         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
6791
6792 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6793
6794         * gnus-art.el (gnus-insert-mime-button)
6795         (gnus-insert-mime-security-button):
6796         Apply gnus-article-button-face to MIME and security buttons.
6797
6798 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
6799
6800         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
6801         readable.
6802
6803 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6804
6805         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
6806
6807 2006-09-20  Steve Youngs  <steve@sxemacs.org>
6808
6809         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
6810         `browse-url-of-file' instead of `browse-url'.
6811
6812 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6813
6814         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6815         regexp.  Articles containing quotation were cut prematurely.
6816
6817 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6818
6819         * message.el (message-cite-original-1): Use nobody by default for the
6820         value of From header.
6821         (message-reply): Ditto.
6822
6823 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
6824
6825         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
6826         to the gnus-info.  This fixes a bug of inline-PGP message verification.
6827         Reported by Michael Piotrowski <mxp@dynalabs.de>.
6828
6829 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
6830
6831         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
6832         mails in the doc string.  Add some URLs in comment.
6833         (pop3-movemail): Warn about pop3-leave-mail-on-server.
6834
6835 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6836
6837         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
6838         backslashes handling and the way to find boundaries of quoted strings.
6839
6840 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
6841
6842         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
6843         mml1991-encrypt-to-self is set and mml1991-signers is not set.
6844         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
6845         mml2015-encrypt-to-self is set and mml2015-signers is not set.
6846
6847 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
6848
6849         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
6850         doc string.
6851         (gnus-button-regexp, gnus-button-last): Remove unused variables.
6852
6853 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6854
6855         * lpath.el: Fbind epg-check-configuration.
6856
6857 2006-09-06  Simon Josefsson  <jas@extundo.com>
6858
6859         * mml2015.el (mml2015-use): Doc fix, mention epg.
6860
6861 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6862
6863         * mml2015.el (mml2015-use): Default to epg, if available.
6864
6865 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6866
6867         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
6868         message-sender.
6869         (mml1991-epg-encrypt): Ditto.
6870         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
6871         message-sender.
6872         (mml2015-epg-encrypt): Ditto.
6873
6874 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
6875
6876         * message.el (message-send-mail-with-sendmail): Look for sendmail in
6877         several common directories.
6878
6879 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
6880
6881         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
6882         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
6883
6884 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6885
6886         * gnus-art.el (article-decode-encoded-words): Make it fast.
6887
6888 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6889
6890         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
6891
6892         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
6893         in quoted string into `\'.
6894
6895 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6896
6897         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
6898         Use standard-syntax-table.
6899
6900 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6901
6902         * gnus-art.el (gnus-decode-address-function): New variable.
6903         (article-decode-encoded-words): Use it to decode headers which are
6904         assumed to contain addresses.
6905         (gnus-mime-delete-part): Remove useless `or'.
6906
6907         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
6908         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
6909         (gnus-nov-parse-line): Use it to decode From header.
6910         (gnus-get-newsgroup-headers): Ditto.
6911         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
6912
6913         * mail-parse.el (mail-decode-encoded-address-region): New alias.
6914         (mail-decode-encoded-address-string): New alias.
6915
6916         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
6917         New function.
6918         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
6919         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
6920         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
6921         (rfc2047-decode-string): Ditto.
6922         (rfc2047-decode-address-region): New function.
6923         (rfc2047-decode-address-string): New function.
6924
6925 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
6926
6927         * message.el (message-caesar-buffer-body): Allow rotating headers.
6928
6929         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
6930
6931         * message.el (message-insert-formated-citation-line): Fix %f.
6932         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
6933
6934 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6935
6936         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
6937         (gnus-bookmark-mouse-available-p): New macro.
6938         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
6939         (gnus-bookmark-bmenu-show-infos): Use it.
6940         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
6941         (gnus-bookmark-bmenu-hide-infos): Ditto.
6942         (gnus-bookmark-remove-properties): New function.
6943         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
6944         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
6945         (gnus-bookmark-write-file): Bind coding-system-for-write.
6946         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
6947         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
6948         group before selecting it.
6949         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
6950         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
6951         quit-window if it is not available; use gnus-mouse-2 and bind it to
6952         gnus-bookmark-bmenu-select-by-mouse.
6953         (gnus-bookmark-show-details): Remove unused variable `details-list'.
6954         (gnus-bookmark-bmenu-select-by-mouse): New function.
6955
6956 2006-08-13  Romain Francoise  <romain@orebokech.com>
6957
6958         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
6959         space.
6960
6961 2006-08-10  Romain Francoise  <romain@orebokech.com>
6962
6963         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
6964         (dns-mode-soa-auto-increment-serial): New user option.
6965         (dns-mode-soa-maybe-increment-serial): New function.
6966         (dns-mode): Add the latter to `write-contents-functions'.
6967
6968 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6969
6970         * compface.el (uncompface): Use binary rather than raw-text-unix.
6971
6972 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6973
6974         * compface.el (uncompface): Make sure the eol conversion doesn't take
6975         place when communicating with the external programs.  Reported by
6976         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
6977
6978 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6979
6980         * nnheader.el (nnheader-insert-head): Fix typo in comment.
6981
6982 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6983
6984         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
6985         Make it more robust by parsing author and date independently.
6986
6987 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6988
6989         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
6990
6991 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
6992
6993         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
6994         first matching secret key.
6995         (mml2015-epg-encrypt): Ditto.
6996
6997         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
6998         first matching secret key.
6999         (mml1991-epg-encrypt): Ditto.
7000
7001         * mml2015.el (mml2015-encrypt-to-self): New user option.
7002         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7003         mml2015-epg-encrypt-to-self is set.
7004
7005         * mml1991.el (mml1991-encrypt-to-self): New variable.
7006         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7007         mml1991-epg-encrypt-to-self is set.
7008
7009         * mml2015.el (mml2015-signers): New user option.
7010         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7011         (mml2015-epg-encrypt): Allow to select signing keys.
7012
7013         * mml1991.el (mml1991-signers): New variable.
7014         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7015         (mml1991-epg-encrypt): Allow to select signing keys.
7016
7017 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7018
7019         * nnheader.el (nnheader-insert-head): Make it work even if the file
7020         uses CRLF for the line-break code.
7021
7022 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7023
7024         * mml2015.el: Require mml-sec instead of password.
7025         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7026         (mml2015-cache-passphrase): Inherit the default value from
7027         mml-secure-cache-passphrase.
7028         (mml2015-passphrase-cache-expiry): Inherit the default value from
7029         mml-secure-passphrase-cache-expiry.
7030
7031         * mml1991.el: Require mml-sec instead of password.
7032         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7033         (mml1991-cache-passphrase): Inherit the default value from
7034         mml-secure-cache-passphrase.
7035         (mml1991-passphrase-cache-expiry): Inherit the default value from
7036         mml-secure-passphrase-cache-expiry.
7037
7038         * mml-sec.el: Require password.
7039         (mml-secure-verbose): New user option.
7040         (mml-secure-cache-passphrase): New user option.
7041         (mml-secure-passphrase-cache-expiry): New user option.
7042
7043 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7044
7045         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7046         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7047         andreas@altroot.de (Andreas Vögele).
7048
7049         FIXME: Use `tiny change'?
7050
7051 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7052
7053         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7054         workaround for the url package included with Emacs.
7055
7056         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7057
7058 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7059
7060         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7061         correctly.  This fixes a bug caused by the 2006-05-12 change.
7062
7063 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7064
7065         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7066         some information about the error when saying that the `bogus' mail
7067         group will be used.
7068
7069 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7070
7071         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7072         string.
7073
7074 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7075
7076         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7077
7078 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7079
7080         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7081
7082 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7083
7084         * mml1991.el (mml1991-function-alist): Add epg.
7085         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7086         (mml1991-epg-encrypt): New functions.
7087
7088 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7089
7090         * mml2015.el (mml2015-verbose): New variable.
7091         (mml2015-cache-passphrase): Ditto.
7092         (mml2015-passphrase-cache-expiry): Ditto.
7093         (mml2015-function-alist): Add epg.
7094         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7095         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7096         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7097         functions.
7098
7099 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7100
7101         * message.el (message-cite-original-1): Preserve region when removing
7102         quoted text due to X-No-Archive in order to avoid bogus attribution
7103         when citing multiple messages.
7104
7105 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7106
7107         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7108         Kenneth Jacker <khj@be.cs.appstate.edu>.
7109
7110 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7111
7112         * gnus-diary.el (gnus-user-format-function-d)
7113         (gnus-user-format-function-D): Autoload.
7114
7115         * imap.el (Commentary): Fix typo.
7116
7117         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7118         2006-04-22 contribution.
7119
7120 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7121
7122         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7123         It didn't really fix the bogosity I'm seeing with solid web groups.
7124
7125 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7126
7127         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7128         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7129         created using server names.  If we use the feature without declaring
7130         it, Gnus does not properly manage server and group state.
7131
7132         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7133         bound.
7134
7135 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7136
7137         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7138         looking up the method using GROUP's prefix before inventing a new one.
7139         It is used on killed/unknown groups in various places where returning
7140         an all-new method isn't expected by the caller.
7141
7142         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7143         and match semantics of gnus-group-real-prefix.
7144
7145 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7146
7147         * nnmail.el (nnmail-broken-references-mailers): New variable.
7148         (nnmail-ignore-broken-references): New function generalizing
7149         nnmail-fix-eudora-headers.
7150         (nnmail-fix-eudora-headers): Now obsolete.
7151
7152         * gnus-art.el (gnus-button-handle-custom): Support
7153         `customize-apropos*'.
7154
7155 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7156
7157         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7158
7159         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7160         articles.
7161
7162 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7163
7164         * message.el (message-cite-reply-above): New variable.
7165         (message-yank-original): Use it.
7166
7167 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7168
7169         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7170
7171 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7172
7173         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7174         as read.
7175
7176         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7177
7178 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7179
7180         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7181         (gnus-bookmark-default-file): Use gnus-directory.
7182         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7183         Remove "*" in doc string.
7184         (gnus-bookmark-write-file): Simplify.
7185         (gnus-bookmark-maybe-sort-alist): Use `when'.
7186         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7187         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7188         FIXME about Emacs 21 and XEmacs compatibility.
7189         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7190         compatibility.
7191         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7192         compatibility.
7193         (gnus-bookmark-menu-heading): Fix version.
7194
7195 2006-06-19  Bastien Guerry  <bzg@altern.org>
7196
7197         * gnus-bookmark.el: New file.
7198
7199 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7200
7201         * message.el (message-syntax-checks): Doc fix.
7202
7203 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7204
7205         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7206         unsubscribed groups as if they were killed ones.  It causes duplicate
7207         entries in gnus-newsrc-alist.
7208
7209 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7210
7211         * message.el (message-syntax-checks): Doc fix.
7212         (message-send-mail): Add check for continuation headers.
7213         (message-check-news-header-syntax): Fix regexp used to check for
7214         continuation headers.
7215
7216 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7217
7218         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7219
7220 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7221
7222         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7223
7224 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7225
7226         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7227         default-truncate-lines.
7228
7229 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7230
7231         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7232         to fill the utf-8 entry.
7233
7234         * lpath.el: Fbind unicode-precedence-list.
7235
7236 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7237
7238         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7239
7240 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7241
7242         * gnus-agent.el (directory-files-and-attributes): Move all the way
7243         forward (the third and final move).
7244         (gnus-agent-read-agentview): Trap reconstruction errors due to
7245         nonexistant directory.  Handle by returning nil.
7246
7247 2006-05-30  Didier Verna  <didier@xemacs.org>
7248
7249         * message.el (message-dont-reply-to-names): Update the custom type.
7250         * message.el (message-dont-reply-to-names): New defsubst: potentially
7251         convert a list of regexps into a single one.
7252         * message.el (message-get-reply-headers): Use it.
7253         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7254
7255 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7256
7257         * gnus-agent.el (directory-files-and-attributes): Move forward.
7258
7259 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7260
7261         * gnus-ml.el (gnus-mailing-list-subscribe)
7262         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7263         (gnus-mailing-list-message): Fix doc strings.
7264
7265 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7266
7267         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7268         of doing it manually.
7269
7270 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7271
7272         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7273         comment.
7274
7275 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7276
7277         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7278         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7279         (gnus-agent-read-local): All symbols allocated in my-obarray.
7280         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7281         (gnus-agent-regenerate-group): Check numeric names to see if they are
7282         messages or groups.
7283         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7284         better way of do this...)
7285
7286         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7287         'dummy.group' (there should be a better way of do this...)
7288
7289 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7290
7291         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7292         (gnus-saved-headers): Ditto.
7293         (gnus-default-article-saver): Mention functions may have properties.
7294         (gnus-article-save): Override gnus-save-all-headers and
7295         gnus-saved-headers by :headers property which saver function may have.
7296         (gnus-summary-save-in-file): Add :headers property.
7297         (gnus-summary-write-to-file): Ditto.
7298
7299         * gnus-sum.el (gnus-summary-save-article): Bind
7300         gnus-prompt-before-saving to t when saving many articles in a file;
7301         always show all headers.
7302
7303         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7304
7305 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7306
7307         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7308         marks.
7309
7310         * message.el (message-indent-citation): Add optional arguments to allow
7311         using it outside of message buffers.
7312
7313         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7314         (gnus-article-treat-unfold-headers): Use it.
7315         (gnus-article-truncate-lines): New variable.
7316         (gnus-article-mode): Use it.
7317         (gnus-article-toggle-truncate-lines): New function.
7318
7319         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7320         gnus-article-toggle-truncate-lines.
7321
7322         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7323         coding system in XEmacs, use binary.
7324
7325 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7326
7327         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7328         after-load-alist.
7329
7330         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7331         this function should save decoded articles.
7332         (gnus-summary-write-to-file): Use property to specify this function
7333         should save decoded articles and specify gnus-summary-save-in-file
7334         should be used to save articles other than the first one when saving
7335         many articles.
7336         (gnus-summary-save-body-in-file): Use property to specify this
7337         function should save decoded articles.
7338         (gnus-summary-write-body-to-file): Use property to specify this
7339         function should save decoded articles and specify
7340         gnus-summary-save-body-in-file should be used to save articles other
7341         than the first one when saving many articles.
7342
7343         * gnus-sum.el (gnus-summary-save-article): Simplify.
7344
7345 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7346
7347         * gnus-art.el (gnus-default-article-saver): Add
7348         gnus-summary-write-body-to-file.
7349         (gnus-article-save-coding-system): Don't use coding system object
7350         in XEmacs.
7351         (gnus-read-save-file-name): Add optional `dir-var' argument which
7352         specifies directory in which files are saved; work even if optional
7353         `variable' argument is not specified.
7354         (gnus-summary-write-to-file): Read file name.
7355         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7356         (gnus-summary-write-body-to-file): New function.
7357
7358         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7359         (gnus-summary-local-variables): Add it.
7360         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7361         (gnus-summary-save-article): Remove optional `decode' argument;
7362         determine whether to decode articles by the value of
7363         gnus-default-article-saver; when saving many files using
7364         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7365         it first and use gnus-summary-save-in-file or
7366         gnus-summary-save-body-in-file thereafter unless
7367         gnus-prompt-before-saving is always; move point to article which
7368         will be saved.
7369         (gnus-summary-save-article-file): Revert.
7370         (gnus-summary-write-article-file): Revert.
7371         (gnus-summary-save-article-body-file): Revert.
7372         (gnus-summary-write-article-body-file): New function.
7373
7374 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7375
7376         * gnus-art.el (gnus-default-article-saver): Doc fix.
7377         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7378         from gnus-summary-save-article-coding-system, and default to a
7379         certain coding system.
7380         (gnus-output-to-file): Add coding cookie and encode text according
7381         to gnus-article-save-coding-system; don't use mm-append-to-file.
7382
7383         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7384         gnus-art.el and rename to gnus-article-save-coding-system.
7385         (gnus-summary-save-article): Require gnus-art; don't show all
7386         headers if it decodes articles; don't add coding cookie here;
7387         don't bind mm-text-coding-system-for-write.
7388         (gnus-summary-save-article-file): Save decoded articles.
7389         (gnus-summary-write-article-file): When saving many files, use
7390         gnus-summary-write-to-file first and gnus-summary-save-in-file
7391         thereafter unless gnus-prompt-before-saving is always.
7392         (gnus-summary-save-article-body-file): Save decoded articles.
7393
7394         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7395
7396 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7397
7398         * nnrss.el (nnrss-check-group): Bind hash-index.
7399
7400 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7401
7402         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7403         its hash index.  Store this hash in `nnrss-group-data'.
7404         (nnrss-read-group-data): Update accordingly.
7405
7406 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7407
7408         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7409         entry.
7410
7411         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7412         gnus-article-browse-html-article.
7413
7414 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7415
7416         * gnus-sum.el (gnus-summary-mime-map): Add
7417         gnus-article-browse-html-article.
7418
7419         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7420
7421 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7422
7423         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7424         suitable coding systems in customize.
7425
7426 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7427
7428         * mail-source.el (mail-sources): Fix custom type.
7429
7430 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7431
7432         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7433         (gnus-summary-expire-articles-now): Shorten prompt.
7434
7435         * gmm-utils.el (wid-edit): Require.
7436         (defun-gmm): Renamed from `gmm-defun-compat'.
7437         (gmm-image-search-load-path): Use it.
7438         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7439
7440 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7441
7442         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7443         variable.
7444         (gnus-summary-save-article): Add optional `decode' argument.  If
7445         it is set and gnus-summary-save-article-coding-system is non-nil,
7446         save decoded article.
7447         (gnus-summary-write-article-file): Save decoded article if
7448         gnus-summary-save-article-coding-system is non-nil.
7449
7450         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7451         type.
7452
7453 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7454
7455         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7456
7457 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7458
7459         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7460         first to test gnus-single-article-buffer which may be buffer-local.
7461
7462         * gnus-sum.el (gnus-summary-setup-buffer): Make
7463         gnus-single-article-buffer buffer-local and nil in ephemeral
7464         group; make gnus-article-buffer, gnus-article-current, and
7465         gnus-original-article-buffer always buffer-local.
7466         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7467         group.
7468         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7469
7470 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7471
7472         * nnml.el (nnml-request-compact-group): Compressed files might not
7473         have .gz extension.
7474
7475 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7476
7477         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7478         (mm-copy-to-buffer): Use with-current-buffer.
7479         (mm-display-part): Simplify.
7480         (mm-inlinable-p): Add optional arg `type'.
7481
7482 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7483
7484         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7485         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7486         Try harder to show the attachment internally or externally using
7487         gnus-mime-view-part-as-type.
7488
7489 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7490
7491         * message.el (message-from-style, message-signature-separator)
7492         (message-user-organization-file, message-send-mail-function)
7493         (message-citation-line-function, message-yank-prefix)
7494         (message-indent-citation-function, message-signature)
7495         (message-signature-file, message-signature-insert-empty-line):
7496         Remove autoloads.
7497
7498         * gnus-art.el (gnus-buttonized-mime-types): Remove
7499         "multipart/signed".  Revert 2006-04-26 change.
7500
7501 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7502
7503         * gnus.el (gnus-version-number): Bump version.
7504
7505 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7506
7507         * gnus.el: No Gnus v0.5 is released.
7508
7509 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7510
7511         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7512         fetching articles by message-id.
7513
7514 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7515
7516         * message.el (hashcash): Require hashcash as normal.
7517
7518         * ecomplete.el (ecomplete-highlight-match-line): Use
7519         point-at-eol.
7520         (ecomplete-highlight-match-line): Use `highlight', because that
7521         face exists in both Emacs and XEmacs.
7522
7523         * message.el (message-display-abbrev): Use point-at-bol.
7524
7525         * mail-source.el: Don't require timer/timer-funcs.
7526
7527         * gnus-async.el: Ditto.
7528
7529         * password.el: Ditto.
7530
7531         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7532
7533         * mm-url.el: Ditto.
7534
7535         * gnus-xmas.el: Don't require timer-funcs.
7536
7537         * mm-util.el: Require timer/timer-funcs.
7538
7539 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7540
7541         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7542         Close.
7543
7544 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7545
7546         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7547         unibyte after clear-decrypt function runs.
7548
7549         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7550         returns as a unibyte string.
7551
7552 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7553
7554         * lpath.el: Revert.
7555
7556         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7557         (pgg-gpg-process-sentinel): Revert.
7558
7559         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7560         (pgg-pgp-lookup-key): Revert.
7561
7562         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7563         (pgg-pgp5-lookup-key): Revert.
7564
7565         * pgg.el (pgg-fetch-key): Revert.
7566
7567 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7568
7569         * lpath.el: Fbind string-as-multibyte for XEmacs.
7570
7571         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7572         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7573         (mml1991-pgg-encrypt): Ditto.
7574
7575         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7576         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7577         a multibyte buffer.
7578
7579         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7580         (pgg-pgp-lookup-key): Ditto.
7581
7582         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7583         (pgg-pgp5-lookup-key): Ditto.
7584
7585         * pgg.el (pgg-fetch-key): Ditto.
7586
7587 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7588
7589         * message.el (message-user-organization-file): Check several
7590         locations of the organization file.
7591
7592         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7593         Add gnus-article-view-part-as-type.
7594
7595         * gnus-art.el (gnus-article-view-part-as-type): New function.
7596
7597         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7598         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7599
7600         * mml.el: Simplify autoload.
7601         (mml-mode): defvar dnd-protocol-alist instead of using
7602         symbol-value.
7603         (mml-default-directory): New variable.
7604         (mml-minibuffer-read-file): Use it.
7605         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7606
7607         * message.el (message-citation-line-format): New variable.
7608         (message-insert-formated-citation-line): New function.
7609         (message-citation-line-function): Add
7610         `message-insert-formated-citation-line' to custom type.
7611
7612         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7613         to doc string.
7614
7615         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7616         depending on mm-verify-option.
7617
7618 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7619
7620         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7621         binding pgg-* variables; reimplement the section which prevents
7622         MIME header from being signed.
7623         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7624         pgg-text-mode; remove a blank line at the top of body.
7625
7626         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7627         lines at the top of body; use gnus-newsgroup-charset if there's no
7628         Charset header.
7629
7630 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7631
7632         * message.el (message-self-insert-commands): Doc fix.
7633
7634         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7635         (mm-uu-pgp-encrypted-test): Ditto.
7636         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7637         between header and body; return application/pgp-encrypted handle
7638         if decryption failed; decode decrypted body by charset.
7639
7640         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7641         element match to application/pgp-*.
7642
7643 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7644
7645         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7646         HTML.
7647
7648 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7649
7650         * mail-source.el (mail-source-call-script): Message the error
7651         string.
7652
7653 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7654
7655         * gnus-util.el (gnus-byte-compile): Use it.
7656
7657 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7658
7659         * gnus-util.el (kill-empty-logs): New function.
7660
7661 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7662
7663         * message.el (message-mail-alias-type): Doc fix.
7664         (message-mail-alias-type-p): New function.
7665         (message-send): Use it.
7666         (message-mode): Ditto.
7667         (message-strip-forbidden-properties): Ditto.
7668
7669         * ecomplete.el (ecomplete-database-file-coding-system): New
7670         variable.
7671         (ecomplete-save): Use it.
7672         (ecomplete-setup): Use it.
7673
7674 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7675
7676         * message.el (message-self-insert-commands): New variable.
7677         (message-strip-forbidden-properties): Use it.
7678
7679 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7680
7681         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7682         that doesn't make XEmacs choke.
7683
7684 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7685
7686         * gnus-util.el (gnus-replace-in-string):
7687         Prefer replace-regexp-in-string over of replace-in-string.
7688
7689 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7690
7691         * gnus-util.el (gnus-select-frame-set-input-focus):
7692         Use select-frame-set-input-focus if it is available in XEmacs; use
7693         definition defined in Emacs 22 for old Emacsen.
7694
7695         * dgnushack.el: Autoload unmorse-region for XEmacs.
7696
7697         * lpath.el: Bind cursor-in-non-selected-windows and
7698         select-frame-set-input-focus for XEmacs.
7699
7700 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7701
7702         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7703
7704 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7705
7706         * gnus-registry.el (gnus-registry-cache-save): Remove text
7707         properties when saving via the temp buffer.
7708
7709 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7710
7711         * message.el (message-generate-hashcash): Honor custom type.
7712
7713 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7714
7715         * message.el (message-generate-hashcash): Default to non-nil when
7716         hashcash is found.
7717
7718         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7719         (gnus-refer-thread-limit): Increase default to 500.
7720
7721         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7722
7723         * flow-fill.el (fill-flowed): Allow delete-space.
7724
7725 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7726
7727         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7728         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7729         Remove autoloads.
7730
7731 2006-04-18  Simon Josefsson  <jas@extundo.com>
7732
7733         * message.el (message-generate-hashcash): Default to.
7734
7735 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7736
7737         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7738         concatenating segments rather than before concatenating them.
7739
7740 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7741
7742         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7743
7744 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7745
7746         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
7747
7748         * message.el (message-forward-make-body-plain): Allow
7749         message-forward-ignored-headers to be a list.
7750         (message-remove-ignored-headers): Factor out into function.
7751         (message-forward-make-body-mml): Use it.
7752
7753         * imap.el (imap-quote-specials): New function.
7754         (imap-login-auth): Quote specials.
7755
7756         * rfc2231.el (rfc2231-parse-string): Remove dead code.
7757         (rfc2231-parse-string): Allow concatanation of parameters that
7758         aren't contiguous.  The test case is
7759           (mail-header-parse-content-type "message/external-body;
7760             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
7761             access-type=LOCAL-FILE;
7762             name*1*=plugh%2fhello-sailor%2fbing.pdf")
7763
7764 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7765
7766         * nntp.el (nntp-accept-process-output): Return the value of
7767         `nnheader-accept-process-output'.
7768
7769 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7770
7771         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
7772         (gnus-button-alist): Recognize more diff formats.
7773         (gnus-button-patch): Strip directory.
7774
7775 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7776
7777         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
7778         Emacs 22 when setting focus.
7779
7780 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7781
7782         * gnus-art.el (gnus-article-treat-types): Do treatment of
7783         text/x-verbatim parts.
7784         (gnus-button-patch): New command.
7785
7786         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
7787         addresses that contain invalid characters.
7788
7789 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7790
7791         * message.el (message-put-addresses-in-ecomplete): Use
7792         gnus-replace-in-string.
7793         (message-is-yours-p): Use the more correct
7794         mail-header-parse-address instead of
7795         mail-extract-address-components.
7796         (message-put-addresses-in-ecomplete): Fix typo.
7797
7798         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
7799         keystroke.
7800
7801         * gnus-art.el (gnus-treatment-function-alist): Change order of
7802         newsgroups/generic header folding to avoid double-folding.
7803
7804         * message.el (message-hidden-headers): Add X-Draft-From.
7805
7806         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
7807         command.
7808         (gnus-summary-repeat-search-article-backward): New command.
7809
7810         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
7811         groups in the parent topic.
7812
7813 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
7814
7815         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
7816         (spam-extra-header-to-number): Return the CRM114 number as a
7817         number instead of a string.
7818
7819 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7820
7821         * gnus-art.el (gnus-face-properties-alist): Moved here from
7822         gnus-fun.
7823
7824         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
7825
7826 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7827
7828         * message.el (message-strip-forbidden-properties): Only display on
7829         self-insert-command.
7830
7831         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
7832         reindent.
7833         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
7834
7835 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
7836
7837         * smiley.el (smiley-style): Fix typo.
7838
7839 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7840
7841         * hashcash.el (hashcash-insert-payment-async-2): Use
7842         message-goto-eoh instead of doing it manually.
7843         (mail-add-payment): Use message-narrow-to-header instead of trying
7844         to do the same itself.
7845
7846         * message.el (message-hidden-headers): Add Face.
7847
7848         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
7849         reparenting code.
7850         (gnus-summary-reparent-children): Refactored out code.
7851         (gnus-summary-thread-map): New keystroke.
7852         (gnus-summary-reparent-children): Make into command.
7853
7854         * smiley.el (smiley-style): Default to `medium' if using a large
7855         font.
7856
7857         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
7858         does it itself.
7859
7860         * message.el (message-point-in-header-p): Simplify definition.
7861
7862 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7863
7864         * nnagent.el (nnagent-request-set-mark): Silence log file
7865         writing.
7866         (nnagent-request-set-mark): Use write-region instead of
7867         append-to-file.
7868
7869         * gnus-sum.el (gnus-read-header): Fudge article number if using a
7870         strange select method.
7871
7872         * ecomplete.el (ecomplete-display-matches): Get highlightling
7873         right.
7874         (ecomplete-display-matches): Use literals.
7875         (ecomplete-display-matches): Disable message logging.
7876
7877         * message.el (message-display-abbrev): Small optimization.
7878
7879         * ecomplete.el (ecomplete-display-matches): Allow automatic
7880         display.
7881
7882         * message.el (message-strip-forbidden-properties): Display
7883         abbrevs.
7884         (message-display-abbrev): Get automatic display right.
7885
7886         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
7887         keystrokes.
7888
7889 2006-04-13  Romain Francoise  <romain@orebokech.com>
7890
7891         TODO: Backport to v5-10!
7892
7893         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
7894         Moved here (and renamed) from gnus-registry.el.
7895
7896         * gnus-registry.el: Require gnus-util.
7897         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
7898
7899 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7900
7901         * gnus-group.el (gnus-group-catchup-current): Change
7902         if-then-else-if-then-else into cond.
7903         (gnus-group-catchup): Indent.
7904         (group-name-at-point): New function.
7905         (gnus-fetch-group): Provide default from thing at point.
7906
7907 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7908
7909         * message.el (message-display-abbrev): Fix regexp.
7910
7911         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
7912         choosing.
7913         (ecomplete-highlight-match-line): Fix up code rewrite, remove
7914         dead variables.
7915
7916         * message.el (message-newline-and-indent): Remove debugging.
7917         (message-display-abbrev): Use new implementation.
7918
7919 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
7920
7921         * gnus-art.el (gnus-article-mode): Set
7922         cursor-in-non-selected-windows to nil.
7923
7924         * smiley.el: Revert previous change.
7925         (smiley-data-directory): defvar it before using it in the
7926         defcustom of `smiley-style'.
7927
7928 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7929
7930         * message.el (message-newline-and-indent): New function.
7931
7932         * ecomplete.el: Implement more bits.
7933
7934         * message.el (message-put-addresses-in-ecomplete): Clean up the
7935         string.
7936
7937         * ecomplete.el (ecomplete-add-item): Chop off decimals.
7938
7939         * gnus-sum.el (gnus-summary-save-parts): Bind
7940         gnus-summary-save-parts-counter and use it to make unique file
7941         names.
7942
7943         * gnus-art.el (gnus-ignored-headers): Add some more headers.
7944
7945         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
7946         parameter to say whether to actually parse the individual
7947         addresses.
7948
7949         * message.el (message-put-addresses-in-ecomplete): New function.
7950         (ecomplete): Require.
7951         (message-mail-alias-type): Add ecomplete as an option.
7952
7953 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
7954
7955         * flow-fill.el (fill-flowed): Remove trailing space from blank
7956         quoted lines.
7957
7958 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7959
7960         * smiley.el (smiley-style): Move definition later to avoid a
7961         compilation warning.
7962
7963 2006-04-12  Kenichi Handa  <handa@m17n.org>
7964
7965         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
7966         buffer and then decode the buffer text if necessary.
7967         (rfc2231-encode-string): Be sure to work on multibyte buffer at
7968         first, and after mm-encode-body, change the buffer to unibyte.
7969         Use mm-disable-multibyte instead of set-buffer-multibyte.
7970
7971 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7972
7973         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
7974         Content-Type header instead of Content-Disposition header.
7975         (gnus-mime-inline-part): Ditto.
7976         (gnus-mime-view-part-as-charset): Ignore charset that the part
7977         specifies.
7978
7979         * mm-decode.el (mm-display-part): Work with external parts and
7980         usual parts similarly.
7981
7982         * mm-extern.el (mm-inline-external-body): Use mm-display-part
7983         instead of gnus-display-mime.
7984
7985         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
7986         instead of with-temp-buffer.
7987
7988         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
7989         tag to summarized topics part in order to encode non-ASCII text.
7990
7991 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7992
7993         * smiley.el (smiley-style): New variable.
7994         (smiley-directory): New function.
7995         (smiley-data-directory): Derive from `smiley-style' using
7996         `smiley-directory'.
7997         (smiley-regexp-alist): Add new entries.
7998
7999         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8000         (gnus-article-browse-delete-temp): Add :version.
8001
8002 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8003
8004         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8005         the sieve region.
8006
8007 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8008
8009         * gnus.el (gnus-version-number): Bump version.
8010
8011 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8012
8013         * gnus.el: No Gnus v0.4 is released.
8014
8015 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8016
8017         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8018         layout.
8019
8020         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8021         unknown charset.
8022
8023         * message.el (message-header-synonyms): Add Original-To to the
8024         default.
8025
8026         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8027         optional parameter.
8028
8029 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8030
8031         * gnus-fun.el (gnus): Require it for gnus-directory.
8032
8033 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8034
8035         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8036
8037 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8038
8039         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8040
8041 2006-04-05  Simon Josefsson  <jas@extundo.com>
8042
8043         * password.el (password-reset): New function.
8044
8045 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8046
8047         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8048         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8049
8050 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8051
8052         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8053         Some whitespace was matched into the url, which broke browsing hits
8054         > 100 when mm-url-use-external was nil.
8055
8056 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8057
8058         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8059         gnus-extra-headers for 'Newsgroups.
8060
8061         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8062         bound.
8063
8064 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8065
8066         * pgg-gpg.el: Clean up process buffers every time gpg processes
8067         complete.
8068
8069 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8070
8071         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8072         doc string.
8073
8074 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8075
8076         * pgg-gpg.el (pgg-gpg-process-filter)
8077         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8078
8079         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8080         lines, temporary fix.
8081
8082 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8083
8084         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8085
8086 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8087
8088         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8089         default-enable-multibyte-characters.  This reverts the change from
8090         revision 6.17 which is no longer necessary because the passphrase
8091         is sent separately now.  GnuPG messages are unreadable under
8092         multibyte locales with default-enable-multibyte-characters set to
8093         nil.
8094
8095 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8096
8097         * message.el (message-tool-bar-gnome): Move "spell".
8098
8099 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8100
8101         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8102         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8103         instead.
8104
8105 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8106
8107         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8108         newsgroups handling for NNTP overviews which don't include
8109         Newsgroups.
8110
8111 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8112
8113         * message.el (message-resend): Bind message-generate-hashcash to nil.
8114
8115 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8116
8117         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8118         when searching for already-paid recipients.
8119
8120 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8121
8122         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8123         passphrases when it is not needed.
8124         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8125         passphrase stuff from gpg, should only be necessary when you use
8126         gpg with a smartcard.
8127
8128 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8129
8130         * mml.el (mml-insert-mime): Ignore cached contents of
8131         message/external-body part.
8132
8133         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8134         (mm-insert-part): Ditto.
8135
8136 2006-03-23  Simon Josefsson  <jas@extundo.com>
8137
8138         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8139         Reiner.
8140         (pgg-gpg-use-agent-p): Use it again.
8141
8142 2006-03-23  Simon Josefsson  <jas@extundo.com>
8143
8144         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8145         older emacsen.
8146         (pgg-gpg-use-agent-p): Don't use it.
8147
8148 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8149
8150         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8151         if we can.
8152
8153 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8154
8155         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8156         (pgg-gpg-update-agent): New function.
8157         (pgg-gpg-use-agent-p): New function.
8158         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8159         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8160         (pgg-gpg-sign-region): Use it.
8161
8162 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8163
8164         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8165         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8166
8167 2006-03-21  Simon Josefsson  <jas@extundo.com>
8168
8169         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8170         <wilde@sha-bang.de>.
8171         (pgg-gpg-use-agent): New variable.
8172         (pgg-gpg-process-region): Use it.
8173         (pgg-gpg-encrypt-region): Likewise.
8174         (pgg-gpg-encrypt-symmetric-region): Likewise.
8175         (pgg-gpg-decrypt-region): Likewise.
8176         (pgg-gpg-sign-region): Likewise.
8177         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8178
8179 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8180
8181         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8182
8183         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8184         Add comment on version.
8185
8186 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8187
8188         * smiley.el: Add missing test smiley.
8189
8190 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8191
8192         * mm-decode.el (mm-with-part): New macro.
8193         (mm-get-part): Use it; work with message/external-body as well.
8194         (mm-save-part): Treat name and filename equally.
8195
8196         * mm-extern.el (mm-extern-cache-contents): New function.
8197         (mm-inline-external-body): Use it; force the part to be displayed;
8198         move undisplayer added to the cached handle to the parent.
8199
8200         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8201         (gnus-mime-view-part-as-type): Work with message/external-body.
8202
8203         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8204
8205 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8206
8207         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8208         images in image-load-path.  [Sync with image.el, revision 1.60, in
8209         Emacs.]
8210
8211 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8212
8213         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8214         path rather than symbol.  Always return list of directories.
8215         Guarantee that image directory comes first.  [Sync with image.el,
8216         revision 1.59, in Emacs.]
8217
8218         * message.el (message-make-tool-bar): Adjust to new API of
8219         `gmm-image-load-path-for-library'.
8220
8221         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8222
8223         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8224
8225 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8226
8227         * gnus-art.el (gnus-article-only-boring-p):
8228         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8229         intangible text.
8230         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8231
8232 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8233
8234         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8235         `defun' instead of `gmm-defun-compat'.
8236
8237 2006-03-14  Simon Josefsson  <jas@extundo.com>
8238
8239         * message.el (message-unique-id): Don't use message-number-base36
8240         if (user-uid) is a float.
8241         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8242
8243 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8244
8245         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8246
8247         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8248         empty line between a part and a message part.
8249
8250 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8251
8252         * smiley.el: Add more test smileys.
8253         (smiley-data-directory, smiley-regexp-alist)
8254         (gnus-smiley-file-types): Fix doc strings.
8255         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8256         adding new elements.
8257         (smiley-mouse-map): Unused code.  Make it a comment.
8258
8259 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8260
8261         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8262         scan latest NoCeM messages instead of old ones.
8263         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8264         delimiters that are recently used.
8265         (gnus-nocem-load-cache): Add autoload cookie.
8266
8267         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8268
8269         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8270         level which is larger than gnus-use-nocem is specified.
8271
8272         * gnus-group.el (gnus-group-get-new-news): Ditto.
8273
8274 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8275
8276         * gnus-util.el (gnus-tool-bar-update): New function.
8277
8278         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8279         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8280
8281         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8282
8283         * gnus-group.el (gnus-group-redraw-when-idle)
8284         (gnus-group-redraw-check): Remove.
8285         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8286
8287 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8288
8289         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8290         if optional last element is specified in splits (FIELD VALUE...).
8291
8292 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8293
8294         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8295         to gmm-image-load-path-for-library.  Call with no-error argument.
8296         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8297
8298         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8299
8300         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8301
8302         * gmm-utils.el (gmm-image-load-path): Remove alias.
8303
8304 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8305
8306         * gmm-utils.el (gmm-image-load-path): Add alias.
8307
8308         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8309         nnml-generate-nov-databases-1.
8310         (nnml-generate-nov-databases): Use it.
8311         (nnml-generate-nov-databases-directory): Document no-active
8312         argument.
8313
8314         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8315         directory if path is t.  Add no-error.
8316
8317         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8318         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8319
8320         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8321         resetting gnus-article-browse-html-temp-list.
8322
8323         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8324         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8325         Add example to docstring.  Rename local variables.  Move error
8326         checks to default case in cond and simplify.
8327
8328 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8329
8330         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8331         handle is multipart when calling it recursively.
8332         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8333
8334 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8335
8336         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8337         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8338
8339 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8340
8341         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8342         is loaded.
8343
8344         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8345         loaded.
8346
8347 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8348
8349         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8350         to "Emacs 23 (unicode)" in doc string.
8351
8352         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8353         "Emacs 23 (unicode)" in comment.
8354
8355 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8356
8357         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8358
8359         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8360         characters 160 through 255 in Emacs 23.
8361
8362 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8363
8364         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8365         gnus-article-browse-html-temp.
8366         (gnus-article-browse-delete-temp): Make it customizable.  Add
8367         `file'.  Adjust doc string.
8368         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8369         query for each file.  Adjust doc string.
8370         (gnus-article-browse-html-parts): Add
8371         `gnus-article-browse-delete-temp-files' to
8372         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8373
8374 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8375
8376         * gnus-art.el (gnus-article-browse-html-temp)
8377         (gnus-article-browse-delete-temp): New variables.
8378         (gnus-article-browse-delete-temp-files): New function.
8379         (gnus-article-browse-html-parts): Use it.
8380
8381 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8382
8383         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8384
8385         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8386         string.
8387
8388         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8389         gnus-summary-insert-new-articles when unplugged.  Remove
8390         gnus-summary-search-article-forward.
8391
8392         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8393         display-visual-class instead of display-color-cells.
8394
8395 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8396
8397         * dgnushack.el: Autoload customize-group for XEmacs.
8398
8399         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8400         message/* containing non-ASCII text properly.
8401
8402 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8403
8404         * message.el: Require gmm-utils, remove autoloads.
8405         (message-tool-bar): Set default based on
8406         gmm-tool-bar-style.
8407         (message-tool-bar-gnome): Add gmm-customize-mode.
8408
8409         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8410         gmm-tool-bar-style.
8411         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8412
8413         * gnus-group.el (gnus-group-tool-bar): Set default based on
8414         gmm-tool-bar-style.
8415         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8416
8417         * gmm-utils.el (gmm-image-directory): Rename variable from
8418         gmm-image-load-path.
8419         (gmm-image-load-path): Use gmm-image-directory.
8420         (gmm-customize-mode): New function.
8421         (gmm-tool-bar-style): New variable.
8422
8423         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8424         gnus-group-redraw-line-number.
8425         (gnus-group-redraw-check): Simplify.
8426         (gnus-group-tool-bar-update): Remove redraw check.
8427         (gnus-group-make-tool-bar): Add redraw check.
8428
8429 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8430
8431         * gnus-art.el (gnus-button): Add missing parentheses.
8432
8433 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8434
8435         * lpath.el: Fbind line-number-at-pos.
8436
8437 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8438
8439         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8440
8441 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8442
8443         * gnus-art.el (gnus-button): New face.
8444         (gnus-article-button-face): Use it.
8445
8446         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8447         gnus-summary-next-page.  Re-order.
8448
8449         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8450         next-node are now included.
8451         (gnus-group-redraw-line-number): New internal variable.
8452         (gnus-group-redraw-check): Helper function for updating the tool
8453         bar.
8454         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8455
8456         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8457
8458         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8459         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8460         Use it to match format of Spamassassin 3.0 and later.  Reported by
8461         IRIE Tetsuya <irie@t.email.ne.jp>.
8462         (spam-check-bogofilter)
8463         (spam-bogofilter-register-with-bogofilter): Fix args of
8464         `gnus-error' calls.
8465
8466 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8467
8468         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8469         unnecessary interaction when sending queued mails.  Reported by
8470         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8471
8472 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8473
8474         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8475         first or last are nil.
8476
8477 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8478
8479         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8480
8481 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8482
8483         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8484
8485 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8486
8487         * dns.el (query-dns): Protect more against buggy tcp output.
8488
8489 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8490
8491         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8492         nov.php.
8493
8494 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8495
8496         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8497         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8498         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8499         output on the server side.
8500         (nnweb-google-create-mapping): Update regexps and add some
8501         progress indication.
8502
8503 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8504
8505         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8506         gnus-agent-toggle-plugged.  Re-order icons.
8507         (gnus-group-tool-bar-gnome): Add
8508         gnus-group-{prev,next}-unread-group.
8509         (gnus-group-tool-bar-gnome): Re-order icons.
8510
8511         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8512         gnus-summary-insert-new-articles.
8513
8514         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8515         comments.
8516
8517         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8518         also available in Emacs 21.3.
8519
8520         * message.el (message-fix-before-sending): Change "Emacs 22" to
8521         "Emacs 23 (unicode)" in comment.
8522
8523         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8524         "Emacs 23 (unicode)" in comment.
8525
8526         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8527         comment.
8528         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8529
8530         * mm-view.el (mm-fill-flowed): Add :version.
8531
8532 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8533
8534         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8535         and load-path.
8536
8537 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8538
8539         * message.el: Autoload gmm-image-load-path.
8540         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8541         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8542         consitency.
8543
8544         * gmm-utils.el (gmm-image-load-path): Also search in
8545         "../etc/images".  Don't set gmm-image-load-path if we don't find
8546         the image.
8547
8548 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8549
8550         * gmm-utils.el (gmm-image-load-path): Don't make
8551         `gmm-image-load-path' include subdirectories which the second arg
8552         `image' might specify.
8553
8554         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8555         subdirectory to icon file names.
8556
8557         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8558
8559 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8560
8561         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8562         gmm-image-load-path calls.
8563
8564         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8565
8566         * message.el (message-make-tool-bar): Ditto.
8567
8568         * mml.el (mml-preview): Added comment concerning tool bar icons.
8569
8570         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8571         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8572
8573         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8574         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8575
8576         * message.el (message-tool-bar-gnome): Use new icon names.
8577         (message-make-tool-bar): Use `gmm-image-load-path'.
8578
8579         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8580         functions from MH-E.
8581         (gmm-image-load-path): New variable from MH-E.
8582         (gmm-image-load-path): New function from MH-E.  Added arguments
8583         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8584         *-image-load-path-called-flag.
8585
8586 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8587
8588         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8589
8590 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8591
8592         * nnimap.el (nnimap-request-move-article): Change folder back to
8593         source group before deleting.
8594
8595 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8596
8597         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8598
8599         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8600         mm-url.
8601
8602         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8603
8604 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8605
8606         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8607         coding system which mm-charset-to-coding-system returns for a
8608         given charset is valid.
8609
8610 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8611
8612         * html2text.el (html2text-remove-tag-list):
8613         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8614
8615 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8616
8617         * gnus-cus.el: Revert 2005-10-17 change.
8618
8619 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8620
8621         * gnus-art.el (article-strip-banner): Call
8622         article-really-strip-banner only when the regexp match is made.
8623
8624 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8625
8626         * gnus-art.el (article-strip-banner): Use
8627         gnus-extract-address-components instead of
8628         mail-header-parse-addresses to make it work with non-ASCII text;
8629         remove mail-encode-encoded-word-string.
8630
8631         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8632         values which are surrounded with \"...\"; make it never cause a
8633         Lisp error; give up parsing of parameters if it failed in
8634         extracting type.
8635
8636 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8637
8638         * smime.el (smime-cert-by-ldap-1): Fix bug where
8639         `smime-ldap-search' returns results without userCertificates.
8640
8641 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8642
8643         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8644
8645 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8646
8647         * spam.el (spam-check-spamassassin-headers): Adapt format for
8648         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8649         <ari@mbf.ocn.ne.jp>.
8650         (spam-list-of-processors): Add spam-use-gmane.
8651
8652 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8653
8654         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8655         make-temp-file; make it work with XEmacs as well.
8656
8657         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8658         mm-make-temp-file.
8659
8660         * mm-decode.el (mm-display-external): Use the 3rd arg of
8661         mm-make-temp-file.
8662         (mm-create-image-xemacs): Ditto.
8663
8664 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8665
8666         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8667         with message-narrow-to-headers.
8668         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8669         (gnus-draft-check-draft-articles): New function.
8670         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8671
8672 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8673
8674         * gnus-art.el (gnus-article-browse-html-parts):
8675         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8676         Don't use suffix argument for mm-make-temp-file for Emacs 21
8677         compatibility.  Remove useless `format'.
8678
8679 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8680
8681         * nnweb.el (nnweb-google-wash-article): Update regexps.
8682         (nnweb-group-alist): Use defvoo instead of defvar.
8683
8684 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8685
8686         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8687         re-loading nn* modules.
8688
8689 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8690
8691         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8692         for `tool-bar-mode' and don't check it's default-value.
8693
8694         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8695
8696         * message.el (message-make-tool-bar): Ditto.
8697
8698         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8699         `substring'.  Shorten tmp-file name.
8700
8701         * gnus.el: Remove bogus comment.
8702
8703 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8704
8705         * gnus-art.el (gnus-article-browse-html-parts): New function.
8706         (gnus-article-browse-html-article): New function for viewing html
8707         articles with a browser.
8708
8709 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8710
8711         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8712         in elisp.
8713         (pgg-gpg-encrypt-symmetric-region): Ditto.
8714         (pgg-gpg-sign-region): Ditto.
8715
8716         * pgg-def.el (pgg-text-mode): New variable.
8717
8718         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8719         (mml2015-pgg-encrypt): Ditto.
8720
8721         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8722         (mml1991-pgg-encrypt): Ditto.
8723
8724 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8725
8726         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8727         message-make-date instead of current-time-string.
8728
8729         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8730         to gnus-decoded which mm-uu might set.
8731
8732 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8733
8734         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8735         don't decode quoted parameters; remove misimported Emacs code.
8736         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8737         (rfc2231-decode-encoded-string): Don't use split-string which
8738         behaves differently according to Emacs version; use
8739         mm-decode-coding-region to convert charset to coding-system.
8740         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8741         (rfc2231-encode-string): Remove misimported Emacs code.
8742
8743 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8744
8745         * gnus-art.el (article-decode-charset): Don't use ignore-errors
8746         when calling mail-header-parse-content-type.
8747         (article-de-quoted-unreadable): Ditto.
8748         (article-de-base64-unreadable): Ditto.
8749         (article-wash-html): Ditto.
8750
8751         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
8752         calling mail-header-parse-content-type and
8753         mail-header-parse-content-disposition.
8754         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
8755         mail-header-parse-content-type.
8756
8757         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
8758         insert charset and format parameters; encode description after
8759         inserting it to buffer.
8760         (mml-insert-parameter): Fold lines properly even if a parameter is
8761         segmented into two or more lines; change the max column to 76.
8762
8763         * rfc1843.el (rfc1843-decode-article-body): Don't use
8764         ignore-errors when calling mail-header-parse-content-type.
8765
8766         * rfc2231.el (rfc2231-parse-string): Return at least type if
8767         possible; don't cause an error even if it fails in parsing of
8768         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8769         (rfc2231-encode-string): Don't break lines at the beginning, leave
8770         it to mml-insert-parameter.
8771
8772         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
8773         calling mail-header-parse-content-type.
8774
8775 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
8776
8777         * spam-report.el (spam-report-gmane-use-article-number):
8778         Improve doc string.
8779         (spam-report-gmane-internal): Check if a suitable header was found
8780         in the article.
8781
8782 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8783
8784         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
8785         (rfc2231-encode-string): Make param*=value always begin with LWSP.
8786
8787 2006-02-05  Romain Francoise  <romain@orebokech.com>
8788
8789         Update copyright notices of all files in the gnus directory.
8790
8791 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8792
8793         * nnweb.el (nnweb-request-group): Avoid growing overview files.
8794
8795 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8796
8797         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
8798         segmented lines of parameter value to cope with Thunderbird 1.5
8799         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
8800         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8801         (rfc2231-encode-string): Don't make lines exceeding 76 column.
8802
8803 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
8804
8805         * mml.el (mml-generate-mime-1): Correct the order of inline signed
8806         parts.
8807
8808 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8809
8810         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
8811         there's only one active file for all servers.
8812         (nnweb-request-scan): Make sure nnweb-articles is initialized on
8813         solid groups.  Gnus might have used a FAST request to select the group.
8814         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
8815         and nnweb-search redundantly in the active file.
8816         (nnweb-request-list): Don't list bogus groups.  There can only be one.
8817         (nnweb-request-create-group): Don't use ARGS.
8818         (nnweb-possibly-change-server, nnweb-request-group): Remove some
8819         initialisations.  Let nnoo do the work.
8820
8821 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8822
8823         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
8824         Say the part has been decoded.
8825
8826         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
8827
8828 2006-01-31  Kevin Ryde  <user42@zip.com.au>
8829
8830         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
8831         mailcap-viewer-test-cache when there's no 'test clause, since that
8832         will invert the meaning of a "nil" test previously determined by
8833         mailcap-mailcap-entry-passes-test.
8834
8835 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8836
8837         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
8838         compiling.
8839
8840         * gnus-sum.el: Ditto.
8841
8842         * message.el: Don't bind tool-bar-map when compiling.
8843
8844 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
8845
8846         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
8847
8848 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8849
8850         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
8851         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
8852         current Google Groups.
8853
8854 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
8855
8856         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
8857         and tool-bar-mode.
8858
8859         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
8860         and tool-bar-mode.
8861
8862         * message.el (message-tool-bar-update): Simplify.
8863         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
8864
8865         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
8866         gnus-summary-buffer.
8867         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
8868         gnus-summary-reply.
8869
8870         * gmm-utils.el (gmm): Add :version.
8871
8872 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8873
8874         * Makefile.in (clean): New rule.
8875         (distclean): Use it.
8876
8877 2006-01-26  Steve Youngs  <steve@sxemacs.org>
8878
8879         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
8880         autoload.
8881
8882 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8883
8884         * gmm-utils.el (gmm-verbose): Add :group.
8885
8886 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
8887
8888         * message.el: Change some comments WRT tool-bars.
8889
8890         * gnus-sum.el (gnus-summary-tool-bar)
8891         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
8892         (gnus-summary-tool-bar-zap-list): New variables.
8893         (gnus-summary-make-tool-bar): Complete rewrite using
8894         `gmm-tool-bar-from-list'.
8895
8896         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
8897         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
8898         variables.
8899         (gnus-group-make-tool-bar): Complete rewrite using
8900         `gmm-tool-bar-from-list'.
8901         (gnus-group-tool-bar-update): New function.
8902
8903         * message.el (message-mode-field-menu): Add "Show hidden Headers".
8904
8905 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8906
8907         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
8908         is dissected into a single part of which the type is the same as
8909         the given one; decode charset.
8910
8911 2006-01-21  Kevin Ryde  <user42@zip.com.au>
8912
8913         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
8914         into alists as symbol not string, since that's what
8915         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
8916         look for.
8917
8918 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
8919
8920         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
8921         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
8922
8923         * message.el (message-tool-bar-gnome): Use gmm-ignore.
8924
8925 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8926
8927         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
8928         (gnus-xmas-mime-security-button-menu): New function.
8929
8930         * gnus-art.el (gnus-mime-security-button-commands): New variable.
8931         (gnus-mime-security-button-menu): New definition.
8932         (gnus-mime-security-button-map): Use them.
8933         (gnus-mime-security-button-menu): New function.
8934         (gnus-insert-mime-security-button): Addition to help echo.
8935         (gnus-mime-security-run-function, gnus-mime-security-save-part)
8936         (gnus-mime-security-pipe-part): New functions.
8937
8938         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
8939         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
8940
8941         * mm-decode.el (mm-handle-set-disposition): Remove.
8942         (mm-handle-set-description): Remove.
8943
8944 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8945
8946         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
8947         (mm-w3m-standalone-supports-m17n-p): New function.
8948         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
8949         w3m usage.
8950
8951         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
8952         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
8953
8954 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
8955
8956         * message.el (message-tool-bar-zap-list): Use
8957         gmm-tool-bar-zap-list as custom type.
8958         (message-tool-bar-update): New function.
8959         (message-tool-bar, message-tool-bar-gnome)
8960         (message-tool-bar-retro): Add message-tool-bar-update.
8961         (message-tool-bar-gnome): Add flyspell-buffer.
8962
8963         * gnus-util.el (gnus-error): Describe `args'.
8964
8965         * gmm-utils.el (gmm-error): Describe `args'.
8966         (gmm-tool-bar-zap-list): New widget.
8967         (gmm-tool-bar-from-list): Improve description of `zap-list'.
8968
8969 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8970
8971         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
8972         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
8973         the number of recursive calls.
8974
8975         * mm-decode.el (mm-handle-set-disposition): New macro.
8976         (mm-handle-set-description): New macro.
8977
8978 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8979
8980         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
8981         encoding.
8982
8983 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
8984
8985         * message.el (message-tool-bar-zap-list, message-tool-bar)
8986         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
8987         (message-tool-bar-local-item-from-menu): Remove.
8988         (message-tool-bar-map): Replace by `message-make-tool-bar'.
8989         (message-make-tool-bar): New function.
8990         (message-mode): Use `message-make-tool-bar'.
8991
8992         * gmm-utils.el: New file.
8993         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
8994         (gmm-lazy): New widget copied from `nnmail.el'.
8995         (gmm-tool-bar-from-list): New function for creating customizable
8996         tool bars.
8997         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
8998         output.
8999         (gmm): Add :prefix to defgroup.
9000
9001 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9002
9003         * gmm-utils.el (gmm-widget-p): New function.
9004
9005 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9006
9007         * mml.el (mml-attach-file): Describe `description' in doc string.
9008         (mml-menu): Add Emacs MIME manual and PGG manual.
9009
9010 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9011
9012         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9013
9014 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9015
9016         * nntp.el (nntp-end-of-line): Doc fix.
9017
9018 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9019
9020         * imap.el (imap-open): Handle case where buffer is a buffer
9021         object.
9022
9023 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9024
9025         * gnus-delay.el (gnus-delay): Don't autoload.
9026         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9027         to be re-loaded when customizing the `gnus-delay' group.
9028
9029 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9030
9031         * message.el (message-insert-citation-line): Use newlines.
9032
9033 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9034
9035         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9036         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9037         these routines, so the passphrase can be managed externally and
9038         passed in to the system.
9039         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9040         pgg-add-passphrase-to-cache function.
9041
9042         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9043         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9044         these routines, so the passphrase can be managed externally and
9045         passed in to the system.
9046         (pgg-pgp5-sign-region): Use new name of
9047         pgg-add-passphrase-to-cache function.
9048
9049 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9050
9051         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9052         part of the decoded armor to find the key-identifier.
9053         (pgg-gpg-lookup-key-owner): New function to return the
9054         human-readable identifier of a key owner.
9055         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9056         itself.
9057         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9058         the key value) if we have a key and can match it against a secret
9059         key.  Also, added a note pointing out fact that the prompt only
9060         indicates the first matching key.
9061
9062         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9063         pgg-decrypt-region.
9064         (pgg-add-passphrase-to-cache): Rename from
9065         `pgg-add-passphrase-cache' to reduce confusion (all callers
9066         changed).
9067         (pgg-remove-passphrase-from-cache): Rename from
9068         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9069         changed).
9070         (pgg-read-passphrase, pgg-add-passphrase-cache)
9071         (pgg-remove-passphrase-cache): Add informative docstrings.
9072         (pgg-decrypt): Convey provided passphrase in subordinate call to
9073         pgg-decrypt-region.
9074
9075 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9076
9077         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9078         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9079         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9080         'passphrase' argument, so the passphrase can be managed externally
9081         and then passed in to the system.
9082
9083         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9084         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9085         so the passphrase cache can be used reliably with identifiers
9086         besides a pgp packet's key id.
9087
9088         * pgg-gpg.el (pgg-gpg-encrypt-region)
9089         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9090         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9091         these routines, so the passphrase can be managed externally and
9092         passed in to the system.
9093
9094         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9095         'notruncate' argument, so the passphrase cache can be used
9096         reliably with identifiers besides a pgp packet's key id.
9097
9098 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9099
9100         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9101         symmetric encryption.
9102         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9103         encrypted session key.
9104         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9105         message ask for the passphrase in a proper way.
9106
9107         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9108         New user commands for symmetric encryption.
9109
9110 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9111
9112         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9113
9114         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9115
9116 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9117
9118         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9119
9120 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9121
9122         * mm-decode.el (mm-inlined-types): Add application/pgp.
9123         (mm-automatic-display): Ditto.
9124
9125         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9126         part as text.
9127
9128 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9129
9130         * nnrss.el: Update copyright.
9131         (nnrss-opml-import): Query whether to subscribe to each entry.
9132
9133         * gnus-art.el:
9134         * gnus-sum.el:
9135         * gnus-xmas.el:
9136         * messagexmas.el:
9137         * mm-uu.el:
9138         * mm-view.el: Update copyright.
9139
9140 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9141
9142         * message.el (message-info): New function.
9143         (message-mode-menu): Add it.
9144         Update copyright.
9145
9146         * ChangeLog: Fix and update copyright.
9147
9148 2006-01-13  Romain Francoise  <romain@orebokech.com>
9149
9150         * message.el (message-forward-subject-name-subject): Prefer the
9151         address to 'nowhere' if the sender has no name.
9152         Fix typo.  Update copyright year.
9153
9154 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9155
9156         * gnus-art.el (article-wash-html): Use
9157         gnus-summary-show-article-charset-alist if a numeric arg is given.
9158         (gnus-article-wash-html-with-w3m-standalone): New function.
9159
9160         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9161         mm-inline-text-html-render-with-w3m-standalone.
9162         (mm-text-html-washer-alist): Map w3m-standalone to
9163         gnus-article-wash-html-with-w3m-standalone.
9164         (mm-inline-text-html-render-with-w3m-standalone): New function.
9165
9166 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9167
9168         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9169         Improve LaTeX.
9170
9171 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9172
9173         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9174         (nnrss-request-article): Render text/plain parts as HTML.
9175
9176         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9177         the buffer.
9178
9179 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9180
9181         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9182         custom definition of `gnus-posting-styles'.
9183
9184         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9185         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9186
9187 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9188
9189         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9190         Use nntp for bug archive.
9191
9192 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9193
9194         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9195         parts.
9196         (nnrss-normalize-date): New function converts ISO 8601 date into
9197         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9198         (nnrss-check-group): Use it.
9199
9200 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9201
9202         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9203
9204         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9205         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9206         (nnrss-insert-w3): Ditto.
9207
9208 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9209
9210         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9211         the articles to be forwarded including the case where neither a
9212         number of articles nor a region is specified.
9213
9214 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9215
9216         * nnrss.el (nnrss-request-article): Fix last change; fill
9217         text/plain parts.
9218
9219 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9220
9221         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9222         in text/plain part.
9223         (nnrss-check-group): Don't add excessive newline to dc:subject.
9224
9225 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9226
9227         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9228         article.
9229
9230 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9231
9232         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9233         (nnml-use-compressed-files, nnml-save-mail): Support other
9234         comression programs such as bzip2.
9235
9236 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9237
9238         * dns.el (query-dns): Make sure we check the buffer size before
9239         removing tcp headers.
9240
9241 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9242
9243         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9244         remove MIME buttons associated with multipart/alternative parts.
9245         (gnus-mime-display-alternative): Tag buttons using `article-type'
9246         text property.
9247
9248         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9249         associated with multipart/alternative parts.
9250
9251         * gnus-art.el (gnus-signature-separator): Fix custom type.
9252
9253         * mm-decode.el (mm-inlined-types): Fix custom type.
9254         (mm-keep-viewer-alive-types): Ditto.
9255         (mm-automatic-display): Ditto.
9256         (mm-attachment-override-types): Ditto.
9257         (mm-inline-override-types): Ditto.
9258         (mm-automatic-external-display): Ditto.
9259
9260 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9261
9262         * spam-report.el (spam-report-user-mail-address)
9263         (spam-report-user-agent): New variables.
9264         (spam-report-url-ping-plain): Use spam-report-user-agent.
9265
9266 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9267
9268         * gnus-art.el (gnus-button-handle-custom): Do not just use
9269         `customize-apropos' for any "M-x customize-*" button but the
9270         function called for.  Accept both the function name and its
9271         argument in order to achieve this.
9272         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9273         function name to `gnus-button-handle-custom' in case of "M-x
9274         customize-*" buttons.
9275
9276 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9277
9278         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9279         multipart/alternative and add xref to mm-discouraged-alternatives
9280         in doc string.
9281
9282         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9283         gnus-buttonized-mime-types in doc string.
9284
9285 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9286
9287         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9288         Suggest image/.* in the doc string.
9289
9290 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9291
9292         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9293         message-marks (Debian bug #342521).
9294
9295 2005-12-12  Simon Josefsson  <jas@extundo.com>
9296
9297         * password.el (password-read-from-cache): Add.
9298         (password-read): Use it.
9299
9300 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9301
9302         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9303         us-ascii as a MIME charset.
9304
9305         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9306         against the case where the 2nd arg TYPE is nil.
9307
9308 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9309
9310         * pop3.el (pop3-stream-type): Fix custom version.
9311
9312         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9313
9314 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9315
9316         * mm-decode.el (mm-display-external): Add missing cdr.
9317
9318 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9319
9320         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9321         RFC1524) if it is in mailcap or add a suffix according to
9322         mailcap-mime-extensions when generating a temp filename; postpone
9323         deleting a temp file for 2 seconds for some wrappers, shell
9324         scripts, and so on, which might exit right after having started a
9325         viewer command as a background job.
9326
9327 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9328
9329         * nntp.el (nntp-marks-directory): Fix custom group.
9330
9331         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9332         steps when < 10.
9333
9334         * gnus-start.el (gnus-no-server-1): Mention
9335         `gnus-level-default-subscribed' in doc string.
9336
9337 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9338
9339         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9340         parens.
9341
9342 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9343
9344         * gnus-xmas.el (gnus-use-toolbar): Revert.
9345         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9346         gnus-use-toolbar is default.
9347
9348         * messagexmas.el (message-use-toolbar): Revert.
9349         (message-setup-toolbar): Use global default-toolbar if
9350         message-use-toolbar is default.
9351
9352 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9353
9354         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9355         according to default-toolbar-visible-p.
9356
9357         * messagexmas.el (message-use-toolbar): Ditto.
9358
9359 2005-11-26  Dave Love  <fx@gnu.org>
9360
9361         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9362         (tls-program, tls-success): Provide openssl alternative.
9363
9364         * starttls.el: Doc fixes.
9365         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9366         SERVICE to PORT.
9367
9368         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9369         port null or service name.
9370         (starttls-negotiate): Autoload.
9371
9372 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9373
9374         * message.el (message-kill-to-signature): Fix interactive spec.
9375
9376 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9377
9378         * pop3.el (pop3-open-server): Recognize a string as a service name.
9379
9380 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9381
9382         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9383
9384 2005-11-23  Dave Love  <fx@gnu.org>
9385
9386         Add pop3s, pop3/starttls.
9387
9388         * pop3.el (pop3-authentication-scheme): Clarify doc.
9389         (open-tls-stream, starttls-open-stream): Autoload.
9390         (pop3-stream-type): New.
9391         (pop3-open-server): Use it.
9392
9393         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9394         for POP.
9395         (mail-source-keyword-map): Add :stream for POP.
9396         (mail-source-fetch-pop): Use pop3-stream-type.
9397
9398 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9399
9400         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9401         of current-time-string.
9402
9403 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9404
9405         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9406         date header.
9407
9408 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9409
9410         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9411         it can seriously impact performance as it bypasses the agent's
9412         local caches.
9413
9414 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9415
9416         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9417         must be explicitly online rather than "not explicitly offline" for
9418         its flags to be synchronized.
9419
9420         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9421         that gnus-uu-unmark-thread will function correctly.
9422
9423         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9424         1024K is instead displayed as 1M.
9425
9426 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9427
9428         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9429
9430 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9431
9432         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9433
9434 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9435
9436         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9437         error message to display actual error condition.
9438         (gnus-agent-save-local): Avoid saving symbols that are bound to
9439         nil as they simply result in a warning message in
9440         gnus-agent-read-local.
9441
9442 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9443
9444         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9445         rather than make-variable-buffer-local for file-precious-flag.
9446
9447 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9448
9449         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9450         for duplicates which are removed.  The invalid sort check then
9451         triggers a rescan after the sort as sorting may have moved
9452         duplicate entries such that they can be cheaply detected.
9453
9454 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9455
9456         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9457
9458 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9459
9460         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9461         internal variable to a custom variable.  Changed default value
9462         from compressed(2) to uncompressed(1).
9463         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9464         support for uncompressed agentview files.  Taken together, reading
9465         the agentview file should now be 6-7 times faster.
9466
9467 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9468
9469         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9470         as a buffer-local variable.  This avoids creating truncated
9471         dribble files as a result of a hang up, eg.
9472
9473 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9474
9475         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9476         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9477         XEmacs.
9478
9479 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9480
9481         * gnus-start.el (gnus-start-draft-setup): Enforce
9482         `gnus-draft-mode' for nndraft:drafts at startup.
9483
9484         * gnus.el (gnus-splash): Change custom group.
9485         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9486         allow-list argument.
9487
9488         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9489         string.
9490
9491 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9492
9493         * gnus-art.el (gnus-default-article-saver): Add user-defined
9494         `function' to custom type.
9495
9496 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9497
9498         * imap.el (imap-open): Handle case where buffer is a buffer
9499         object.
9500
9501 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9502
9503         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9504         long lines.
9505         (gnus-cache-delete-group): Wrap doc strings.
9506
9507         * gnus-agent.el (gnus-agent-rename-group)
9508         (gnus-agent-delete-group): Wrap doc strings.
9509
9510 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9511
9512         * messagexmas.el (message-use-toolbar): Change the valid values
9513         into default, top, bottom, left, and right.
9514         (message-toolbar-thickness): New variable.
9515         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9516         well.
9517         (message-setup-toolbar): Make it work.
9518
9519         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9520         (gnus-use-toolbar): Change the valid values into default, top,
9521         bottom, left, and right.
9522         (gnus-toolbar-thickness): New variable.
9523         (gnus-xmas-setup-toolbar): New function.
9524         (gnus-xmas-setup-group-toolbar): Use it.
9525         (gnus-xmas-setup-summary-toolbar): Use it.
9526
9527 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9528
9529         * gnus-start.el (gnus-1): Add "native" to
9530         gnus-predefined-server-alist.
9531
9532         * gnus.el (gnus-method-to-server): Don't add "native" to the
9533         lists here, because that leads to problems when
9534         gnus-select-method is bound.
9535
9536 2005-11-09  Simon Josefsson  <jas@extundo.com>
9537
9538         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9539         use (not sort-by-date) instead.
9540
9541 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9542
9543         * gnus-delay.el (gnus-delay-group): Don't autoload.
9544         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9545         to be re-loaded when customizing the `gnus-delay' group.
9546
9547 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9548
9549         * message.el: Revert last changes.
9550         (message-insert-citation-line): Use newlines.
9551
9552 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9553
9554         * message.el (message-courtesy-message)
9555         (message-mark-insert-begin, message-mark-insert-end)
9556         (message-elide-ellipsis, message-cancel-message)
9557         (message-add-header, message-change-subject)
9558         (message-cross-post-followup-to-header)
9559         (message-cross-post-insert-note, message-reduce-to-to-cc)
9560         (message-widen-reply, message-delete-not-region)
9561         (message-kill-to-signature, message-insert-signature)
9562         (message-insert-importance-high, message-insert-importance-low)
9563         (message-insert-or-toggle-importance)
9564         (message-insert-disposition-notification-to)
9565         (message-indent-citation, message-yank-original)
9566         (message-cite-original-without-signature, message-cite-original)
9567         (message-insert-citation-line, message-position-on-field)
9568         (message-fix-before-sending, message-send-mail-partially)
9569         (message-send-mail, message-send-mail-with-sendmail)
9570         (message-send-mail-with-qmail, message-send-news)
9571         (message-check-news-header-syntax, message-generate-headers)
9572         (message-insert-courtesy-copy, message-fill-address)
9573         (message-fill-header, message-shorten-references)
9574         (message-setup-1, message-cancel-news)
9575         (message-forward-make-body-plain, message-forward-make-body-mime)
9576         (message-forward-make-body-mml, message-encode-message-body)
9577         (message-forward-make-body-digest-plain)
9578         (message-forward-make-body-digest-mime)
9579         (message-use-alternative-email-as-from): Insert `hard-newline'
9580         instead of ordinary newlines.
9581
9582 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9583
9584         * message.el (message-generate-headers): Downcase the argument
9585         given to message-check-element.
9586
9587 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9588
9589         * nntp.el (nntp-authinfo-rejected): New error condition.
9590         (nntp-wait-for): Use new error condition to signal authentication
9591         error.
9592         (nntp-retrieve-data): Rethrow new error condition to break out of
9593         recursive call to nntp-send-authinfo.
9594
9595 2005-11-08  Romain Francoise  <romain@orebokech.com>
9596
9597         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9598         (gnus-summary-exit-map): Bind to `Z p'.
9599         (gnus-summary-make-menu-bar): Add menu item.
9600
9601 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9602
9603         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9604         (gnus-treat-*): Add `first' in all doc strings.
9605
9606         * gnus-group.el (gnus-group-compact-group): Fix typo.
9607
9608 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9609
9610         * gnus.el (gnus-parameters-case-fold-search): New variable.
9611         (gnus-parameters-get-parameter): Use it.
9612
9613         * gnus-score.el (gnus-home-score-file): Doc fix.
9614
9615 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9616
9617         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9618
9619 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9620
9621         * mm-util.el (mm-special-display-p): New function.
9622
9623         * mml.el (mml-preview): Use it; doc fix.
9624
9625 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9626
9627         * imap.el (imap-open): Handle case where buffer is a buffer object.
9628
9629 2005-10-29  Romain Francoise  <romain@orebokech.com>
9630
9631         * message.el (message-fix-before-sending): Fix comment.
9632
9633 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9634
9635         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9636
9637 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9638
9639         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9640         Used in gnus-score.el.
9641
9642 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9643
9644         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9645
9646 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9647
9648         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9649         whitespace removed in revision 7.8.  Use concatenated string to
9650         protect trailing whitespace.
9651
9652 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9653
9654         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9655         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9656         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9657         Courier IMAP ("some version from 2004").  Mostly based on similar
9658         code in the same function.
9659
9660 2005-10-26  Didier Verna  <didier@xemacs.org>
9661
9662         * gnus-group.el (gnus-group-compact-group): Invalidate original
9663         article buffer.
9664         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9665         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9666         NOV database and in article itself.
9667         Invalidate article backlog.
9668
9669 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9670
9671         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9672
9673 2005-10-26  Simon Josefsson  <jas@extundo.com>
9674
9675         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9676         part of 2004-07-25 change.
9677
9678 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9679
9680         * message.el (message-display-completion-list): New function.
9681         (message-expand-group): Use it; make sure the Completions buffer
9682         is modifiable.
9683 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9684
9685         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9686         user-mail-name is an empty string.
9687
9688 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9689
9690         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9691         depending on gnus-score-decay-constant.
9692
9693         * encrypt.el (encrypt-insert-file-contents)
9694         (encrypt-write-file-contents): Don't use `gnus-message'.
9695
9696         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9697         arguments.
9698         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9699         arguments to mm-uu-verbatim-marks-extract.
9700         (mm-uu-hide-markers): New variable.
9701         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9702
9703         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9704         (gnus-convert-image-to-face-command): Use "convert" by default to
9705         allow other input image formats.
9706         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9707         accordingly.
9708
9709 2005-10-23  Simon Josefsson  <jas@extundo.com>
9710
9711         * imap.el (imap-gssapi-program): Align command line parameters
9712         with latest GNU SASL.
9713         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9714
9715 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9716
9717         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9718         HTML.
9719         (nnslashdot-request-article): Ditto.
9720
9721         * lpath.el (featurep): Add nobreak-char-display.
9722
9723 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9724
9725         * mail-source.el (mail-source-fetch-pop): Require pop3.
9726         (mail-source-check-pop): Ditto.
9727
9728 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9729
9730         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9731         errors.
9732
9733 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9734
9735         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9736         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9737
9738         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9739
9740         * mm-bodies.el (mm-decode-string): Call
9741         `mm-charset-to-coding-system' with allow-override argument.
9742
9743 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9744
9745         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
9746         (rfc2047-charset-to-coding-system): New function.
9747         (rfc2047-decode-encoded-words): New function.
9748         (rfc2047-decode-region): Use them.
9749         (rfc2047-decode-cte): Remove.
9750         (rfc2047-parse-and-decode): Remove.
9751         (rfc2047-decode): Remove.
9752
9753 2005-10-15  Kenichi Handa  <handa@m17n.org>
9754
9755         * rfc2047.el (rfc2047-decode-cte): New function.
9756         (rfc2047-decode-region): Change the way to decode successive
9757         encoded-words: decode B- or Q-encoding in each encoded-word,
9758         concatenate them, and decode it as charset.
9759
9760 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9761
9762         * lpath.el: Fbind codepage-setup for XEmacs.
9763
9764 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
9765
9766         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
9767         widget-move-and-invoke.
9768         (gnus-custom-mode): Use gnus-custom-map.
9769
9770 2005-10-15  Bill Wohler  <wohler@newt.com>
9771
9772         * message.el (message-tool-bar-map): Renamed image file from
9773         mail_send to mail/send.
9774
9775 2005-10-16  Masatake YAMATO  <jet@gyve.org>
9776
9777         * message.el (message-expand-group): Pass the common
9778         prefix substring of completion to `display-completion-list'.
9779
9780 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
9781
9782         * mml-sec.el (mml-secure-method): New internal variable.
9783         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
9784         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
9785         functions using mml-secure-method.
9786
9787         * mml.el (mml-mode-map): Add key bindings for those functions.
9788         (mml-menu): Simplify security menu entries.  Suggested by Jesper
9789         Harder <harder@myrealbox.com>.
9790         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
9791         end of message if point is the headers of the message.
9792
9793         * message.el (message-in-body-p): New function.
9794
9795         * assistant.el: Autoload gnus-util and netrc.
9796
9797         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
9798         Use `mm-charset-override-alist' only when decoding.
9799
9800         * mm-bodies.el (mm-decode-body): Call
9801         `mm-charset-to-coding-system' with allow-override argument.
9802
9803         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
9804         `filename' from Content-Disposition if Content-Type doesn't
9805         provide `name'.
9806         (gnus-mime-view-part-as-type): Set default instead of
9807         initial-input.
9808
9809 2005-10-09  Daniel Brockman  <daniel@brockman.se>
9810
9811         * format-spec.el (format-spec): Propagate text properties of % spec.
9812
9813 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
9814
9815         * gnus-art.el (gnus-treat-predicate): Add `first'.
9816
9817 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
9818
9819         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
9820         (mm-charset-override-alist): New variable.
9821         (mm-charset-to-coding-system): Use it.
9822         (mm-codepage-setup): New helper function.
9823         (mm-charset-eval-alist): New variable.
9824         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
9825         about unknown charsets.
9826
9827         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
9828
9829 2005-10-04  David Hansen  <david.hansen@gmx.net>
9830
9831         * nnrss.el (nnrss-request-article): Add support for the comments tag.
9832         (nnrss-check-group): Ditto.
9833
9834 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9835
9836         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
9837         Rename x-gnus-verbatim to x-verbatim.
9838         (mm-uu-type-alist): Fix regexp for verbatim-marks.
9839
9840         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
9841         x-verbatim.
9842
9843         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
9844
9845         * gnus-util.el (gnus-remove-duplicates): Remove.
9846
9847         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
9848         instead of gnus-remove-duplicates.
9849
9850         * message.el (message-remove-duplicates): Remove.
9851         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
9852         message-remove-duplicates.
9853
9854         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
9855         available, else use implementation from `delete-dups'.
9856
9857         * message.el (message-insert-expires): New function.
9858         (message-mode-map): Add key binding.
9859         (message-mode-field-menu): Add menu entry.
9860         (message-mode): Document it.
9861         (message-make-expires-date): Use `message-make-date'.
9862
9863 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
9864
9865         * message.el (message-make-expires-date): New function.
9866
9867 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9868
9869         * Makefile.in (list-installed-shadows): New entry.
9870         (install): Use it.
9871         (remove-installed-shadows): New entry.
9872
9873         * dgnushack.el (dgnushack-default-load-path): New variable.
9874         (dgnushack-find-lisp-shadows): New function.
9875         (dgnushack-remove-lisp-shadows): New function.
9876
9877 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9878
9879         * Makefile.in (install-el-elc): New entry.
9880         (install): Use it so that .el files are necessarily installed.
9881
9882 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9883
9884         * time-date.el: Autoload parse-time-string, XEmacs needs it.
9885
9886 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9887
9888         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
9889         function rather than the diff-mode.el package.
9890         (mm-display-external): Use with-current-buffer.
9891         (mm-viewer-completion-map, mm-viewer-completion-map):
9892         Move initialization inside declaration.
9893
9894 2005-09-29  Simon Josefsson  <jas@extundo.com>
9895
9896         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
9897         autoload mail-check-payment.
9898         (spam-check-hashcash): Define unconditionally, since hashcash.el
9899         is part of Gnus now.  Ignore errors from payment checking.
9900
9901 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
9902
9903         * message.el (message-bold-region, message-unbold-region): Rename
9904         from `bold-region' and `unbold-region'.
9905
9906         * message.el: Remove useless autoloads.
9907
9908 2005-09-28  Simon Josefsson  <jas@extundo.com>
9909
9910         * message.el (message-use-idna): Default to t.
9911         (message-use-idna): Test whether encoding works too.  Doc fix.
9912
9913 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9914
9915         * nntp.el (nntp-warn-about-losing-connection): Remove.
9916
9917 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
9918
9919         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
9920         customizable.  Change default value.
9921         (mm-uu-diff-groups-regexp): Change default value.
9922         (mm-uu-type-alist): Add doc string.
9923         (mm-uu-configure): Add doc string.  Make it interactive.
9924         (mm-uu-tex-groups-regexp): New variable.
9925         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
9926         (mm-uu-type-alist): Add LaTeX documents.
9927         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
9928         of "text/verbatim".
9929         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
9930
9931         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
9932         instead of "text/verbatim".
9933
9934         * message.el (message-mark-inserted-region)
9935         (message-mark-insert-file): Use slrn style marks when called with
9936         prefix argument.
9937
9938 2005-09-27  Simon Josefsson  <jas@extundo.com>
9939
9940         * message.el (message-idna-to-ascii-rhs-1): Reformat.
9941
9942 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
9943
9944         * message.el (message-remove-duplicates): New function.
9945         Implementation borrowed from `gnus-remove-duplicates'.
9946         (message-idna-to-ascii-rhs): Also encode idna addresses in
9947         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
9948         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
9949         only ask about the same idna domain once per header and also tell
9950         in what header to replace the idna domain.
9951
9952         * gnus-art.el (article-decode-idna-rhs): Also decode idna
9953         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
9954         (article-decode-idna-rhs): Fix regexp so that all idna-address in
9955         a header is decoded and not just the last one.
9956
9957 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9958
9959         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
9960         has been decoded.
9961
9962         * mm-decode.el (mm-automatic-display): Add text/verbatim.
9963         (mm-insert-part): Don't modify text if it has been decoded.
9964
9965         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
9966         decoded.
9967
9968         * mm-view.el (mm-inline-text): Don't strip text props unless
9969         decoding enriched or richtext parts.
9970
9971 2005-09-25  Romain Francoise  <romain@orebokech.com>
9972
9973         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
9974         * gnus-start.el (gnus-subscribe-interactively):
9975         * gnus-uu.el (gnus-uu-grab-articles):
9976         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
9977         space.
9978
9979 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
9980
9981         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
9982         * mm-view.el (mm-view-pkcs7-decrypt):
9983         * gnus-sum.el (gnus-summary-limit-to-extra)
9984         (gnus-summary-respool-article, gnus-read-move-group-name):
9985         * gnus-score.el (gnus-summary-increase-score):
9986         * gnus-util.el (gnus-completing-read-with-default):
9987         * gnus-art.el (gnus-read-save-file-name)
9988         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
9989         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
9990         * message.el (message-check-news-header-syntax):
9991         Follow convention for reading with the minibuffer.
9992
9993 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
9994
9995         * spam-report.el (spam-report-url-ping-plain):
9996         Use gnus-extended-version as User-Agent.
9997
9998         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
9999         default value is nil.
10000
10001         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10002         (mm-uu-verbatim-marks-extract): New function.
10003         (mm-uu-extract): New face.
10004         (mm-uu-copy-to-buffer): Use it.
10005
10006         * spam-report.el (spam-report-gmane-ham): Renamed from
10007         `spam-report-gmane-unspam'.
10008         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10009         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10010
10011         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10012         Autoload.
10013         (spam-report-gmane-unregister-routine): Renamed
10014         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10015
10016 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10017
10018         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10019         (spam-report-gmane-unregister-routine): Add support for gmane
10020         unregistration.
10021
10022         * spam-report.el (spam-report-gmane-unspam)
10023         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10024         (spam-report-gmane): Change to take a single article and do unspam
10025         registration.
10026
10027 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10028
10029         * mm-url.el (mm-url-decode-entities): Fix regexp.
10030
10031 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10032
10033         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10034         default to nil, to be able to use Gnus at all.  If the default
10035         switches to something else, then the function should be fixed not
10036         be exceedingly slow.
10037
10038 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10039
10040         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10041         fail hard.
10042
10043         * spam-report.el: Add better Keywords line.
10044
10045         * spam.el: Add Maintainer and better Keywords line.
10046
10047 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10048
10049         * gnus-art.el (gnus-article-replace-part)
10050         (gnus-mime-replace-part): New functions.
10051         (gnus-mime-action-alist, gnus-mime-button-commands)
10052         (gnus-mime-save-part-and-strip): Added file argument.
10053         (gnus-article-part-wrapper): Added interactive argument.
10054
10055         * gnus-sum.el (gnus-summary-mime-map): Add
10056         `gnus-article-replace-part'.
10057
10058 2005-09-19  Didier Verna  <didier@xemacs.org>
10059
10060         The nnml compaction feature:
10061         * nnml.el (nnml-request-compact-group): New function.
10062         * nnml.el (nnml-request-compact): New function.
10063         * gnus-int.el (gnus-request-compact-group): New function.
10064         * gnus-int.el (gnus-request-compact): New function.
10065         * gnus-group.el (gnus-group-compact-group): New function.
10066         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10067         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10068         * gnus-srvr.el (gnus-server-compact-server): New function.
10069         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10070         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10071
10072 2005-09-18  Deepak Goel  <deego@gnufans.org>
10073
10074         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10075         format spec.
10076
10077 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10078
10079         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10080
10081 2005-09-15  Romain Francoise  <romain@orebokech.com>
10082
10083         * message.el (message-fill-paragraph): Clarify docstring.
10084
10085 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10086
10087         * gnus-art.el (gnus-mime-display-part): Protect against broken
10088         MIME messages.
10089
10090 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10091
10092         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10093         before parsing header.
10094
10095 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10096
10097         * html2text.el (html2text-replace-list): Add new entities.
10098
10099 2005-09-11  Romain Francoise  <romain@orebokech.com>
10100
10101         * message.el (message-alternative-emails): Improve docstring.
10102         (message-setup-1): Call `message-use-alternative-email-as-from'
10103         after `message-setup-hook' to give it precedence over posting
10104         styles, etc.
10105         (message-use-alternative-email-as-from): Add docstring.  Remove
10106         the original From header if present.
10107
10108         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10109         (nnml-save-mail): Use it.
10110
10111         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10112         articles.  Add new argument `silent'.
10113         (gnus-uu-mark-all): Report the total number of marked articles.
10114
10115 2005-09-10  Romain Francoise  <romain@orebokech.com>
10116
10117         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10118         (gnus-uu-mark-series): Likewise.
10119
10120 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10121
10122         * spam-report.el (spam-report-gmane): Fix generation of spam
10123         report URL.
10124
10125 2005-09-10  Simon Josefsson  <jas@extundo.com>
10126
10127         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10128         t, based on discussion on the ding list with Robert Epprecht
10129         <epprecht@solnet.ch>.
10130
10131 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10132
10133         * spam-report.el (spam-report-gmane): Make it work without
10134         X-Report-Spam header.  Gmane now only provides Archived-At.
10135         This is only used if `spam-report-gmane-use-article-number' is nil.
10136         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10137
10138         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10139         make `gnus-summary-sort-by-recipient' work with threading.
10140
10141         * nnweb.el (nnweb-google-wash-article): Print a message if article
10142         is not available.
10143
10144 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10145
10146         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10147         change.  Decode text/* parts content before displaying.
10148
10149 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10150
10151         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10152
10153 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10154
10155         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10156
10157         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10158         url-package-name, url-package-version,
10159         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10160         w3m-display-inline-images, and w3m-minor-mode-map.
10161
10162 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10163
10164         * message.el (message-tab-body-function): Fix mismatched custom type.
10165
10166         * gnus.el (gnus-group-change-level-function): Ditto.
10167
10168         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10169
10170         * gnus-art.el (gnus-signature-limit)
10171         (gnus-article-mime-part-function): Ditto.
10172
10173 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10174
10175         * mml.el (mml-mode): Silence the byte compiler.
10176
10177         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10178         using `(sit-for 0)' before moving the point to the specified part;
10179         skip unbuttonized parts.
10180         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10181         return to the summary window if gnus-auto-select-part is non-nil.
10182
10183 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10184
10185         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10186         variables.
10187         (mml-dnd-attach-file, mml-mode): Use them.
10188
10189         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10190         Make fetching article by MID work again for Google Groups.  Added
10191         FIXME concerning gnus-group-make-web-group.
10192
10193         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10194         Don't depend on Gnus by using mail-extract-address-components if
10195         gnus-extract-address-components is not bound.
10196
10197 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10198
10199         * gnus-art.el (gnus-mime-display-security): Don't display the
10200         signature, but only the signed part.
10201
10202 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10203
10204         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10205
10206         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10207         list, not listp.
10208
10209 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10210
10211         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10212         when encoding.
10213
10214         * mm-bodies.el (mm-decode-content-transfer-encoding):
10215         De-canonicalize CRLF for all text content types, not just
10216         text/plain.
10217
10218 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10219
10220         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10221         valid article; point arrow and cursor at the MIME button.
10222
10223 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10224
10225         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10226         Suggested by Dan Christensen <jdc@uwo.ca>.
10227
10228         * mm-decode.el (mm-save-part): Enable change of prompt.
10229
10230 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10231
10232         * gnus-msg.el (gnus-inews-add-send-actions): Made
10233         `message-post-method' lambda parameter ARG `&optional'.
10234
10235 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10236
10237         * gnus-sum.el (gnus-summary-mime-map): Added
10238         gnus-article-save-part-and-strip, gnus-article-delete-part and
10239         gnus-article-jump-to-part.
10240
10241         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10242         (gnus-article-edit-part): Use it.
10243         (gnus-article-part-wrapper): Added no-handle argument.
10244         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10245         functions.
10246
10247 2005-08-29  Romain Francoise  <romain@orebokech.com>
10248
10249         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10250         docstring.
10251         (gnus-face-from-file): Likewise.
10252
10253 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10254
10255         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10256         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10257         non-nil.
10258         (gnus-auto-select-part): New variable.
10259         (gnus-article-jump-to-part): New function.
10260         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10261         (gnus-mime-delete-part): Allow selecting specified part after
10262         deleting or stripping parts.
10263         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10264         part if argument is bogus.
10265
10266 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10267
10268         * gnus-art.el (w3m-minor-mode-map):
10269         * gnus-spec.el (gnus-newsrc-file-version):
10270         * gnus-util.el (nnmail-active-file-coding-system)
10271         (gnus-original-article-buffer, gnus-user-agent):
10272         * gnus.el (gnus-ham-process-destinations)
10273         (gnus-parameter-ham-marks-alist)
10274         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10275         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10276         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10277         * mm-decode.el (gnus-current-window-configuration):
10278         * mm-extern.el (gnus-article-mime-handles):
10279         * mm-url.el (url-current-object, url-package-name)
10280         (url-package-version):
10281         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10282         (smime-keys, w3m-cid-retrieve-function-alist)
10283         (w3m-current-buffer, w3m-display-inline-images)
10284         (w3m-minor-mode-map):
10285         * mml-smime.el (gnus-extract-address-components):
10286         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10287         (gnus-newsrc-hashtb, message-default-charset)
10288         (message-deletable-headers, message-options)
10289         (message-posting-charset, message-required-mail-headers)
10290         (message-required-news-headers):
10291         * mml1991.el (mc-pgp-always-sign):
10292         * mml2015.el (mc-pgp-always-sign):
10293         * nnheader.el (nnmail-extra-headers):
10294         * rfc1843.el (gnus-decode-encoded-word-function)
10295         (gnus-decode-header-function, gnus-newsgroup-name):
10296         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10297
10298 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10299
10300         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10301         the end of the date treatments.
10302
10303 2005-08-15  Simon Josefsson  <jas@extundo.com>
10304
10305         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10306         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10307         Capello and Romain Francoise.
10308         (pgg-fetch-key-function): Removed, not used?
10309         (pgg-insert-url-with-w3): Require url, to get
10310         url-insert-file-contents regardless of where it is defined.
10311
10312 2005-08-13  Romain Francoise  <romain@orebokech.com>
10313
10314         * message.el (message-cite-original-1): New function.
10315         (message-cite-original): Use it.
10316         (message-cite-original-without-signature): Ditto.
10317
10318 2005-08-08  Romain Francoise  <romain@orebokech.com>
10319
10320         * message.el (message-yank-empty-prefix): New variable.
10321         (message-indent-citation): Use it.
10322         (message-cite-original-without-signature): Respect X-No-Archive.
10323
10324 2005-08-08  Simon Josefsson  <jas@extundo.com>
10325
10326         * pgg.el: Autoload url-insert-file-contents instead of loading
10327         w3/url.
10328         (pgg-insert-url-with-w3): Don't load url here.
10329
10330 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10331
10332         * message.el (message-kill-to-signature): Don't insert newline at
10333         bol.
10334         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10335
10336 2005-08-06  Romain Francoise  <romain@orebokech.com>
10337
10338         * message.el (message-user-fqdn): Fix typo in docstring.
10339
10340 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10341
10342         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10343
10344         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10345
10346 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10347
10348         * mm-bodies.el (mm-encode-body): Use coding system rather than
10349         charset to encode text.
10350
10351         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10352         number of charsets if utf-8 is available (XEmacs).
10353
10354 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10355
10356         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10357         taken from `gnus-button-mid-or-mail-regexp'.
10358         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10359         (gnus-button-alist): Improve regexp for domain part of the MIDs
10360         for news:localpart@domain buttons.
10361         (gnus-button-ctan-directory-regexp): Update.
10362
10363 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10364
10365         * sieve-manage.el (sieve-manage-interactive-login): Use
10366         make-local-variable rather than make-variable-buffer-local.
10367         (sieve-manage-open): Ditto.
10368         (sieve-manage-authenticate): Ditto.
10369
10370         * mml.el (mml-generate-mime-1): Make the content type default to
10371         text/plain if the filename is not specified.
10372
10373 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10374
10375         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10376         instead of insert-buffer.
10377
10378         * message.el (message-yank-original): Ditto; set the mark at the
10379         end of the yanked message.
10380
10381 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10382
10383         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10384         lines to scroll rather than to stop it.
10385
10386         * mml.el (mml-generate-default-type): Add doc string.
10387         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10388         default to application/octet-stream when determining the content
10389         type if it is not specified for the part or the mml contents; add
10390         a comment about mml-generate-default-type.
10391
10392 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10393
10394         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10395         make it default to application/octet-stream when determining the
10396         content type if it is not specified for the external contents.
10397
10398 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10399
10400         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10401         segmented parameter but also other parameters might be there.
10402
10403 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10404
10405         * mm-decode.el (mm-display-external): Delete temp file, directory
10406         and buffer immediately if the external process is exited.
10407
10408 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10409
10410         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10411         fewer lines than that of scroll-margin.
10412         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10413
10414 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10415
10416         * gnus-art.el (gnus-article-next-page): Revert.
10417         (gnus-article-beginning-of-window): New macro.
10418         (gnus-article-next-page-1): Use it.
10419         (gnus-article-prev-page): Ditto.
10420         (gnus-article-edit-part): Use insert-buffer-substring instead of
10421         insert-buffer.
10422         (gnus-article-edit-exit): Ditto.
10423
10424         * gnus-util.el (gnus-beginning-of-window): Remove.
10425         (gnus-end-of-window): Remove.
10426
10427         * lpath.el: Don't bind header-line-format and scroll-margin.
10428
10429 2005-07-25  Simon Josefsson  <jas@extundo.com>
10430
10431         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10432         to have the url package without w3.  Reported by Daiki Ueno
10433         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10434
10435 2005-07-20  Didier Verna  <didier@xemacs.org>
10436
10437         * gnus-diary.el: Remove the description comment (nndiary is now
10438         properly documented in the Gnus manual).
10439         Fix the spelling of "Back End".
10440         * nndiary.el: Ditto.
10441         Fix the copyright notice.
10442
10443 2005-07-18  Romain Francoise  <romain@orebokech.com>
10444
10445         * gnus-sum.el (gnus-summary-to-prefix)
10446         (gnus-summary-newsgroup-prefix): New variables.
10447         (gnus-summary-from-or-to-or-newsgroups): Use them.
10448
10449 2005-07-17  Romain Francoise  <romain@orebokech.com>
10450
10451         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10452         space as it's generally not especially interesting to the user.
10453
10454 2005-07-16  Romain Francoise  <romain@orebokech.com>
10455
10456         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10457         nil to avoid prompting and file modification if one of the
10458         messages at the top of the nnfolder file contains a copyright
10459         notice.
10460         Update copyright notice.
10461
10462         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10463         instead of `current-time-string' as the latter creates a time
10464         string that is not RFC 2822 compliant (it lacks the zone).
10465         Update copyright notice.
10466
10467 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10468
10469         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10470         for text/rtf.  Display default in prompt.  Pass default for M-n.
10471
10472         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10473
10474 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10475
10476         * gnus-msg.el (gnus-button-mailto): Remove
10477         save-selected-window-window hackery because it relies on
10478         save-selected-window internals.
10479
10480 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10481
10482         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10483         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10484         (gnus-article-prev-page): Ditto.
10485
10486         * gnus-util.el (gnus-beginning-of-window): New function.
10487         (gnus-end-of-window): New function.
10488
10489         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10490
10491 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10492
10493         * gnus-score.el (gnus-score-edit-all-score): Set
10494         gnus-score-edit-exit-function to gnus-score-edit-done and call
10495         gnus-message.
10496
10497 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10498
10499         * gnus-msg.el (gnus-button-mailto): Remove
10500         save-selected-window-window hackery because it relies on
10501         save-selected-window internals.
10502
10503 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10504
10505         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10506         add-minor-mode.
10507         (gnus-binary-mode): Ditto.
10508
10509         * gnus-topic.el (gnus-topic-mode): Ditto.
10510
10511 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10512
10513         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10514         (gnus-article-prev-page): Take scroll-margin into consideration.
10515
10516 2005-07-04  Lute Kamstra  <lute@gnu.org>
10517
10518         Update FSF's address in GPL notices.
10519
10520 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10521
10522         * gnus.el (gnus-exit):
10523         * gnus-group.el (gnus-group-icons):
10524         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10525
10526         * gnus-nocem.el (gnus-nocem):
10527         * message.el (message-various, message-buffers, message-sending)
10528         (message-interface, message-forwarding, message-insertion)
10529         (message-headers, message-news, message-mail):
10530         * pgg-gpg.el (pgg-gpg):
10531         * pgg-parse.el (pgg-parse):
10532         * pgg-pgp.el (pgg-pgp):
10533         * pgg-pgp5.el (pgg-pgp5):
10534         * pop3.el (pop3): Finish `defgroup' description with period.
10535
10536 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10537
10538         * gnus-art.el (article-display-face): Improve the efficiency.
10539         (article-display-x-face): Ditto; remove grey x-face stuff.
10540
10541 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10542
10543         * gnus-art.el (article-display-face): Correct the position in
10544         which Faces are inserted.
10545
10546 2005-06-29  Didier Verna  <didier@xemacs.org>
10547
10548         * gnus-art.el (article-display-face): Display faces in correct
10549         order.
10550
10551 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10552
10553         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10554         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10555         (gnus-nocem-check-article): Fetch the Type header.
10556         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10557         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10558         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10559         make sure gnus-nocem-hashtb is initialized.
10560         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10561         (gnus-nocem-unwanted-article-p): Ditto.
10562
10563         * pgg.el (pgg-verify): Return the verification result.
10564
10565 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10566
10567         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10568         is ascii.
10569
10570 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10571
10572         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10573         `show-nonbreak-escape'.
10574
10575 2005-06-23  Lute Kamstra  <lute@gnu.org>
10576
10577         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10578
10579         * dig.el (dig-mode):
10580         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10581
10582 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10583
10584         * nnimap.el (nnimap-split-download-body): Fix spellings.
10585
10586 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10587
10588         * gnus-art.el (gnus-article-encrypt-body):
10589         * gnus-cus.el (gnus-score-customize):
10590         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10591         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10592
10593 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10594
10595         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10596         header by looking for magic "MII" at the beginnig.
10597
10598 2005-06-16  Miles Bader  <miles@gnu.org>
10599
10600         * gnus-xmas.el (gnus-xmas-group-startup-message):
10601         Use renamed gnus-splash face.
10602
10603         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10604         (assistant-field-face): New backward-compatibility alias for renamed
10605         face.
10606         (assistant-render-text): Use renamed assistant-field face.
10607
10608         * spam.el (spam): Remove "-face" suffix from face name.
10609         (spam-face): New backward-compatibility alias for renamed face.
10610         (spam-face, spam-initialize): Use renamed spam face.
10611
10612         * message.el (message-header-to, message-header-cc)
10613         (message-header-subject, message-header-newsgroups)
10614         (message-header-other, message-header-name)
10615         (message-header-xheader, message-separator, message-cited-text)
10616         (message-mml): Remove "-face" suffix from face names.
10617         (message-header-to-face, message-header-cc-face)
10618         (message-header-subject-face, message-header-newsgroups-face)
10619         (message-header-other-face, message-header-name-face)
10620         (message-header-xheader-face, message-separator-face)
10621         (message-cited-text-face, message-mml-face):
10622         New backward-compatibility aliases for renamed faces.
10623         (message-font-lock-keywords): Use renamed message faces.
10624
10625         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10626         (sieve-test-commands, sieve-tagged-arguments):
10627         Remove "-face" suffix from face names.
10628         (sieve-control-commands-face, sieve-action-commands-face)
10629         (sieve-test-commands-face, sieve-tagged-arguments-face):
10630         New backward-compatibility aliases for renamed faces.
10631         (sieve-control-commands-face, sieve-action-commands-face)
10632         (sieve-test-commands-face, sieve-tagged-arguments-face):
10633         Use renamed sieve faces.
10634
10635         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10636         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10637         (gnus-group-news-3-empty, gnus-group-news-4)
10638         (gnus-group-news-4-empty, gnus-group-news-5)
10639         (gnus-group-news-5-empty, gnus-group-news-6)
10640         (gnus-group-news-6-empty, gnus-group-news-low)
10641         (gnus-group-news-low-empty, gnus-group-mail-1)
10642         (gnus-group-mail-1-empty, gnus-group-mail-2)
10643         (gnus-group-mail-2-empty, gnus-group-mail-3)
10644         (gnus-group-mail-3-empty, gnus-group-mail-low)
10645         (gnus-group-mail-low-empty, gnus-summary-selected)
10646         (gnus-summary-cancelled, gnus-summary-high-ticked)
10647         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10648         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10649         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10650         (gnus-summary-low-undownloaded)
10651         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10652         (gnus-summary-low-unread, gnus-summary-normal-unread)
10653         (gnus-summary-high-read, gnus-summary-low-read)
10654         (gnus-summary-normal-read, gnus-splash):
10655         Remove "-face" suffix from face names.
10656         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10657         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10658         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10659         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10660         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10661         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10662         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10663         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10664         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10665         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10666         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10667         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10668         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10669         (gnus-summary-normal-ticked-face)
10670         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10671         (gnus-summary-normal-ancient-face)
10672         (gnus-summary-high-undownloaded-face)
10673         (gnus-summary-low-undownloaded-face)
10674         (gnus-summary-normal-undownloaded-face)
10675         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10676         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10677         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10678         (gnus-splash-face):
10679         New backward-compatibility aliases for renamed faces.
10680         (gnus-group-startup-message): Use renamed gnus faces.
10681
10682         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10683         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10684         (gnus-server-agent): Remove "-face" suffix from face names.
10685         (gnus-server-agent-face, gnus-server-opened-face)
10686         (gnus-server-closed-face, gnus-server-denied-face)
10687         (gnus-server-offline-face):
10688         New backward-compatibility aliases for renamed faces.
10689         (gnus-server-agent-face, gnus-server-opened-face)
10690         (gnus-server-closed-face, gnus-server-denied-face)
10691         (gnus-server-offline-face): Use renamed gnus faces.
10692
10693         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10694         Remove "-face" suffix from face names.
10695         (gnus-picon-xbm-face, gnus-picon-face):
10696         New backward-compatibility aliases for renamed faces.
10697
10698         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10699         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10700         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10701         (gnus-cite-11): Remove "-face" suffix from face names.
10702         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10703         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10704         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10705         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10706         New backward-compatibility aliases for renamed faces.
10707         (gnus-cite-attribution-face, gnus-cite-face-list)
10708         (gnus-article-boring-faces): Use renamed gnus faces.
10709
10710         * gnus-art.el (gnus-signature, gnus-header-from)
10711         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10712         (gnus-header-content): Remove "-face" suffix from face names.
10713         (gnus-signature-face, gnus-header-from-face)
10714         (gnus-header-subject-face, gnus-header-newsgroups-face)
10715         (gnus-header-name-face, gnus-header-content-face):
10716         New backward-compatibility aliases for renamed faces.
10717         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10718
10719         * gnus-sum.el (gnus-summary-selected-face)
10720         (gnus-summary-highlight): Use renamed gnus faces.
10721         * gnus-group.el (gnus-group-highlight): Likewise.
10722
10723 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10724
10725         * gnus-sieve.el (gnus-sieve-article-add-rule):
10726         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10727         * spam-stat.el (spam-stat-buffer-change-to-spam)
10728         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10729
10730         * message.el (message-is-yours-p):
10731         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10732
10733 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10734
10735         * mm-view.el (mm-inline-text): Withdraw the last change.
10736
10737 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10738
10739         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10740         executing enriched-decode.
10741
10742 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10743
10744         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
10745         charset of tar files.
10746
10747 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
10748
10749         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
10750
10751 2005-06-04  Lute Kamstra  <lute@gnu.org>
10752
10753         * nnfolder.el (nnfolder-read-folder): Make sure that undo
10754         information is never recorded.
10755
10756 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10757
10758         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
10759
10760 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10761
10762         * pop3.el (pop3-apop): Run md5 in the binary mode.
10763
10764         * starttls.el (starttls-set-process-query-on-exit-flag):
10765         Use eval-and-compile.
10766
10767 2005-05-31  Simon Josefsson  <jas@extundo.com>
10768
10769         * smime.el (smime-replace-in-string): Define.
10770         (smime-cert-by-ldap-1): Use it.
10771
10772 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10773
10774         * gnus-art.el (article-display-x-face): Replace
10775         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10776
10777         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
10778         set-process-query-on-exit-flag or process-kill-without-query.
10779
10780         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
10781         loop instead of replace-regexp.
10782
10783         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
10784         instead of process-kill-without-query if it is available.
10785
10786         * lpath.el: Fbind ldap-search-entries.
10787
10788         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
10789         instead of find-file-hooks if it is available.
10790
10791         * mml1991.el: Bind pgg-default-user-id when compiling.
10792
10793         * mml2015.el: Bind pgg-default-user-id when compiling.
10794
10795         * nndraft.el (nndraft-request-associate-buffer):
10796         Use write-contents-functions instead of write-contents-hooks if it is
10797         available.
10798
10799         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
10800         instead of find-file-hooks if it is available.
10801
10802         * nntp.el (nntp-open-connection): Replace
10803         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10804         (nntp-open-ssl-stream): Ditto.
10805         (nntp-open-tls-stream): Ditto.
10806
10807         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
10808         set-process-query-on-exit-flag or process-kill-without-query.
10809         (starttls-open-stream-gnutls): Use it instead of
10810         process-kill-without-query.
10811         (starttls-open-stream): Ditto.
10812
10813 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
10814
10815         * smime.el (smime-cert-by-ldap-1): Don't use
10816         replace-regexp-in-string.
10817
10818 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
10819
10820         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
10821
10822         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
10823         in PEM format.  Adjust to the XEmacs compability.
10824
10825 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
10826
10827         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
10828         by `string-to-number'.
10829         * gnus-agent.el (gnus-agent-regenerate-group)
10830         (gnus-agent-fetch-articles): Ditto.
10831         * gnus-art.el (gnus-button-fetch-group): Ditto.
10832         * gnus-cache.el (gnus-cache-generate-active)
10833         (gnus-cache-articles-in-group): Ditto.
10834         * gnus-group.el (gnus-group-set-current-level)
10835         (gnus-group-insert-group-line): Ditto.
10836         * gnus-score.el (gnus-score-set-expunge-below)
10837         (gnus-score-set-mark-below, gnus-summary-score-effect)
10838         (gnus-summary-score-entry): Ditto.
10839         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
10840         (gnus-soup-pack): Ditto.
10841         * gnus-spec.el (gnus-xmas-format): Ditto.
10842         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
10843         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
10844         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
10845         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
10846         * nndb.el (nndb-get-remote-expire-response): Ditto.
10847         * nndiary.el (nndiary-parse-schedule-value)
10848         (nndiary-string-to-number, nndiary-request-replace-article)
10849         (nndiary-request-article): Ditto.
10850         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
10851         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
10852         * nneething.el (nneething-make-head): Ditto.
10853         * nnfolder.el (nnfolder-request-article)
10854         (nnfolder-retrieve-headers): Ditto.
10855         * nnheader.el (nnheader-file-to-number): Ditto.
10856         * nnkiboze.el (nnkiboze-request-article): Ditto.
10857         * nnmail.el (nnmail-process-unix-mail-format)
10858         (nnmail-process-babyl-mail-format): Ditto.
10859         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
10860         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
10861         (nnmh-request-create-group, nnmh-request-list-1)
10862         (nnmh-request-group, nnmh-request-article): Ditto.
10863         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
10864         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
10865         * nnsoup.el (nnsoup-make-active): Ditto.
10866         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
10867         * nntp.el (nntp-find-group-and-number)
10868         (nntp-retrieve-headers-with-xover): Ditto.
10869         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
10870         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
10871         (pgg-format-key-identifier): Ditto.
10872         * pop3.el (pop3-last, pop3-stat): Ditto.
10873         * qp.el (quoted-printable-decode-region): Ditto.
10874
10875         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
10876         of concat.
10877
10878 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10879
10880         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
10881
10882         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
10883
10884         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
10885
10886         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
10887
10888         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
10889
10890         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
10891
10892         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
10893         (gnus-carpal-mode): Ditto.
10894
10895         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
10896         (gnus-browse-mode): Ditto.
10897
10898         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
10899
10900         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
10901
10902 2005-05-29  Richard M. Stallman  <rms@gnu.org>
10903
10904         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
10905
10906 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10907
10908         * gnus-util.el (gnus-run-mode-hooks): New function.
10909
10910         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
10911
10912         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
10913         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
10914
10915 2005-05-27  Lute Kamstra  <lute@gnu.org>
10916
10917         * dns-mode.el (dns-mode): Specify customization group.
10918
10919 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
10920
10921         * gnus-agent.el (gnus-agent-make-mode-line-string):
10922         Use mode-line-highlight as mouse-face.
10923
10924 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10925
10926         * canlock.el (canlock): Change the parent group to news.
10927
10928         * deuglify.el (gnus-outlook-deuglify): Add :group.
10929
10930         * dig.el (dig): Add :group.
10931
10932         * dns-mode.el (dns-mode): Add :group.
10933
10934         * encrypt.el (encrypt): Add :group.
10935
10936         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
10937         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
10938         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
10939         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
10940         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
10941
10942         * gnus-diary.el (gnus-diary): Add :group.
10943
10944         * gnus.el (gnus-group-news-1-face): Add :group.
10945         (gnus-group-news-1-empty-face): Ditto.
10946         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
10947         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
10948         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
10949         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
10950         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
10951         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
10952         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
10953         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
10954         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
10955         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
10956         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
10957         (gnus-summary-high-ticked-face): Ditto.
10958         (gnus-summary-low-ticked-face): Ditto.
10959         (gnus-summary-normal-ticked-face): Ditto.
10960         (gnus-summary-high-ancient-face): Ditto.
10961         (gnus-summary-low-ancient-face): Ditto.
10962         (gnus-summary-normal-ancient-face): Ditto.
10963         (gnus-summary-high-undownloaded-face): Ditto.
10964         (gnus-summary-low-undownloaded-face): Ditto.
10965         (gnus-summary-normal-undownloaded-face): Ditto.
10966         (gnus-summary-high-unread-face): Ditto.
10967         (gnus-summary-low-unread-face): Ditto.
10968         (gnus-summary-normal-unread-face): Ditto.
10969         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
10970         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
10971
10972         * hashcash.el (hashcash): New custom group.
10973         (hashcash-default-payment): Add :group.
10974         (hashcash-payment-alist): Ditto.
10975         (hashcash-default-accept-payment): Ditto.
10976         (hashcash-accept-resources): Ditto.
10977         (hashcash-path): Ditto.
10978         (hashcash-extra-generate-parameters): Ditto.
10979         (hashcash-double-spend-database): Ditto.
10980         (hashcash-in-news): Ditto.
10981
10982         * message.el (message-minibuffer-local-map): Add :group.
10983
10984         * netrc.el (netrc): Add :group.
10985
10986         * sieve-manage.el (sieve-manage-log): Add :group.
10987         (sieve-manage-default-user): Diito.
10988         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
10989         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
10990         (sieve-manage-authenticators): Ditto.
10991         (sieve-manage-authenticator-alist): Ditto.
10992         (sieve-manage-default-port): Ditto.
10993
10994         * sieve-mode.el (sieve-control-commands-face): Add :group.
10995         (sieve-action-commands-face): Ditto.
10996         (sieve-test-commands-face): Ditto.
10997         (sieve-tagged-arguments-face): Ditto.
10998
10999         * smime.el (smime): Add :group.
11000
11001         * spam-report.el (spam-report): Add :group.
11002
11003         * spam.el (spam, spam-face): Add :group.
11004
11005 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11006
11007         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11008         return \n.\n.\n at the end of articles.  Protect against that.
11009         (nntp-with-open-group): Allow debugging.
11010
11011         * nnheader.el (mail-header-set-extra): Make into a function
11012         because I just could't understand how to quote the list properly.
11013
11014         * dns.el (query-dns-cached): New function.
11015
11016 2005-05-26  Lute Kamstra  <lute@gnu.org>
11017
11018         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11019
11020 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11021
11022         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11023
11024         * gnus-art.el: Don't autoload mail-extract-address-components.
11025
11026         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11027         eval-and-compile to evaluate it.
11028
11029         * hashcash.el: Don't autoload executable-find.
11030
11031         * nndb.el: Don't declare the nndb back end two or more times; don't
11032         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11033
11034         * nntp.el: Autoload format-spec instead of format; use
11035         eval-and-compile to evaluate autoload forms.
11036
11037 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11038
11039         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11040
11041 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11042
11043         * gnus.el (gnus-version-number): Bump version.
11044
11045 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11046
11047         * gnus.el: No Gnus v0.3 is released.
11048
11049 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11050
11051         * lpath.el (featurep): Bind show-nonbreak-escape.
11052
11053 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11054
11055         * gnus-art.el (gnus-article-edit-part): Disable undo.
11056
11057 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11058
11059         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11060         gnus-article-date-lapsed-new-header is t if date timer is active;
11061         skip headers in which the original date value is empty.
11062         (gnus-article-save-original-date): Redefine it as a macro.
11063         (gnus-display-mime): Use it.
11064
11065 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11066
11067         * gnus-art.el (article-date-ut): Support converting date in
11068         forwarded parts as well.
11069         (gnus-article-save-original-date): New function.
11070         (gnus-display-mime): Use it.
11071
11072 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11073
11074         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11075         enclosure element of <item>.
11076
11077 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11078
11079         * message.el (message-kill-buffer-query): Renamed from
11080         `message-kill-buffer-query-if-modified'.  Added :version.
11081
11082 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11083
11084         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11085         window layout.
11086
11087 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11088
11089         * mml.el: Autoload dnd when compiling.
11090
11091 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11092
11093         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11094         x-dnd-*.
11095
11096 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11097
11098         * qp.el (quoted-printable-encode-region): Save excursion.
11099
11100 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11101
11102         * message.el (message-kill-buffer-query-if-modified): Add new variable
11103         so the user can kill a modified message buffer quickly.
11104         (message-kill-buffer): Use it.
11105
11106 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11107
11108         * lpath.el: Fbind display-time-event-handler; don't fbind
11109         string-to-multibyte.
11110
11111         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11112
11113 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11114
11115         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11116         contained in text because xml.el decodes entities) with LFs.
11117
11118 2005-04-11  Lute Kamstra  <lute@gnu.org>
11119
11120         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11121         differently.
11122
11123 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11124
11125         * mm-util.el (mm-detect-coding-region): Typo.
11126
11127 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11128
11129         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11130
11131 2005-04-06  Deepak Goel  <deego@gnufans.org>
11132
11133         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11134         user-function allow user modifications of the scores.
11135         (spam-stat-score-buffer-user): New function, to allow
11136         user-computed modifications to the score.
11137         (spam-stat-score-buffer-user-functions): List of additional
11138         scoring functions.
11139         (spam-stat-error-holder): Global temporary error holder.
11140         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11141         variable.
11142
11143 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11144
11145         * gnus-registry.el (gnus-registry-clean-empty-function)
11146         (gnus-registry-trim, gnus-registry-fetch-groups)
11147         (gnus-registry-delete-group): Groups that match
11148         `gnus-registry-ignored-groups' are removed from the registry
11149         entries, not just ignored for splitting.  This helps clean up the
11150         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11151         to get all the groups a message ID is in.
11152
11153         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11154         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11155         (spam-stat-score-buffer-user-functions): Add :number custom type.
11156
11157 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11158
11159         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11160         argument in XEmacs.
11161
11162         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11163         (nnrss-request-group): Decode group name first.
11164         (nnrss-request-article): Make a text/plain article if mml-to-mime
11165         failed.
11166         (nnrss-get-encoding): Return a compatible encoding according to
11167         nnrss-compatible-encoding-alist.
11168         (nnrss-find-el): Use consp instead of listp.
11169         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11170
11171 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11172
11173         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11174         which Emacs 20 doesn't support.
11175         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11176
11177 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11178
11179         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11180         silence the byte compiler inside the defun.
11181
11182         * gnus-demon.el (parse-time-string): Add autoload.
11183
11184         * gnus-delay.el (parse-time-string): Add autoload.
11185
11186         * gnus-art.el (parse-time-string): Add autoload.
11187
11188         * nnultimate.el (parse-time): Require for `parse-time-string'.
11189
11190 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11191
11192         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11193
11194         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11195
11196         * smime.el (smime-ldap-host-list): Add :version.
11197
11198 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11199
11200         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11201         pass it to `gnus-browse-read-group'.
11202         (gnus-browse-read-group): Add NUMBER argument and pass it to
11203         `gnus-group-read-ephemeral-group'.
11204
11205         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11206         argument and pass it to `gnus-group-read-group'.
11207
11208 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11209
11210         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11211         mm-xemacs-find-mime-charset-1 if we have the mule feature
11212         available at runtime.
11213
11214 2005-03-25  Werner Lemberg  <wl@gnu.org>
11215
11216         * nnmaildir.el: Replace `illegal' with `invalid'.
11217
11218 2005-03-23  Lute Kamstra  <lute@gnu.org>
11219
11220         * time-date.el: Add comment on time value formats.
11221         Don't require parse-time.
11222         (with-decoded-time-value): New macro.
11223         (encode-time-value): New function.
11224         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11225         (days-to-time): Return a valid time value when arg is huge.
11226         (time-since): Use time-subtract.
11227         (time-to-number-of-days): Use time-to-seconds.
11228
11229 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11230
11231         * gnus-start.el (gnus-display-time-event-handler):
11232         Check display-time-timer at runtime rather than only at load time
11233         in case display-time-mode is turned off in the mean time.
11234
11235 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11236
11237         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11238         used.
11239
11240         * nneething.el (nneething-map-file-directory): Derive from
11241         `gnus-directory'.
11242
11243         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11244         the To/Cc button.
11245
11246 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11247
11248         * nnmaildir.el (nnmaildir-request-accept-article):
11249         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11250
11251 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11252
11253         * gnus-async.el: Require timer-funcs at compile time when in
11254         XEmacs for `run-with-idle-timer'.
11255
11256 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11257
11258         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11259         autoloaded function.
11260
11261 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11262
11263         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11264
11265 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11266
11267         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11268
11269 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11270
11271         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11272         gnus-expert-user to default.
11273
11274 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11275
11276         * nnimap.el (nnimap-open-server): Ditto.
11277
11278         * imap.el (imap-authenticate): Fix typo.
11279
11280 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11281
11282         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11283         buffer (since IMAP server might return FETCH response out of
11284         order, and the nntp buffer must be sorted).
11285
11286 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11287
11288         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11289         comparison on string.
11290
11291         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11292         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11293         (gnus-agent-summary-fetch-series): Modified to protect against
11294         gnus-agent-summary-fetch-group clearing processable flags.
11295         (gnus-agent-synchronize-group-flags): Update live group buffer as
11296         synchronization may occur due to the user toggle the plugged
11297         status.
11298         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11299         successfully downloaded.
11300         (gnus-agent-expire-group-1): Avoid using markers when the overview
11301         is in ascending order; greatly improves performance.
11302         (gnus-agent-regenerate-group): Use
11303         gnus-agent-synchronize-group-flags to reset read status in both
11304         gnus and server.
11305         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11306
11307 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11308
11309         * message.el: Don't autoload former message-utils variables.
11310         (message-strip-subject-trailing-was): Change doc string.
11311
11312         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11313         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11314         (nnweb-google-search): Add "hl=en" here.
11315         (nnweb-google-parse-1, nnweb-google-create-mapping):
11316         Don't hardcode URL.
11317
11318 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11319
11320         * message.el (message-get-reply-headers, message-followup):
11321         Mention related variables `message-use-followup-to' and
11322         `message-use-mail-followup-to', in the information buffer.
11323
11324         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11325         of broken groups(-beta).google.com.
11326
11327 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11328
11329         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11330         parameter to invoked gnus-request-move-article; remove the
11331         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11332         all at once instead of once per article.
11333         (gnus-summary-remove-process-mark): Accept a list of articles as
11334         well as a single article for processing.
11335
11336         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11337         parameter.
11338
11339         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11340
11341         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11342
11343         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11344         parameter.
11345
11346         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11347         parameter.
11348
11349         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11350         parameter and remove the gnus-sum-hint-move-is-internal variable.
11351
11352         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11353         parameter.
11354
11355         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11356         parameter.
11357
11358         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11359         parameter.
11360
11361         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11362
11363         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11364         parameter.
11365
11366         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11367         parameter.
11368
11369 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11370
11371         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11372         a more conservative way.
11373
11374 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11375
11376         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11377         buffer, so it moves the window's cursor.
11378
11379 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11380
11381         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11382         `mm-dissect-multipart' and receive the from field as an (optional)
11383         argument from `mm-dissect-multipart'.
11384         (mm-dissect-multipart): Receive the from field as an argument and
11385         pass it on when we call `mm-dissect-buffer' on MIME parts.
11386         Fixes verification/decryption of signed/encrypted MIME parts.
11387
11388 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11389
11390         * gnus-sum.el (gnus-summary-move-article): Set
11391         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11392         whatever it calls (right now, only nnimap-request-move article
11393         respects it).
11394
11395         * nnimap.el (nnimap-request-move-article): When
11396         gnus-sum-hint-move-is-internal is set, don't do the extra
11397         nnimap-request-article.
11398
11399 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11400
11401         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11402
11403         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11404         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11405
11406         * gnus-sum.el (gnus-summary-caesar-message):
11407         Apply `gnus-treat-article' after rotation.
11408
11409         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11410         doc string.
11411
11412 2005-02-22  Simon Josefsson  <jas@extundo.com>
11413
11414         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11415         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11416         <arne@arnested.dk>.
11417         (encrypt): Add password-cache and password-cache-expiry as group
11418         members.
11419
11420 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11421
11422         * smime.el (smime-ldap-host-list): Doc fix.
11423         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11424         cache) password.
11425         (smime-sign-region): Use it.
11426         (smime-decrypt-region): Use it.
11427         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11428         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11429         fails.
11430         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11431         certificate from DER to PEM format rather than calling openssl.
11432
11433         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11434
11435         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11436         for signing/encryption.
11437
11438         * mml.el (mml-parse-1): Use them.
11439
11440 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11441
11442         * nnrss.el (nnrss-verbose): Removed.
11443         (nnrss-request-group): Use `nnheader-message' instead.
11444
11445 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11446
11447         * nnrss.el (nnrss-verbose): New variable.
11448         (nnrss-request-group): Make it say nnrss is requesting a group.
11449
11450 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11451
11452         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11453         Handle news URL with given port correctly.
11454
11455 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11456
11457         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11458         containing special characters.
11459
11460         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11461
11462         * mml.el (mime-to-mml): Ditto.
11463
11464         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11465         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11466         (rfc2047-decode-region): Quote decoded words containing special
11467         characters when rfc2047-quote-decoded-words-containing-tspecials
11468         is non-nil.
11469
11470 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11471
11472         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11473
11474         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11475
11476 2005-02-15  Simon Josefsson  <jas@extundo.com>
11477
11478         * nnimap.el (nnimap-debug): Doc fix.
11479
11480         * imap.el (imap-debug): Doc fix.
11481
11482 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11483
11484         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11485
11486 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11487
11488         * gnus.el (spam-contents): Improve docs for spam-contents
11489         parameter in its variable incarnation.
11490
11491 2005-02-14  Simon Josefsson  <jas@extundo.com>
11492
11493         * smime-ldap.el: Use require instead of load-library for ldap.
11494         (smime-ldap-search): Indent.
11495         (smime-ldap-search-internal): Shorten line.
11496
11497         * smime.el (smime-cert-by-dns): Add doc-string.
11498         (smime-cert-by-ldap-1): Indent.
11499
11500         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11501         mml-smime-get-dns-ldap.
11502         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11503
11504 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11505
11506         * smime.el: Require smime-ldap.
11507         (smime-ldap-host-list): New variable.
11508         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11509
11510         * mml-smime.el (mml-smime-encrypt-query): New function.
11511         (mml-smime-encrypt-query): Use it.
11512
11513         * smime-ldap.el: New file.
11514
11515 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11516
11517         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11518
11519 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11520
11521         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11522         argument in doc string.  Make query for type more clear.
11523
11524 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11525
11526         * gnus.el (gnus-group-startup-message): Search for gnus images in
11527         etc/images/gnus.
11528         * mm-util.el (mm-image-load-path): Likewise.
11529         * smiley.el (smiley-data-directory): Search for smilies in
11530         etc/images/smilies.
11531
11532 2005-02-09  Kim F. Storm  <storm@cua.dk>
11533
11534         Change Emacs release version from 21.4 to 22.1 throughout.
11535         Change Emacs development version from 21.3.50 to 22.0.50.
11536
11537 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11538
11539         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11540
11541         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11542         non-Mule XEmacs as well.
11543         (mm-decompress-buffer): Signal an error intentionally if it does
11544         not decompress compressed data because auto-compression-mode is
11545         disabled.
11546
11547 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11548
11549         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11550         an ID in the registry even if it has no groups.
11551
11552 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11553
11554         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11555         merge it into mm-decompress-buffer.
11556         (gnus-mime-copy-part): Use the MIME part charset, the value which
11557         a user specified or gnus-newsgroup-charset for decoding, like
11558         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11559         save-buffer what was used.  Suggested by Kevin Ryde
11560         <user42@zip.com.au>.
11561         (gnus-mime-inline-part): Allow the name parameter as well as the
11562         filename parameter; force decompressing of compressed data; always
11563         display contents being not decoded as unibyte.
11564
11565         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11566         as well as the filename parameter.
11567
11568         * mm-util.el (mm-decompress-buffer): Merge
11569         gnus-mime-jka-compr-maybe-uncompress.
11570         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11571         of compressed data.
11572
11573 2005-02-08  Simon Josefsson  <jas@extundo.com>
11574
11575         * imap.el (imap-log): Doc fix.
11576
11577 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11578
11579         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11580         the coding cookies; decompress compressed parts.
11581
11582         * mml.el (mml-generate-mime-1): Add the charset parameter according
11583         to the value which a user specified manually or the coding cookie.
11584
11585         * mm-util.el (mm-string-to-multibyte): New function.
11586         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11587         (mm-coding-system-to-mime-charset): New function.
11588         (mm-decompress-buffer): New function.
11589         (mm-find-buffer-file-coding-system): New function.
11590
11591         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11592         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11593         parts.
11594
11595 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11596
11597         * mm-view.el (mm-display-inline-fontify): Decode a part according
11598         to the charset parameter.
11599
11600 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11601
11602         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11603         prefix arg is neither nil nor a number, as info specifies.
11604
11605 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11606
11607         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11608         timestamps.
11609
11610 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11611
11612         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11613         groups error checking and notify user.
11614
11615 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11616
11617         * message.el (message-send-mail-function): Check existence of
11618         sendmail-program first before using default value
11619         `message-send-mail-with-sendmail'.  Otherwise use more generic
11620         `smtpmail-send-it'.
11621
11622 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11623
11624         * nntp.el (nntp-request-update-info): Always return nil.
11625
11626 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11627
11628         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11629
11630 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11631
11632         * message.el (message-beginning-of-line): Change the behavior when
11633         invoked between BOL and : so that it first moves backward.
11634
11635 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11636
11637         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11638         article buffer when editing of the article is discarded.
11639         (gnus-article-prepare): Revert.
11640
11641 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11642
11643         * gnus-art.el (gnus-article-prepare):
11644         Remove message-strip-forbidden-properties from the local hook.
11645
11646 2005-01-27  Simon Josefsson  <jas@extundo.com>
11647
11648         * password.el (password-cache-add): Only start one timer per key.
11649         Reported by Derek Atkins <warlord@MIT.EDU>.
11650
11651 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11652
11653         * run-at-time.el: Removed.  It is no longer needed as
11654         timer-funcs.el in the xemacs-base package has a working version of
11655         `run-at-time'.
11656
11657         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11658
11659         * password.el: Require timer-funcs instead of run-at-time in
11660         XEmacs.
11661         Remove `password-run-at-time' macro.
11662         (password-cache-add): Use `run-at-time' instead of
11663         `password-run-at-time'.
11664
11665         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11666         Remove `nnheader-cancel-function-timers' alias,
11667         `cancel-function-timers' exists in XEmacs in timer-funcs.
11668
11669         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11670         for `run-with-idle-timer'.
11671
11672         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11673         for `run-at-time'.
11674
11675         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11676         for `with-timeout'.
11677
11678         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11679         the same as for XEmacs 21.4.
11680         No need to ignore `run-with-idle-timer', this function exists in
11681         XEmacs now in timer-funcs.el in the xemacs-base package.
11682         (dgnushack-compile): No need to delete
11683         run-at-time.el from the list of files to compile because it
11684         doesn't exist anymore.
11685
11686 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11687
11688         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11689         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11690
11691 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11692
11693         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11694         sensitively.
11695
11696 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11697
11698         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11699
11700 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11701
11702         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11703         which will be inserted according to the multibyteness of a buffer
11704         rather than the type of contents.  Suggested by ARISAWA Akihiro
11705         <ari@mbf.ocn.ne.jp>.
11706
11707         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11708         of string which old xml.el may return rather than a string.
11709
11710 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11711
11712         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11713
11714 2005-01-16  Simon Josefsson  <jas@extundo.com>
11715
11716         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11717         idn/idna.el isn't available.
11718         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11719         <michael@waxrat.com>.
11720
11721         * hashcash.el: Remove non-FSF copyright header.
11722
11723         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11724         (hashcash-generate-payment): Use it.
11725         (hashcash-generate-payment-async): Use it.
11726
11727 2005-01-15  Simon Josefsson  <jas@extundo.com>
11728
11729         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11730         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11731
11732         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11733         gnus-summary-idna-message.
11734         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11735         (gnus-summary-idna-message): New function.
11736
11737 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11738
11739         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11740         gnus-novice-user.
11741
11742 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11743
11744         * nnrss.el (nnrss-request-delete-group): Delete entries in
11745         nnrss-group-alist as well.
11746         (nnrss-save-server-data): Insert newline.
11747
11748 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
11749
11750         * gnus.el (gnus-user-agent): Use list of symbols instead of
11751         symbols.  Display full version number for (S)XEmacs.  Optionally
11752         display (S)XEmacs codename.
11753
11754         * gnus-util.el (gnus-emacs-version): Update for new
11755         `gnus-user-agent'.
11756
11757         * gnus-msg.el (gnus-extended-version): Make it possible to omit
11758         Gnus version.
11759
11760 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
11761
11762         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
11763         which is unreadable in some setups.
11764
11765 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11766
11767         * gnus-spec.el (gnus-update-format-specifications): Flush the
11768         group format spec cache if it doesn't support decoded group names.
11769
11770 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11771
11772         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
11773         Allow to apply decay on score files matching a regexp.
11774
11775 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11776
11777         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
11778         compatibility in %g and %c.
11779
11780 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11781
11782         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
11783         name for only %g and %c.
11784         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
11785         of gnus-tmp-group to decoded group name.
11786         (gnus-group-make-rss-group): Exclude `/'s from group names.
11787
11788 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11789
11790         * nnrss.el (nnrss-get-encoding): Fix regexp.
11791
11792 2004-12-27  Simon Josefsson  <jas@extundo.com>
11793
11794         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
11795         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
11796         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
11797
11798 2004-12-17  Kim F. Storm  <storm@cua.dk>
11799
11800         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
11801
11802         * gnus-sum.el (gnus-summary-mode-map): Likewise.
11803
11804 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11805
11806         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
11807
11808 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11809
11810         * nnrss.el: Require rfc2047 and mml.
11811         (nnrss-file-coding-system): New variable.
11812         (nnrss-format-string): Redefine it as an inline function.
11813         (nnrss-decode-group-name): New function.
11814         (nnrss-string-as-multibyte): Remove.
11815         (nnrss-retrieve-headers): Decode group name; don't use
11816         nnrss-format-string.
11817         (nnrss-request-group): Decode group name.
11818         (nnrss-request-article): Decode group name; allow a Message-ID as
11819         well as an article number; don't use nnrss-format-string; encode a
11820         Message-ID string which may contain non-ASCII characters; use
11821         mml-to-mime to compose a MIME article.
11822         (nnrss-request-expire-articles): Decode group name.
11823         (nnrss-request-delete-group): Decode group name.
11824         (nnrss-fetch): Clarify error message.
11825         (nnrss-read-server-data): Use insert-file-contents instead of load;
11826         bind file-name-coding-system; use multibyte buffer.
11827         (nnrss-save-server-data): Bind coding-system-for-write to the
11828         value of nnrss-file-coding-system; bind file-name-coding-system;
11829         add coding cookie.
11830         (nnrss-read-group-data): Use insert-file-contents instead of load;
11831         bind file-name-coding-system; use multibyte buffer.
11832         (nnrss-save-group-data): Bind coding-system-for-write to the
11833         value of nnrss-file-coding-system; bind file-name-coding-system.
11834         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
11835         make it work with non-ASCII text.
11836         (nnrss-find-el): Make it work with old xml.el as well.
11837
11838 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
11839
11840         * nnrss.el (nnrss-get-encoding): New function.
11841         (nnrss-fetch): Use unibyte buffer initially; bind
11842         coding-system-for-read while performing mm-url-insert; remove ^Ms;
11843         decode contents according to the encoding attribute.
11844         (nnrss-save-group-data): Add coding cookie.
11845         (nnrss-mime-encode-string): New function.
11846         (nnrss-check-group): Use it to encode subject and author.
11847
11848 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
11849
11850         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
11851         imaginary variable.
11852
11853 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11854
11855         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
11856         correctly even if there are wide characters.
11857
11858 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
11859
11860         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
11861         downcased symbol names; make a new cache instead of reusing
11862         bbdb-hashtable.
11863
11864 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11865
11866         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
11867         concatenating segments rather than before concatenating them.
11868         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11869
11870         * message.el (message-get-reply-headers): Bind `extra'.
11871
11872 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11873
11874         * message.el (message-extra-wide-headers): New variable.
11875         (message-get-reply-headers): Use it.
11876
11877 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11878
11879         * gnus-agent.el (gnus-agent-group-path): Decode group name.
11880         (gnus-agent-group-pathname): Ditto.
11881
11882         * gnus-cache.el (gnus-cache-file-name): Decode group name.
11883
11884         * gnus-group.el (gnus-group-make-group): Decode group name.
11885         (gnus-group-make-rss-group): Register the group data after opening
11886         the nnrss group.
11887
11888 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
11889
11890         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
11891         by expiry now get marked as read.
11892
11893 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11894
11895         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
11896
11897 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
11898
11899         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
11900         unify Latin characters in XEmacs.
11901         (mm-find-mime-charset-region): Use it.
11902
11903 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11904
11905         * gnus-util.el (gnus-delete-directory): New function.
11906
11907         * gnus-agent.el (gnus-agent-delete-group): Use it.
11908
11909         * gnus-cache.el (gnus-cache-delete-group): Use it.
11910
11911 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11912
11913         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
11914         names.
11915
11916 2004-12-16  Simon Josefsson  <jas@extundo.com>
11917
11918         * hashcash.el (hashcash-payment-alist): Fix custom :type.
11919
11920 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11921
11922         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
11923
11924         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
11925         (gnus-group-set-current-level): Decode group name.
11926
11927 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
11928
11929         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
11930         failed.
11931
11932 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11933
11934         * gnus-group.el (gnus-group-delete-group): Decode group name.
11935         (gnus-group-make-rss-group): Encode group name.
11936         (gnus-group-catchup-current): Decode group name.
11937         (gnus-group-kill-group): Decode group name.
11938
11939 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11940
11941         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
11942
11943 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11944
11945         * gnus-group.el (gnus-group-make-rss-group):
11946         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
11947
11948         * gnus-start.el (gnus-setup-news): Honor user's setting to
11949         gnus-message-archive-method.  Suggested by Lute Kamstra
11950         <lute@gnu.org>.
11951
11952 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
11953
11954         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
11955         global counterparts of the buffer-local variables.
11956
11957 2004-11-16  Romain Francoise  <romain@orebokech.com>
11958
11959         * gnus-sum.el (gnus-summary-exit): Don't clear the global
11960         counterparts of the buffer-local variables.
11961
11962 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
11963
11964         * message.el (message-forbidden-properties): Fixed typo in doc
11965         string.
11966
11967 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
11968
11969         * gnus-util.el (gnus-replace-in-string): Added doc string.
11970
11971         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
11972         to avoid problems when splitting mails with many recipients.
11973
11974 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11975
11976         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
11977         pop-to-buffer, covered by the subsequent gnus-configure-windows.
11978
11979 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
11980
11981         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
11982         if there is no hashtable in memory or file modification time is
11983         newer than cached timestamp.
11984
11985 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
11986
11987         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
11988         not-matching option.
11989
11990 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
11991
11992         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
11993         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
11994         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
11995         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
11996         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
11997         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
11998
11999 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12000
12001         * message.el (message-forward-make-body-mml): Remove headers
12002         according to message-forward-ignored-headers if a message is decoded.
12003
12004 2004-12-02  Romain Francoise  <romain@orebokech.com>
12005
12006         * message.el (message-forward-make-body-plain): Always remove
12007         headers according to message-forward-ignored-headers.
12008
12009 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12010
12011         * spam.el (spam-summary-prepare-exit): Remove the
12012         gnus-summary-limit pop for now, it has problems with ham marks for
12013         me.
12014
12015 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12016
12017         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12018         correctly.
12019
12020 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12021
12022         * format-spec.el (format-spec): Message the char.
12023
12024 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12025
12026         * gnus-art.el (gnus-split-methods): Reformat comments.
12027
12028         * spam.el (spam-summary-prepare-exit): Remove article limits
12029         before exiting the summary buffer.
12030
12031 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12032
12033         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12034         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12035
12036         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12037         order to silence the byte compiler.
12038
12039         * spam.el: Fix the way to silence the byte compiler, which
12040         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12041         bbdb-search-simple, spam-BBDB-register-routine,
12042         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12043         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12044         spam-stat-buffer-is-spam, spam-stat-load,
12045         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12046         spam-stat-save and spam-stat-split-fancy.
12047
12048 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12049
12050         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12051         which may confuse users.
12052         (canlock-password-for-verify): Ditto.
12053
12054         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12055
12056         * gnus-art.el (gnus-emphasis-alist): Ditto.
12057
12058         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12059
12060         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12061
12062         * gnus-start.el (gnus-save-killed-list): Ditto.
12063
12064         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12065         (gnus-sum-thread-tree-root): Ditto.
12066         (gnus-sum-thread-tree-false-root): Ditto.
12067         (gnus-sum-thread-tree-single-indent): Ditto.
12068
12069         * message.el (message-courtesy-message): Ditto.
12070         (message-archive-note): Ditto.
12071         (message-subscribed-address-file): Ditto.
12072         (message-user-fqdn): Ditto.
12073
12074         * spam-report.el (spam-report-gmane-regex): Ditto.
12075
12076         * spam.el (spam-blackhole-good-server-regex): Ditto.
12077
12078 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12079
12080         * mml.el (mml-preview): Widen the message buffer before copying
12081         the contents to the preview buffer; sort headers before previewing.
12082
12083         * message.el (message-hidden-headers): Fix the way to avoid a bug
12084         in the `repeat' widget in Emacs 21.3 or earlier.
12085
12086 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12087
12088         * message.el (message-hidden-headers): Default to "^References:".
12089         Improve customization type.  Suggested by Reiner Steib
12090         <Reiner.Steib@gmx.de>.
12091
12092 2004-11-25  Romain Francoise  <romain@orebokech.com>
12093
12094         * message.el (message-strip-forbidden-properties): Remove check for
12095         obsolete `message-hidden' text property, hidden headers are not
12096         accessible in the buffer anymore.
12097
12098 2004-11-22  Romain Francoise  <romain@orebokech.com>
12099
12100         * message.el (message-header-format-alist): Add `From' in list
12101         so that it can be sorted.
12102         (message-fix-before-sending): Widen and sort headers before
12103         sending.
12104         (message-hide-headers): Use narrowing to hide headers by moving
12105         them to the top of the buffer and narrowing to the region
12106         underneath.
12107
12108 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12109
12110         * message.el (message-strip-forbidden-properties): Bind
12111         buffer-read-only (etc) to nil.
12112
12113 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12114
12115         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12116         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12117
12118 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12119
12120         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12121
12122 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12123
12124         * dns.el (query-dns): Use sit-for to time instead of
12125         accept-process-output, since that doesn't seem to work on udp
12126         sockets.
12127
12128 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12129
12130         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12131
12132 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12133
12134         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12135         doc string.  Improve doc string.
12136
12137 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12138
12139         * nntp.el (nntp-request-update-info): Return nil if
12140         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12141         may not call gnus-activate-group which uselessly issues the GROUP
12142         commands for all nntp groups and wastes time.  Reported by Romain
12143         Francoise <romain@orebokech.com>.
12144
12145         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12146
12147 2004-11-15  Simon Josefsson  <jas@extundo.com>
12148
12149         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12150         headers separately.
12151         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12152         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12153
12154 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12155
12156         * gnus-start.el (gnus-convert-old-newsrc):
12157         Assign legacy-gnus-agent to 5.10.7.
12158
12159 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12160
12161         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12162         start of the lines.
12163
12164 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12165
12166         * hashcash.el (hashcash-default-payment): Change default to 20.
12167         (hashcash-default-accept-payment): Change default to 20.
12168         (hashcash-process-alist): New variable.
12169         (hashcash-generate-payment-async): Add.
12170         (hashcash-already-paid-p): Add.
12171         (hashcash-insert-payment): Don't generate payments twice.
12172         (hashcash-insert-payment-async): Add.
12173         (hashcash-insert-payment-async-2): Add.
12174         (hashcash-cancel-async): Add.
12175         (hashcash-wait-async): Add.
12176         (hashcash-processes-running-p): Add.
12177         (hashcash-wait-or-cancel): Add.
12178         (mail-add-payment): New optional argument.  Conditionally start
12179         asynchronous calculation.
12180         (mail-add-payment-async): Add.
12181
12182         * message.el (message-send-mail): Wait for asynchronous hashcash
12183         results.  Don't clobber existing X-Hashcash headers.
12184         (message-setup-1): Call mail-add-payment-async when
12185         message-generate-hashcash is non-nil.
12186
12187 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12188
12189         * message.el (message-use-alternative-email-as-from): Examine the
12190         From header as well; use message-make-from in order to include a
12191         user's full name.
12192
12193 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12194
12195         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12196         default; improve customization type.
12197         (gnus-emphasis-custom-with-format): New macro.
12198         (gnus-emphasis-custom-value-to-external): New function.
12199         (gnus-emphasis-custom-value-to-internal): New function.
12200
12201 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12202
12203         * dns.el (query-dns): Resolve reverse addresses.
12204
12205 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12206
12207         * gnus-group.el (gnus-group-get-new-news): Use it.
12208
12209         * gnus-start.el (gnus-check-reasonable-setup): New function.
12210
12211 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12212
12213         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12214         "Args out of range" error.  Reported by Arnaud Giersch
12215         <arnaud.giersch@free.fr>.
12216
12217 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12218
12219         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12220
12221 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12222
12223         * spam.el (spam group): Add :version.
12224
12225         * pgg-def.el (pgg group): Add :version.
12226
12227 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12228
12229         * gnus-art.el (gnus-article-edit-article): Don't associate the
12230         article buffer with a draft file.  This is a temporary measure
12231         against the 2004-08-22 change to gnus-article-edit-mode.
12232
12233 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12234
12235         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12236         (html2text-format-tags): Remove unused variable `attr'.
12237
12238 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12239
12240         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12241
12242         * tls.el (tls-process-connection-type, tls-success)
12243         (tls-certtool-program): Add :version.
12244
12245         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12246         (starttls-extra-arguments, starttls-process-connection-type)
12247         (starttls-connect, starttls-failure, starttls-success): Add :version.
12248
12249         * spam-stat.el (spam-stat): Add :version.
12250
12251         * sieve.el (sieve): Add :version.
12252
12253         * sha1.el (sha1): Add :version.
12254         (sha1-use-external): Remove redundant version.
12255
12256         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12257         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12258         (nnmail-split-fancy-match-partial-words)
12259         (nnmail-split-lowercase-expanded): Add :version.
12260
12261         * nndiary.el (nndiary): Add :version.
12262
12263         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12264
12265         * mml-sec.el (mml-default-sign-method)
12266         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12267         Add :version.
12268
12269         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12270
12271         * mm-url.el (mm-url-use-external, mm-url-program)
12272         (mm-url-arguments): Add :version.
12273
12274         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12275         (mm-attachment-file-modes, mm-decrypt-option)
12276         (mm-w3m-safe-url-regexp): Add :version.
12277
12278         * message.el (message-cite-prefix-regexp)
12279         (message-sendmail-envelope-from, message-minibuffer-local-map)
12280         (message-user-fqdn, message-completion-alist): Add :version.
12281
12282         * gnus-win.el (gnus-configure-windows-hook)
12283         (gnus-use-frames-on-any-display): Add :version.
12284
12285         * gnus-art.el (gnus-article-address-banner-alist)
12286         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12287         (gnus-treat-from-picon, gnus-treat-mail-picon)
12288         (gnus-treat-x-pgp-sig): Add :version.
12289
12290         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12291         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12292         (gnus-summary-article-delete-hook)
12293         (gnus-summary-display-while-building): Add :version.
12294
12295         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12296         (gnus-get-top-new-news-hook): Add :version.
12297
12298         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12299         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12300
12301         * gnus-registry.el (gnus-registry): Add :version.
12302
12303         * gnus-spec.el (gnus-use-correct-string-widths)
12304         (gnus-make-format-preserve-properties): Add :version.
12305
12306         * gnus.el (gnus-group-charter-alist)
12307         (gnus-group-fetch-control-use-browse-url)
12308         (gnus-install-group-spam-parameters): Add :version.
12309
12310         * gnus-diary.el (gnus-diary): Add :version.
12311
12312         * gnus-delay.el (gnus-delay): Add :version.
12313
12314         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12315         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12316         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12317         Add :version.
12318
12319         * gnus-agent.el (gnus-agent-max-fetch-size)
12320         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12321         (gnus-agent-prompt-send-queue): Add :version.
12322
12323         * deuglify.el (gnus-outlook-deuglify): Add :version.
12324
12325         * html2text.el: Beautify code.  Improve doc strings.  Some
12326         checkdoc cleanup.
12327         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12328
12329 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12330
12331         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12332
12333 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12334
12335         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12336         when package is loaded.
12337
12338         * spam.el (spam-summary-score-preferred-header): Add global preference
12339         for people who want to override the default SpamAssassin over
12340         Bogofilter preference (when both are set).
12341         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12342         (spam-user-format-function-S): Check
12343         spam-summary-score-preferred-header.
12344         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12345         (spam-user-format-function-S): Format the score correctly.
12346
12347 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12348
12349         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12350         signature file.  Suggested by Manoj Srivastava
12351         <srivasta@golden-gryphon.com>.
12352
12353         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12354         iso-2022-jp even in the Japanese language environment.
12355         Suggested by Jason Rumney <jasonr@gnu.org>.
12356
12357 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12358
12359         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12360         use the same characters as the dummy marks; make it free from
12361         getting affected by the language environment.
12362         (gnus-summary-read-group-1): Update mark positions only when the
12363         format spec is updated.
12364
12365         * gnus-spec.el (gnus-update-format-specifications): Return a list
12366         of updated types.
12367
12368 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12369
12370         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12371         of boundp to check if display-warning is available.
12372
12373 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12374
12375         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12376
12377 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12378
12379         * nnspool.el (nnspool-spool-directory): Use news-path if the
12380         news-directory variable is not bound.
12381
12382         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12383         function instead of display-warning if it is not available.
12384
12385 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12386
12387         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12388         v5-10: Use `point-at-bol'.
12389
12390 2004-10-26  Simon Josefsson  <jas@extundo.com>
12391
12392         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12393         <chenggao@gmail.com>.
12394
12395 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12396
12397         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12398         instead.
12399
12400 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12401
12402         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12403         to remove a server from the nnimap-server-buffer-alist.
12404         (nnimap-open-connection, nnimap-close-server): Use it.
12405
12406         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12407
12408 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12409
12410         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12411         running the major-mode function.
12412
12413 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12414
12415         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12416         dummy marks in the right way.
12417
12418 2004-10-18  David Edmondson  <dme@dme.org>
12419
12420         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12421         excessively.
12422
12423 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12424
12425         * gnus-util.el (gnus-split-references): Accept a nil references
12426         string and go on blissfully.
12427
12428         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12429         cases where the references string is non-nil but has no references.
12430
12431         * encrypt.el: Add autoload tags.
12432
12433         * spam.el (spam-resolve-registrations-routine): Remove article
12434         from unregistration list too.  Reported by David Hanak
12435         <dhanak@isis.vanderbilt.edu>
12436
12437 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12438
12439         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12440         nil.  Changed custom type.
12441
12442 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12443
12444         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12445
12446         * gnus-sum.el (gnus-summary-move-article): Use it.
12447
12448 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12449
12450         * encrypt.el: Add autoload cookies.
12451
12452         * spam.el (spam-backend-article-list-property)
12453         (spam-backend-get-article-todo-list)
12454         (spam-backend-put-article-todo-list)
12455         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12456         Resolve registrations separately.
12457         (spam-register-routine): Format comments.
12458         (spam-unregister-routine, spam-register-routine): Always call with
12459         specific-articles, no default list.
12460         (spam-summary-prepare-exit): Use the spam-classifications function.
12461
12462         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12463         gnus-encrypt.el.
12464
12465         * encrypt.el: Copied from gnus-encrypt.el.
12466
12467         * gnus-encrypt.el: Commented that it's obsolete.
12468
12469 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12470
12471         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12472         (gnus-score-save): Use it.
12473
12474         * message.el (message-bury): Use `window-dedicated-p'.
12475
12476 2004-10-15  Simon Josefsson  <jas@extundo.com>
12477
12478         * pop3.el (top-level): Don't require nnheader.
12479         (pop3-read-timeout): Add.
12480         (pop3-accept-process-output): Add.
12481         (pop3-read-response, pop3-retr): Use it.
12482
12483 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12484
12485         * spam.el (spam-register-routine): Move comment.
12486         (spam-verify-bogofilter): Use 'unknown for the initial
12487         spam-bogofilter-valid state, not 'never.
12488
12489         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12490         for netrc-machine.
12491
12492         * nnimap.el (nnimap-open-connection): Use
12493         netrc-machine-user-or-password.
12494
12495 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12496
12497         * gnus-registry.el (gnus-registry-unload-hook):
12498         Set as a variable with add-hook.
12499
12500         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12501         of news-path.
12502
12503         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12504
12505         * spam.el: Delete duplicate `provide'.
12506         (spam-unload-hook): Set as a variable with add-hook.
12507
12508 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12509
12510         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12511         in the doc string.
12512
12513         * message.el (message-ignored-news-headers)
12514         (message-ignored-supersedes-headers)
12515         (message-ignored-resent-headers)
12516         (message-forward-ignored-headers): Improve custom type.
12517
12518 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12519
12520         * message.el (message-tokenize-header): Fix 2004-09-06 change
12521         which used point-min in the wrong place.
12522
12523 2004-10-12  Simon Josefsson  <jas@extundo.com>
12524
12525         * tls.el (tls-certtool-program): New variable.
12526         (tls-certificate-information): New function, based on
12527         ssl-certificate-information.
12528
12529 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12530
12531         * compface.el: Move the version of ELisp-based uncompface program
12532         to the contrib directory because of the copyright problem.
12533
12534 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12535
12536         * message.el (message-kill-buffer): Raise the current frame.
12537
12538 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12539
12540         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12541
12542         * gnus.el (message-y-or-n-p): Autoload.
12543
12544         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12545         (pop3-password-required, pop3-authentication-scheme)
12546         (pop3-leave-mail-on-server): Made customizable.
12547         (pop3): New custom group.
12548         (pop3-retr): Remove `sleep-for' statements.
12549         Suggested by Dave Love <fx@gnu.org>.
12550
12551         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12552         Windows/DOS.
12553
12554         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12555         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12556         Dave Love <fx@gnu.org>.
12557
12558         * mml.el (mml-minibuffer-read-disposition): Require match.
12559         Suggested by Dave Love <fx@gnu.org>.
12560
12561 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12562
12563         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12564         doc string.
12565
12566 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12567
12568         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12569
12570 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12571
12572         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12573         instead of calling `mm-insert-inline', to decode text/* parts
12574         before displaying them.
12575
12576 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12577
12578         * mm-uu.el (mm-uu-text-plain-type): New variable.
12579         (mm-uu-pgp-signed-extract-1): Use it.
12580         (mm-uu-pgp-encrypted-extract-1): Use it.
12581         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12582         bind mm-uu-text-plain-type with that value.
12583         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12584         mm-uu-dissect.
12585
12586 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12587
12588         * gnus-group.el (gnus-update-group-mark-positions):
12589         * gnus-sum.el (gnus-update-summary-mark-positions):
12590         * message.el (message-check-news-body-syntax):
12591         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12592         of string-as-multibyte.
12593
12594 2004-10-05  Juri Linkov  <juri@jurta.org>
12595
12596         * gnus-group.el (gnus-update-group-mark-positions):
12597         * gnus-sum.el (gnus-update-summary-mark-positions):
12598         * message.el (message-check-news-body-syntax):
12599         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12600         8-bit unibyte values to a multibyte string for search functions.
12601
12602 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12603
12604         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12605         (mm-uu-dissect-text-parts): New function.
12606
12607         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12608         dissect text parts.
12609
12610         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12611         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12612
12613         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12614
12615         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12616         gnus-current-topics instead of gnus-current-topic.
12617
12618 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12619
12620         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12621
12622 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12623
12624         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12625         where approriate.
12626
12627         * nnml.el (nnml-generate-active-info): do.
12628
12629         * nndiary.el (nndiary-generate-active-info): do.
12630
12631         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12632         (gnus-topic-move): do.
12633
12634         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12635         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12636
12637         * gnus-srvr.el (gnus-server-prepare)
12638         (gnus-server-open-all-servers): do.
12639
12640         * gnus-msg.el (gnus-summary-cancel-article)
12641         (gnus-summary-resend-message)
12642         (gnus-summary-mail-crosspost-complaint): do.
12643
12644         * gnus-move.el (gnus-change-server): do.
12645
12646         * gnus-group.el (gnus-group-unmark-all-groups)
12647         (gnus-group-set-current-level): do.
12648
12649 2004-10-04  Simon Josefsson  <jas@extundo.com>
12650
12651         * message.el (message-generate-hashcash): Doc fix.
12652
12653 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12654
12655         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12656         avoid infinite recursion via gnus-get-function.
12657
12658 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12659
12660         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12661
12662         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12663
12664         * nnmail.el (nnmail-split-history): do.
12665
12666         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12667         (nnml-request-delete-group): do.
12668
12669         * nnslashdot.el (nnslashdot-read-groups): do.
12670
12671         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12672         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12673
12674         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12675         (nnspool-sift-nov-with-sed): Use last.
12676         (nnspool-retrieve-headers-with-nov): Use mapc.
12677         (nnspool-request-newgroups): Use dolist.
12678         (nnspool-request-group): Use last.
12679
12680         * nntp.el (nntp-read-server-type): Use dolist.
12681
12682         * nnvirtual.el (nnvirtual-create-mapping)
12683         (nnvirtual-update-read-and-marked): Use dolist.
12684         (nnvirtual-convert-headers): Simplify.
12685
12686 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12687
12688         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12689         support for sync'ing tick marks.
12690
12691 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12692
12693         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12694         there's no visible header.
12695
12696 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12697
12698         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12699         necessary, pass full group name to gnus-request-set-marks.
12700
12701 2004-10-01  Simon Josefsson  <jas@extundo.com>
12702
12703         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12704         acroread.
12705
12706 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12707
12708         * spam-report.el (spam-report-gmane): Fix interactive.
12709
12710         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12711
12712         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12713         when writing file.
12714         (gnus-agent-synchronize-flags): Don't default to being
12715         interactive.
12716
12717 2004-09-30  Simon Josefsson  <jas@extundo.com>
12718
12719         * message.el (message-generate-hashcash): Add.
12720         (message-send-mail): Use it, call mail-add-payment.
12721
12722 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12723
12724         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12725
12726 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12727
12728         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12729         gnus-requst-update-info with explicit code to sync the in-memory
12730         info read flags with the marks being sync'd to the backend.
12731
12732         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12733
12734 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12735
12736         * spam.el (spam-verify-bogofilter): Add new function.
12737         (spam-check-bogofilter)
12738         (spam-bogofilter-register-with-bogofilter): Use it.
12739         (spam-verify-bogofilter): Add small fixes.
12740
12741 2004-09-28  Simon Josefsson  <jas@extundo.com>
12742
12743         * hashcash.el (hashcash-generate-payment): Revert.
12744
12745 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12746
12747         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
12748         gnus-extract-references instead of gnus-split-references.
12749
12750         * gnus-util.el (gnus-extract-references): Add new function, analogous
12751         to gnus-split-references but extracts only the message-ID without
12752         anything extra.
12753
12754         * hashcash.el (hashcash-generate-payment)
12755         (hashcash-check-payment): Do the right thing if hashcash-path is
12756         nil (because the hashcash program could not be found).
12757
12758         * spam.el (spam-use-hashcash): Remove comment.
12759
12760 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
12761
12762         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
12763         (gnus-cache-enter-article, gnus-cache-remove-article)
12764         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
12765
12766         * gnus-async.el (gnus-async-prefetch-remove-group): do.
12767
12768         * gnus-art.el (article-hide-boring-headers)
12769         (article-translate-strings, article-display-face)
12770         (gnus-article-mime-match-handle-first)
12771         (gnus-article-highlight-headers)
12772         (gnus-article-add-buttons-to-head): do.
12773
12774 2004-09-27  Simon Josefsson  <jas@extundo.com>
12775
12776         * hashcash.el: New version, from
12777         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
12778         ../contrib/.
12779
12780 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12781
12782         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
12783
12784 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
12785
12786         * gnus-dup.el (gnus-dup-open): Use mapc.
12787         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
12788
12789         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
12790         Reported by Stefan Wiens <s.wi@gmx.net>.
12791
12792         * gnus.el (gnus-shutdown): Use dolist.
12793
12794         * gnus-undo.el (gnus-undo): Use mapc.
12795
12796         * nnrss.el (nnrss-generate-active): do.
12797
12798         * message.el (message-cite-original-without-signature)
12799         (message-cite-original): Use mapc.
12800         (message-do-actions, message-make-forward-subject): Use dolist.
12801
12802 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12803
12804         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
12805         deletion to remove entire duplicate line.  Fixes merged article
12806         number bug.
12807
12808 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
12809
12810         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
12811         servers that are offline.  Avoids having gnus-agent-toggle-plugged
12812         first ask if you want to open a server and then, even when you
12813         responded with no, asking if you want to synchronize the server's
12814         flags.
12815         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
12816         multi-line expressions.
12817         (gnus-agent-synchronize-group-flags): New internal function.
12818         Updates marks in memory (in the info structure) AND in the
12819         backend.
12820
12821         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
12822
12823         * nnagent.el (nnagent-request-set-mark): Use
12824         gnus-agent-synchronize-group-flags, not backend's request-set-mark
12825         method, to ensure that synchronization updates marks in the
12826         backend and in the info (in memory) structure.
12827
12828 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12829
12830         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
12831         convention fully; don't miss the root article of a thread; make
12832         the X-Draft-From header with correct article numbers.
12833
12834 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
12835
12836         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
12837         unless plugged.  Disable the agent so that an open failure causes
12838         an error.
12839
12840         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
12841         Reverted 2004-09-21 change.  The backend must be opened while
12842         synchronizing flags even when the backend stores the flags
12843         locally.
12844
12845 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
12846
12847         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
12848         in `header' match.  Reported by Svend Tollak Munkejord.
12849
12850         * message.el (message-cite-original): Fix use of
12851         `message-cite-articles-with-x-no-archive'.
12852
12853 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12854
12855         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
12856         (gnus-window-to-buffer): Ditto.
12857
12858         * mml.el (mml-preview-buffer): New variable.
12859         (mml-preview): Manage window layout with gnus-buffer-configuration.
12860
12861         * gnus-msg.el (gnus-setup-message): Put article numbers into the
12862         X-Draft-From header even if those articles aren't quoted.
12863
12864 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
12865
12866         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
12867         (gnus-request-set-mark, gnus-request-update-mark): Use new
12868         g-s-t-u-l-m to decide to use backend even when unplugged.
12869
12870 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12871
12872         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
12873         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
12874
12875 2004-09-20  Simon Josefsson  <jas@extundo.com>
12876
12877         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
12878         "utf-16-le".
12879
12880 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12881
12882         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
12883
12884 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
12885
12886         * uudecode.el (uudecode-use-external): Add :version.
12887
12888         * smime.el (smime-CA-file, smime-encrypt-cipher)
12889         (smime-dns-server): Add :version.
12890
12891         * smiley.el (gnus-smiley-file-types): Add :version.
12892
12893         * sha1.el (sha1-use-external): Add :version.
12894
12895         * pgg-def.el (pgg-query-keyserver): Add :version.
12896
12897         * nnmail.el (nnmail-fancy-expiry-targets)
12898         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
12899         Add :version.
12900
12901         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
12902         (nnimap-retrieve-groups-asynchronous): Add :version.
12903         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
12904
12905         * mml.el (mml-content-disposition-parameters)
12906         (mml-insert-mime-headers-always): Add :version.
12907
12908         * mm-util.el (mm-coding-system-priorities): Add :version.
12909
12910         * mm-decode.el (mm-inline-text-html-with-images)
12911         (mm-keep-viewer-alive-types, mm-external-terminal-program)
12912         (mm-verify-option): Add :version.
12913         (mm-text-html-renderer): Change :version.
12914
12915         * message.el (message-fcc-externalize-attachments)
12916         (message-required-headers, message-draft-headers)
12917         (message-subject-trailing-was-query)
12918         (message-subject-trailing-was-ask-regexp)
12919         (message-subject-trailing-was-regexp, message-mark-insert-begin)
12920         (message-mark-insert-end, message-archive-header)
12921         (message-archive-note, message-cross-post-default)
12922         (message-cross-post-note, message-followup-to-note)
12923         (message-cross-post-note-function, message-use-mail-followup-to)
12924         (message-subscribed-address-functions)
12925         (message-subscribed-address-file, message-subscribed-addresses)
12926         (message-subscribed-regexps, message-allow-no-recipients)
12927         (message-yank-cited-prefix, message-signature-insert-empty-line)
12928         (message-hidden-headers, message-hierarchical-addresses)
12929         (message-mail-user-agent, message-use-idna)
12930         (message-valid-fqdn-regexp)
12931         (message-strip-special-text-properties, message-header-synonyms)
12932         (message-beginning-of-line, message-tab-body-function): Add :version.
12933         (message-insert-canlock, message-wide-reply-confirm-recipients):
12934         Change :version.
12935
12936         * mail-source.el (mail-source-ignore-errors): Add :group, :type
12937         and :version.
12938         (mail-source-delete-old-incoming-confirm)
12939         (mail-source-movemail-program): Add :version.
12940
12941         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
12942         (gnus-agent-cache, gnus-agent): Change :version.
12943
12944         * gnus-util.el (gnus-use-byte-compile): Change :version.
12945
12946         * gnus-sum.el (gnus-summary-make-false-root-always)
12947         (gnus-summary-default-high-score)
12948         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
12949         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
12950         (gnus-read-all-available-headers, gnus-article-emulate-mime)
12951         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
12952         (gnus-sum-thread-tree-single-indent)
12953         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
12954         (gnus-sum-thread-tree-leaf-with-other)
12955         (gnus-sum-thread-tree-single-leaf): Add :version.
12956         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
12957         (gnus-article-loose-mime): Change :version.
12958
12959         * gnus-start.el (gnus-backup-startup-file)
12960         (gnus-save-startup-file-via-temp-buffer): Add :version.
12961
12962         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
12963         (gnus-server-offline-face): Add :version.
12964
12965         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
12966
12967         * gnus-msg.el (gnus-gcc-externalize-attachments)
12968         (gnus-debug-files, gnus-debug-exclude-variables)
12969         (gnus-discouraged-post-methods): Change :version.
12970         (gnus-confirm-mail-reply-to-news)
12971         (gnus-confirm-treat-mail-like-news): Add :version.
12972
12973         * gnus-int.el (gnus-server-unopen-status): Add :version.
12974
12975         * gnus-group.el (gnus-group-jump-to-group-prompt)
12976         (gnus-large-ephemeral-newsgroup)
12977         (gnus-fetch-old-ephemeral-headers): Add :version.
12978
12979         * gnus-fun.el (gnus-x-face-directory)
12980         (gnus-convert-pbm-to-x-face-command)
12981         (gnus-convert-image-to-x-face-command)
12982         (gnus-convert-image-to-face-command): Add :version.
12983
12984         * gnus-delay.el (gnus-delay-default-hour): Add :version.
12985
12986         * gnus-cite.el (gnus-cite-blank-line-after-header)
12987         (gnus-article-boring-faces): Add :version.
12988
12989         * gnus-art.el (gnus-buttonized-mime-types)
12990         (gnus-inhibit-mime-unbuttonizing)
12991         (gnus-treat-display-face)
12992         (gnus-treat-body-boundary): Change :version.
12993         (gnus-body-boundary-delimiter, gnus-picon-databases)
12994         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
12995         (gnus-treat-date-english, gnus-treat-fold-headers)
12996         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
12997         (gnus-treat-mail-picon, gnus-treat-wash-html)
12998         (gnus-article-encrypt-protocol)
12999         (gnus-use-idna, gnus-article-over-scroll)
13000         (gnus-mime-display-multipart-alternative-as-mixed)
13001         (gnus-mime-display-multipart-related-as-mixed)
13002         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13003         (gnus-ctan-url, gnus-button-ctan-handler)
13004         (gnus-button-handle-ctan-bogus-regexp)
13005         (gnus-button-ctan-directory-regexp)
13006         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13007         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13008         (gnus-button-man-level, gnus-button-emacs-level)
13009         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13010
13011         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13012         (gnus-agent-go-online): Change :version.
13013         (gnus-agent-expire-unagentized-dirs)
13014         (gnus-agent-auto-agentize-methods): Add :version.
13015
13016         * flow-fill.el (fill-flowed-display-column)
13017         (fill-flowed-encode-column): Add :version.
13018
13019         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13020         (gnus-outlook-deuglify-unwrap-max)
13021         (gnus-outlook-deuglify-cite-marks)
13022         (gnus-outlook-deuglify-unwrap-stop-chars)
13023         (gnus-outlook-deuglify-no-wrap-chars)
13024         (gnus-outlook-deuglify-attrib-cut-regexp)
13025         (gnus-outlook-deuglify-attrib-verb-regexp)
13026         (gnus-outlook-deuglify-attrib-end-regexp)
13027         (gnus-outlook-display-hook): Add :version.
13028
13029         * binhex.el (binhex-use-external): Add :version.
13030
13031 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13032
13033         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13034         and `invisible'.
13035
13036 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13037
13038         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13039         in gnus-registry-trim.
13040
13041 2004-09-13  Simon Josefsson  <jas@extundo.com>
13042
13043         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13044
13045         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13046
13047         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13048         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13049         <yamaoka@jpl.org>.
13050         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13051         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13052         <yamaoka@jpl.org>.
13053
13054         * sieve.el (sieve-manage-mode): Ditto.
13055
13056 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13057
13058         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13059
13060 2004-09-11  Simon Josefsson  <jas@extundo.com>
13061
13062         * dns-mode.el: Add.
13063
13064         * mm-view.el (mm-display-dns-inline): Add.
13065
13066         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13067         (mm-automatic-display): Ditto.
13068
13069         * mailcap.el (mailcap-mime-data): Add text/dns.
13070         (mailcap-mime-extensions): Map .soa to text/dns.
13071
13072 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13073
13074         * gnus-art.el (article-decode-mime-words, article-babel)
13075         (gnus-article-highlight-signature, gnus-article-add-buttons)
13076         (gnus-signature-toggle): Remove unnecessary bindings of
13077         `inhibit-read-only' inherited from v5.10 merge.
13078
13079 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13080
13081         * nntp.el (nntp): New customization group.
13082         (nntp-authinfo-file): Add customization group.
13083
13084         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13085
13086         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13087
13088         * gnus.el (to-address, to-list, subscribed)
13089         (large-newsgroup-initial): Ditto.
13090
13091         * flow-fill.el (fill-flowed-display-column)
13092         (fill-flowed-encode-column): Ditto.
13093
13094 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13095
13096         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13097         Use point-min rather than 1.
13098         (message-send-mail): Use buffer-size rather than point-max.
13099
13100         * gnus-sum.el (gnus-summary-search-article-forward):
13101         Signal a specific `search-failed' rather than a generic `error'.
13102
13103         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13104         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13105         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13106
13107 2004-09-10  Simon Josefsson  <jas@extundo.com>
13108
13109         * nndb.el (require): Remove tcp and duplicate cl.
13110
13111 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13112
13113         * gnus-agent.el (directory-files-and-attributes): Move forward.
13114
13115 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13116
13117         * gnus-agent.el (directory-files-and-attributes): Optionally
13118         defined to support XEmacs.
13119
13120 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13121
13122         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13123         to avoid run-time CL dependencies.
13124         (gnus-agent-unfetch-articles): New function.
13125         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13126         article numbers even when local .overview file is missing.
13127         (gnus-agent-read-article-number): New function.  Only accepts
13128         27-bit article numbers.
13129         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13130         gnus-agent-read-article-number.
13131         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13132         from backend while recognizing that article numbers in .overview
13133         must be valid.
13134         (gnus-agent-update-files-total-fetched-for): Use
13135         directory-files-and-attributes to improve performance.
13136         * gnus-int.el (gnus-request-move-article): Use
13137         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13138         improve performance.
13139
13140         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13141         some users confused by references to .newsrc when they only have a
13142         .newsrc.eld file.
13143         (gnus-convert-mark-converter-prompt)
13144         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13145         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13146         New function.  Used internally to only display 'gnus converting
13147         files' message when actually necessary.
13148
13149         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13150         methods now autoloaded.
13151
13152 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13153
13154         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13155         identifiers.
13156
13157 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13158
13159         * gnus-picon.el: Fix indentation and closing parenthesis.
13160
13161 2004-09-01  Simon Josefsson  <jas@extundo.com>
13162
13163         * message.el (message-canlock-generate): Require sha1, not
13164         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13165         to require within a function.  Sadly, if sha1.el isn't loaded, the
13166         let binding in m-c-g will hide the defcustom definition, which is
13167         bad.)
13168
13169         * canlock.el: Require sha1, not sha1-el.
13170
13171         * message.el: Don't autoload sha1 (there is a autoload cookie in
13172         sha1.el).
13173
13174         * sha1-el.el: Renamed to sha1.el.
13175
13176 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13177
13178         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13179
13180 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13181
13182         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13183
13184 2004-08-30  Kim F. Storm  <storm@cua.dk>
13185
13186         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13187
13188         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13189         Add :group 'nnimap.
13190
13191 2004-08-30  Andreas Schwab  <schwab@suse.de>
13192
13193         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13194         ?* and ?\;.
13195
13196         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13197         and ?\' to symbol instead of whitespace.
13198
13199 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13200
13201         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13202
13203         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13204         instead of re-search-forward.
13205
13206         * gnus-uu.el (gnus-uu-save-article): Ditto.
13207         (gnus-uu-post-encode-uuencode): Ditto.
13208
13209         * html2text.el (html2text-clean-list-items): Ditto.
13210         (html2text-clean-dtdd): Ditto.
13211         (html2text-format-tags): Ditto.
13212
13213         * message.el (message-send-mail-with-sendmail): Fix regexp.
13214         (message-fill-field-general): Use search-forward instead of
13215         re-search-forward.
13216         (unbold-region): Ditto.
13217
13218         * nnrss.el (nnrss-request-article): Ditto.
13219
13220         * nnslashdot.el (nnslashdot-request-article): Ditto.
13221
13222         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13223
13224         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13225         "Unrecognized menu descriptor" error in XEmacs.
13226
13227 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13228
13229         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13230         parent article of a sparse article in the thread hashtb.
13231
13232 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13233
13234         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13235         (nnmail-expand-newtext): Lowercase expanded entries if
13236         nnmail-split-lowercase-expanded is non-nil.
13237
13238 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13239
13240         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13241
13242         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13243         of gnus-tmp-news-method into string under XEmacs.  It will be
13244         passed to gnus-correct-length which takes only a string argument.
13245
13246 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13247
13248         * gnus-util.el (gnus-bind-print-variables): New macro.
13249         (gnus-prin1): Use it.
13250         (gnus-prin1-to-string): Use it.
13251         (gnus-pp): New function.
13252         (gnus-pp-to-string): New function.
13253
13254         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13255         Replace pp-to-string with gnus-pp-to-string.
13256         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13257         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13258         * gnus-msg.el (gnus-debug): Ditto.
13259         * gnus-score.el (gnus-score-save): Ditto.
13260         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13261         gnus-pp-to-string.
13262         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13263         with gnus-pp.
13264         * score-mode.el (gnus-score-pretty-print): Ditto.
13265         * webmail.el (webmail-debug): Ditto.
13266
13267 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13268
13269         * gnus-art.el (article-display-face, article-display-x-face):
13270         Use buffer-read-only.
13271
13272 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13273
13274         * gnus-art.el (article-hide-list-identifiers):
13275         Bind inhibit-read-only as t.
13276
13277 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13278
13279         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13280
13281 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13282