Merge Emacs' changes.
[gnus] / lisp / ChangeLog
1 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
2
3         * proto-stream.el (open-protocol-stream): Bring back `network' type.
4         Make this the default type.
5         (proto-stream-open-plain): Rename from proto-stream-open-default.
6         (open-protocol-stream, proto-stream-open-starttls)
7         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
8         with `plain'.
9
10         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
11         value.
12
13         * nntp.el (nntp-open-connection-function): Document the fact that some
14         values are not functions but are instead handled specially.  Recognize
15         nntp-open-plain-stream value.
16         (nntp-open-connection): Recognize that value.
17
18 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19
20         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
21         stuff.
22
23         * gnus-score.el (gnus-score-string): Fix calling convention of
24         `gnus-simplify-buffer-fuzzy' after last patches.
25
26         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
27         server for articles we didn't get any headers for.  This is a sanity
28         check.
29
30 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
31
32         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
33         new CAPABILITY, use it.
34
35 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
36
37         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
38         downloading anything.
39
40         * gnus.el (gnus-splash-svg-color-symbols): Removed superfluous `and'.
41
42 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
43
44         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
45         colors.
46         (gnus-splash-svg-color-symbols): New function.
47
48 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
49
50         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
51         instead of using the global gnus-simplify-subject-fuzzy-regexp.
52         (gnus-simplify-subject-fuzzy): Use the local
53         gnus-simplify-subject-fuzzy-regex instead of the global one.  This
54         makes using this variable in group parameters work.
55
56 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
57
58         * gnus-registry.el (gnus-registry-unfollowed-groups): Add
59         "archive:sent" to the unfollowed group regex (for the recent Gnus
60         archive:sent-YYYY-MM-DD groups).
61         (gnus-registry-split-fancy-with-parent): Bail out early in sender
62         tracking if there are more than `gnus-registry-max-track-groups'
63         matches.
64
65 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
66
67         * message.el (message--yank-original-internal): New function to do the
68         insertion cleanly inside eval in `message-yank-original'.
69         (message-yank-original): Use it.
70
71 2011-03-29  Julien Danjou  <julien@danjou.info>
72
73         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
74         local variables disabled rather than `normal-mode'.
75
76 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
77
78         * imap.el (imap-shell-open, imap-process-connection-type): Use
79         imap-process-connection-type for 'shell' streams as well as
80         Kerberos, SSL, other subprocesses.
81
82 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
83
84         * proto-stream.el: Changes preparatory to merging open-protocol-stream
85         with open-network-stream.
86         (proto-stream-always-use-starttls): Option removed.
87         (open-protocol-stream): Return a process object by default.  Provide a
88         new parameter :return-list specifying a list-type return value, which
89         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
90         :type `network' to `try-starttls', and `network-only' to `default'.
91         Make `default' the default, for compatibility with open-network-stream.
92         Handle the no-parameter case exactly as open-network-stream, with no
93         additional stream processing.  Search plists using plist-get.
94         Explicitly add :end-of-commend parameter if it is missing.
95         (proto-stream-open-default): Renamed from
96         proto-stream-open-network-only.  Return 'default as the type.
97         (proto-stream-open-starttls): Rename from proto-stream-open-network.
98         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
99         failed.  Always return a list with a (possibly dead) process as the
100         first element, for compatibility with open-network-stream.
101         (proto-stream-open-tls): Use plist-get.  Always return a list.
102         (proto-stream-open-shell): Return `default' as connection type.
103         (proto-stream-capability-open): Use plist-get.
104         (proto-stream-eoc): Function deleted.
105
106         * nnimap.el (nnimap-stream, nnimap-open-connection)
107         (nnimap-open-connection-1): Handle renaming of :type parameter for
108         open-protocol-stream.
109         (nnimap-open-connection-1): Pass a :return-list parameter
110         open-protocol-stream to obtain a list return value.  Parse this list
111         using plist-get.
112
113         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
114         for open-protocol-stream.  Accept open-protocol-stream return value
115         that is a subprocess object instead of a list.  Handle the case of a
116         dead returned process.
117
118 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
119
120         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
121
122         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
123
124 2011-03-21  Julien Danjou  <julien@danjou.info>
125
126         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
127         normal-mode if not set. Set temp buffer unmodified to avoid kill-buffer
128         query.
129         (mm-inline-text): Render normal text with fontification whenever
130         possible.
131
132         * gnus-sum.el (gnus-summary-save-parts-1):
133         * gnus-art.el (gnus-article-browse-html-save-cid-content)
134         (gnus-article-browse-html-parts, gnus-mime-delete-part)
135         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
136         Use `mm-handle-filename'.
137
138         * mm-util.el (mm-handle-filename): New function, return the filename of
139         an handle.
140
141 2011-03-18  Julien Danjou  <julien@danjou.info>
142
143         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
144         (gnus-buffer-live-p): Check that buffer is not nil.
145
146 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
147
148         * gnus.el: No Gnus v0.15 is released.
149
150 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
151
152         * time-date.el (format-seconds): Use assoc instead of assoc-string to
153         avoid warning on XEmacs.
154
155         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
156         on XEmacs.
157
158         * gnus-art.el: Require mouse, which the build bot seems to say is
159         needed.
160
161         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
162
163         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
164         XEmacs, since it doesn't have url-retrieve-synchronously.
165
166         * time-date.el (format-seconds): Use assoc instead of assoc-string,
167         since assoc-string doesn't exist in XEmacs.
168
169 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
170
171         * gnus-group.el (gnus-group-list-ticked): New function.
172         (gnus-group-make-menu-bar): Provide a menu entry for it.
173         (gnus-group-list-map): Provide a binding for it.
174
175 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
176
177         * shr.el (shr-visit-file): New command.
178
179         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
180
181 2011-03-17  Bjørn Mork  <bjorn@mork.no>
182
183         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
184         servers.
185
186 2011-03-16  Julien Danjou  <julien@danjou.info>
187
188         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
189         inline.
190
191         * gnus-art.el (article-hide-list-identifiers): Use
192         gnus-group-get-list-identifiers.
193
194         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
195         (gnus-summary-remove-list-identifiers): Use
196         gnus-group-get-list-identifiers to get regexp.
197         (gnus-select-newsgroup, gnus-summary-insert-subject)
198         (gnus-summary-insert-articles): Call
199         gnus-summary-remove-list-identifiers unconditionally.
200
201 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
202
203         * gnus-sum.el (gnus-articles-to-read): Revert back to old behaviour if
204         we're selecting a group with unread articles.
205
206         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
207
208         * gssapi.el: New file separated out from imap.el to provide a general
209         Kerberos 5 connection facility for Emacs.
210
211         * message.el (message-elide-ellipsis): Document the format spec
212         ellipsis.
213
214 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
215
216         * message.el (message-elide-region): Allow the ellipsis to say how many
217         lines were removed.
218
219 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
220
221         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
222         window configurations containing buffers that are now dead.
223
224         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
225         parsing to avoid integer overflows.
226         (nnimap-parse-flags): Simplify the last change.
227         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
228         too large for 32-bit Emacsen.
229
230 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
231
232         * auth-source.el (auth-source-netrc-create):
233         * message.el (message-yank-original): Fix use of `case'.
234
235 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
236
237         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
238         XEmacs, which was one character too wide.
239
240 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
241
242         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
243         default number of articles to display.
244         (gnus-articles-to-read): Use pretty names for prompt.
245
246 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
247
248         * gnus-int.el (gnus-open-server): Ditto.
249
250         * gnus-start.el (gnus-activate-group): Give a backtrace if
251         debug-on-quit is set and the user hits `C-g'.
252         (gnus-read-active-file): Ditto.
253
254         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
255
256 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
257
258         * message.el (message-yank-original): Use cond instead of CL case.
259
260 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
261
262         * auth-source.el (auth-source-netrc-create): Use usual format for the
263         default in prompts.
264
265 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
266
267         * lpath.el: Fbind read-char-choice for XEmacs.
268
269 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
270
271         * auth-source.el (auth-source-netrc-create): Show the default in the
272         prompt when prompting for token creation.
273
274 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
275
276         * auth-source.el (auth-source-format-prompt): Always convert the value
277         to a string to avoid evaluating non-string arguments.
278         (auth-source-netrc-create): Offer default properly, not as initial
279         content in `read-string'.
280         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
281         of line to determine if we've been run before.  If so, don't run again,
282         but print a trivial message to indicate the cache was hit instead.
283
284 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
285
286         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
287         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
288         The user will have to run `gnus-sync-read' manually and wait for Cloudy
289         Gnus.
290
291 2011-03-11  Julien Danjou  <julien@danjou.info>
292
293         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
294         modified file".
295
296 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
297
298         * auth-source.el (auth-source-read-char-choice): New function to read a
299         character choice using `dropdown-list', `read-char-choice', or
300         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
301         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
302         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
303         (auth-source-netrc-saver): Use it.
304         (auth-source-pick-first-password): New convenience function.
305
306 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
307
308         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
309         parameter in the credentials.
310         (nnimap-open-connection-1): Use it after a successful login.
311         (nnimap-credentials): Add IMAP-specific user and password prompt.
312
313         * auth-source.el (auth-source-search): Add :require parameter, taking a
314         list.  Document it and the :save-function return token.  Pass :require
315         down.  Change the CREATED message from a warning to a debug statement.
316         (auth-source-search-backends): Pass :require down.
317         (auth-source-netrc-search): Pass :require down.
318         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
319         Change save prompt to indicate all modifications saved here are
320         deletions.
321         (auth-source-netrc-create): Take user login name as default in user
322         prompt.  Move all the save functionality to a lexically bound function
323         under the :save-function token in the returned list.  Set up clearer
324         default prompts for user, host, port, and secret.
325         (auth-source-netrc-saver): New function, intended to be wrapped for
326         :save-function.
327
328 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
329
330         * shr.el (shr-table-horizontal-line): Change the defaults for the table
331         lines to be spaces instead.
332
333 2011-03-07  Julien Danjou  <julien@danjou.info>
334
335         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
336         (sieve-sasl-auth): Check that auth-source-search did return something,
337         or just return an empty string.
338
339 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
340
341         * gnus.el (gnus-interactive): Use read-directory-name.
342
343         * gnus-uu.el (gnus-uu-decode-uu-and-save)
344         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
345         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
346         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
347         Likewise.
348
349         * gnus-group.el (gnus-group-make-directory-group): Likewise.
350
351 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
352
353         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
354         onto the list of killed groups, too.  This makes killed nnimap groups,
355         for instance, more reliably not reappear.
356
357         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
358         the parent.
359
360         * gnus-sum.el (gnus-update-read-articles): Fix typo.
361
362         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
363         really have server-side marks.
364
365         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
366         since most backends do not usefully have server-side marks.
367         (gnus-update-read-articles): Propagate marks to all backends that
368         really have server-side marks.
369
370 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
371
372         * message.el (message-cite-reply-position, message-cite-style):
373         New variables.
374         (message-yank-original): Use the new citation styles.
375
376 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
377
378         * message.el (message-options): Revert 22da67af (workaround for XEmacs
379         buffer-local issue); don't mark it buffer-local when running under
380         XEmacs.
381
382 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
383
384         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
385         numbers too big to be `read'.
386
387 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
388
389         * password-cache.el (password-in-cache-p): Add autoload.
390
391         * message.el (message-options): Make buffer-local two ways to attempt
392         to fix a XEmacs bug.
393
394 2011-03-02  Julien Danjou  <julien@danjou.info>
395
396         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
397
398 2011-03-01  Julien Danjou  <julien@danjou.info>
399
400         * gnus-art.el (list-identifier): Add list-identifier as a parameter
401         group.
402         (article-hide-list-identifiers): Use list-identifier group parameter.
403
404 2011-02-28  Julien Danjou  <julien@danjou.info>
405
406         * sieve.el (sieve-buffer-script-name): New local variable to store
407         sieve script name.
408         (sieve-edit-script): Store sieve script name.
409         (sieve-upload): Use sieve script name when uploading.
410         (sieve-upload): Use substitute-command-keys.
411         (sieve-edit-script): Use substitute-command-keys.
412         (sieve-refresh-scriptlist): Use substitute-command-keys.
413         (sieve-manage-mode-map): Define keymap properly.
414         (sieve-manage-mode): Do not set mode name manually, change mode-name to
415         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
416         Remove commented code about cvs.
417         (sieve-manage-quit): New function.
418         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
419
420 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
421
422         * gnus-group.el (gnus-import-other-newsrc-file): New function.
423
424 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
425
426         * auth-source.el (auth-source-search): Cache empty result sets.
427
428         * password-cache.el (password-in-cache-p): Convenience function to
429         check if a key is in the cache, even if the value is nil.
430
431         * auth-source.el (auth-source-save-behavior): New variable to replace
432         `auth-source-never-create'.
433         (auth-source-netrc-create): Use it.
434         (auth-source-never-save): Remove.
435
436 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
437
438         * nnimap.el (nnimap-stream): Doc fix.
439         (nnimap-open-connection-1): Reverse the order of the ports to that the
440         prompted-for port is first.
441
442         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
443         retrieval by the no-group selection.
444
445         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
446         numerical parameters.
447
448 2011-02-25  Julien Danjou  <julien@danjou.info>
449
450         * gnus-gravatar.el: Use gnus-with-article-buffer.
451
452         * gnus-art.el (gnus-with-article-buffer): Check that the
453         gnus-article-buffer is alive.
454
455 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
456
457         * auth-source.el (auth-source-creation-prompts): New variable to manage
458         creation-time prompts.
459         (auth-source-search): Document it.
460         (auth-source-format-prompt): Add utility function.
461         (auth-source-netrc-create): Don't default the user name to
462         user-login-name.  Use `auth-source-creation-prompts' and some default
463         prompts for user, host, port, and password (the default generic prompt
464         remains ugly).
465         (auth-source-never-save): Add customizable option to never save info.
466         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
467         mode excursion.
468
469 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
470
471         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
472         argument that XEmacs doesn't support.
473
474         * dgnushack.el (dgnushack-compile): Exclude color.el from being
475         compiled for Emacsen having no `libxml-parse-html-region' support.
476
477         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
478
479         * lpath.el: Bind buffer-save-without-query for XEmacs.
480
481 2011-02-23  Julien Danjou  <julien@danjou.info>
482
483         * gnus-art.el (article-make-date-line): Ignore errors if time is
484         invalid and not convertible.
485         (article-make-date-line): Only add lapsed time if time is not nil.
486
487 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
488
489         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
490         `read-char-choice' for backwards compatibility.
491         (auth-source-netrc-element-or-first): New function to DTRT for
492         parameter extraction.
493         (auth-source-netrc-create): Use it and fix multiple parameter print
494         bug.  Use the default passed from above (given-default) or the
495         built-in (user-login-name for :user).
496
497 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
498
499         * gnus-start.el (gnus-dribble-read-file):
500         Set buffer-save-without-query, since we always want to save the dribble
501         file, probably.
502
503         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
504         nnimap.
505
506         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
507         -summary- since it's a user-visible variable.
508
509         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
510         first time you use the new Gnus.
511
512 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
513
514         * auth-source.el: Don't load netrc.el.
515         (auth-sources): Search ~/.netrc as well by default.
516         (auth-source-debug): Add 'trivia option for extra output.
517         (auth-source-do-trivia): Use it.
518         (auth-source-search): Simplify logic to use
519         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
520         appropriate.  Don't keep a running count at this level.  Layer :create
521         and :delete options appropriately on the first and second passes.
522         Don't track the backend with the search results.
523         (auth-source-search-backends): New function to search a list of
524         backends for a processed spec.
525         (auth-source-netrc-parse): Cache all netrc files, making
526         auth-source-netrc-cache an alist keyed by the file name and using the
527         file mtime as the caching criterion.  Keep the obfuscated data secret
528         with a lexical bind.
529         (auth-source-netrc-search): Don't calculate the length of the results
530         unnecessarily.
531         (auth-source-search-backends): Fix bug.
532         (auth-source-netrc-create): Rework prompts.
533
534 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
535
536         * nnir.el (nnir-imap-search-arguments,nnir-imap-default-search-key):
537         Lower case names of search constraints.
538         (nnir-run-query): Cache and reuse search constraints for all imap
539         servers.
540
541 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
542
543         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
544         after exit.
545         (gnus-setup-message): Define missing variable from last checkin.
546
547         * gnus-sum.el (gnus-summary-show-article): When called with t as the
548         value, show the raw article.
549
550 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
551
552         * gnus.el: No Gnus v0.13 is released.
553
554 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
555
556         * nnimap.el (nnimap-open-connection-1): Revert last change, since
557         auth-source now accepts numbers.
558
559         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
560         spec, too.
561         (auth-source-ensure-strings): New function.
562
563         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
564         (gnus-article-setup-buffer): Always restart the date timer so that user
565         changes to the frequency is respected.
566
567         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
568         port numbers, so make sure it gets that if nnimap-server-port is
569         explicit.
570
571 2011-02-21  Simon Josefsson  <simon@josefsson.org>
572
573         * nnimap.el (nnimap-inbox): Doc fix.
574
575 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
576
577         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
578         Autoload.  Add optional arg FRAME, and pass it to color-values.
579         (color-complement): Caller changed.  Doc fix.
580         (color-gradient): Rewrite for better clarity and efficiency.
581
582 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
583
584         * shr-color.el (shr-color->hexadecimal): Use renamed function names
585         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
586         color-lab-to-srgb.
587
588 2011-02-20  Drew Adams  <drew.adams@oracle.com>
589
590         * color.el: First part of merge from hexrgb.el.
591         (color-rgb-to-hex): Rename from color-rgb->hex.
592         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
593         saturation to zero if the value is too small.
594         (color-rgb-to-hsl): Rename from color-rgb->hsl.
595         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
596         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
597         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
598         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
599         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
600         (color-cie-de2000): Doc fix.
601
602 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
603
604         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
605         given method as in the group name if we're using an extended method.
606         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
607         command, if we're using that, instead of waiting for the beginning.
608
609         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
610         we're sure to get unique server names, and we don't output two async
611         commands in the same buffer.  This fixes an NNTP hang for some users.
612
613 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
614
615         * gnus.el: No Gnus v0.11 is released.
616
617 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
618
619         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
620         summary buffer before reading going to the next buffer.  This avoids
621         putting the point in the group buffer if you `C-g' the command.
622
623         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
624         cache (for now) to make ~/.authinfo.gpg files usable.
625
626         * nnfolder.el (copyright-update): Define for the compiler.
627
628         * auth-source.el (auth-source-search): Fix unbound variable.
629
630 2011-02-19  Glenn Morris  <rgm@gnu.org>
631
632         * gnus.el (gnus-meta): Doc fix.
633
634 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
635
636         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
637         in case it's not yet loaded.
638
639 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
640
641         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
642         line we're waiting for.
643
644 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
645
646         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
647         face with line-width greater than zero will cause RET in gnus summary
648         buffer to scroll down article page-wise because auto vscroll happens,
649         it should be temporalily disabled when doing a scroll-up.
650
651 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
652
653         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
654         outputs from the server.
655
656 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
657
658         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
659         later so that bbdb can hook in easier.
660
661 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
662
663         * auth-source.el (auth-source-search): Don't try to create credentials
664         if the caller doesn't want that.
665         (auth-source-search): If we don't find a match, don't bug out on
666         non-bound variables.
667         (auth-source-search): Only ask a single backend to create the
668         credentials.
669
670         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
671         logging.
672         (nnimap-credentials): Protect against auth-source-search returning nil.
673         (nnimap-request-list): Protect against not being able to open the
674         server.
675
676 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
677
678         * auth-source.el (auth-source-search): Do a two-phase search, one with
679         no :create to get the responses from all backends.
680
681         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
682         when getting credentials.
683
684         * gnus-util.el (gnus-delete-duplicates): New function.
685
686 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
687
688         * nnimap.el (nnimap-credentials): Instead of picking the first port as
689         a creation default, pass the whole port list down.  It will be
690         completed.
691
692         * auth-source.el (auth-source-search): Updated docs to talk about
693         multiple creation choices.
694         (auth-source-netrc-create): Accept a list as a value (from the search
695         parameters) and do completion on that list.  Keep a separate netrc line
696         with the password obscured for showing the user.
697
698         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
699         first choice to `auth-source-search' so it will be used for entry
700         creation instead of the server's Gnus-specific name.
701         (nnimap-credentials): Rely on the auth-source library to select which
702         port is actually wanted in the new netrc entry, so don't override
703         `auth-source-creation-defaults'.
704
705         * auth-source.el (auth-source-netrc-parse): Use :port instead of
706         :protocol and accept a missing user, host, or port as a wildcard match.
707         (auth-source-debug): Default to off.
708
709         (auth-source-netrc-search, auth-source-netrc-create)
710         (auth-source-secrets-search, auth-source-secrets-create)
711         (auth-source-user-or-password, auth-source-backend, auth-sources)
712         (auth-source-backend-parse-parameters, auth-source-search): Use :port
713         instead of :protocol.
714
715         * nnimap.el (nnimap-credentials): Pass a port default to
716         `auth-source-search' in case an entry needs to be created.
717         (nnimap-open-connection-1): Use :port instead of :protocol.
718
719 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
720
721         * auth-source.el: Bind load-path when loading EIEIO from
722         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
723         21.4 doesn't support, to `require'.
724         (auth-source-secrets-search): Use mm-delete-duplicates instead of
725         delete-dups that is not available in XEmacs 21.4.
726
727 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
728
729         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
730         as EIEIO must also be loaded when auth-source.el is being
731         byte-compiled.
732
733 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
734
735         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
736
737         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
738
739         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
740
741         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
742
743         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
744
745         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
746
747         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
748
749         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
750         necessary.
751
752 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
753
754         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
755         nil means that nnimap doesn't get updated.
756
757 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
758
759         * auth-source.el (auth-source-netrc-create): Return a synthetic search
760         result when the user doesn't want to write to the file.
761         (auth-source-netrc-search): Expect a synthetic result and proceed
762         accordingly.
763         (auth-source-cache-expiry): New variable to override
764         `password-cache-expiry'.
765         (auth-source-remember): Use it.
766
767         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
768         parameter.  Create entry if necessary by using :create t.
769         (nnimap-open-connection-1): Don't pass `inhibit-create'.
770
771 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
772
773         * auth-source.el (auth-source-debug): Enable by default and don't
774         mention the obsolete `auth-source-hide-passwords'.
775         (auth-source-do-warn): New function to debug unconditionally.
776         (auth-source-do-debug): Use it.
777         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
778         and for Secrets API entries when the secrets.el library is not
779         available.
780
781 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
782
783         * gnus-sum.el (gnus-propagate-marks): Default to nil.
784         (gnus-summary-exit): Kill the correct article buffer on exit from a
785         `C-d' group.
786
787         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
788         gnus-propagate-marks.
789
790         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
791         before killing the buffers so that a non-full window conf gets handled
792         correctly.
793         (gnus-summary-exit): Ditto.
794         (gnus-summary-read-group-1): Ditto.
795
796         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
797         async code again so that we can debug it properly.
798
799         * message.el (message-reply): Take an optional switch-buffer parameter
800         so that Gnus window confs are respected better.
801
802 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
803
804         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
805         `plist-get' to accept non-list parameters (XEmacs issue).
806         Fix docstring.
807         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
808         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
809         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
810         Login collection is "Login" and not "login".
811
812 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
813
814         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
815         multiple headers.
816
817         * nnimap.el (nnimap-inhibit-logging): New variable.
818         (nnimap-log-command): Don't log login commands.
819
820         * auth-source.el (auth-source-netrc-search): The asserts seem to want
821         to have more parameters.
822
823         * nnimap.el (nnimap-send-command): Mark the command time for each
824         command, so that we don't get NOOPs stepping on our toes.
825
826         * gnus-art.el (article-date-ut): Get the date from the Date header on
827         `t'.
828
829 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
830
831         * auth-source.el (auth-source-search): Use copy-sequence instead of
832         the cl.el copy-list.
833
834 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
835
836         * imap.el: Bring it back (revert
837         84d800cd31de3064f0ed39617d725709a2f8f42f).
838
839 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
840
841         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
842         Improve prompt.
843
844 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
845
846         * gnus-art.el (gnus-article-mode-line-format): Remove the article
847         washing status from the default format.  It isn't very informative.
848
849 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
850
851         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
852         Fix Gcc processing on imap.
853
854 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
855
856         * imap.el: Remove file.  All the functionality is in nnimap.el.
857
858 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
859
860         * message.el (message-bury): Don't pop up a new window when selected
861         window is dedicated.
862
863 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
864
865         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
866
867 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
868
869         * sieve-manage.el: Autoload `auth-source-search'.
870         (sieve-sasl-auth): Use it.
871
872 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
873
874         * nnimap.el: Autoload `auth-source-forget+'.
875         (nnimap-open-connection-1): Use it if the connection fails.
876
877         * auth-source.el: Require `password-cache'.
878         (auth-source-hide-passwords, auth-source-cache): Remove and mark
879         obsolete.
880         (auth-source-magic): Marker for `password-cache' keys.
881         (auth-source-do-cache): Update docstring.
882         (auth-source-search): Use and check cache.
883         (auth-source-forget-all-cached, auth-source-remember)
884         (auth-source-recall, auth-source-forget, auth-source-forget+)
885         (auth-source-specmatchp): Caching support functions.
886         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
887         Remove and obsolete.
888         (auth-source-user-or-password): Remove caching to further discourage
889         using it.  Always hide passwords.
890
891         * password-cache.el (password-cache-remove): Accept secrets that are
892         not strings.
893
894 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
895
896         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
897         code for now, since it doesn't work for all users.
898
899 2011-02-09  Julien Danjou  <julien@danjou.info>
900
901         * message.el (message-options): Make message-options really buffer
902         local.
903
904 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
905
906         * mail-source.el: Autoload `auth-source-search'.
907         (mail-source-keyword-map): Note order matters.
908         (mail-source-set-1): Get all the mail-source source values and
909         defaults and search auth-source on those if needed.  This can all
910         probably be simplified.
911
912         * nnimap.el: Autoload `auth-source-search'.
913         (nnimap-credentials): Use it.
914         (nnimap-open-connection-1): Ask for the virtual server and physical
915         address in one shot.
916
917         * nntp.el: Autoload `auth-source-search'.
918         (nntp-send-authinfo): Use it.  Note TODO.
919
920 2011-02-08  Julien Danjou  <julien@danjou.info>
921
922         * shr.el (shr-tag-body): Add support for text attribute in body
923         markups.
924
925         * message.el (message-options): Make message-options a local variable.
926
927 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
928
929         * auth-source.el (auth-source-secrets-search)
930         (auth-source-user-or-password): Use `append' instead of `nconc'.
931         (auth-source-user-or-password): Build return list better and protect
932         against nil :secret.
933
934 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
935
936         * nnimap.el (nnimap-update-info): Refactor slightly.
937         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
938         (nnimap-update-info): Clean up slightly.
939         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
940         characters.
941         (nnimap-process-quirk): Rename function to avoid collision.
942         (nnimap-update-info): Fix macrology bug-out.
943         (nnimap-update-info): Simplify split history test.
944
945 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
946
947         * auth-source.el (top): Require 'eieio unconditionally.
948         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
949         (auth-source-secrets-search): Limit search when `max' is greater than
950         number of results.
951
952 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
953
954         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
955         part not returning any data.
956
957         * proto-stream.el (open-protocol-stream): Document the return value.
958
959 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
960
961         * auth-source.el (auth-source-secrets-search): Add examples.
962
963 2011-02-06  Julien Danjou  <julien@danjou.info>
964
965         * message.el (message-setup-1): Handle message-generate-headers-first
966         set to t.
967
968 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
969
970         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
971         API with a string "secrets:collection-name" and with 'default.
972         (auth-source-backend-parse): Parse "secrets:collection-name" and
973         'default.  Recurse on parses instead of repeating code.  Use the
974         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
975         message when ignoring a source.
976         (auth-source-search): List ignored search keys at the top level.
977         (auth-source-netrc-create): Use `case' instead of `cond'.
978         (auth-source-secrets-search): Created with TODOs.
979         (auth-source-secrets-create): Created with TODOs.
980         (auth-source-retrieve, auth-source-create, auth-source-delete)
981         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
982         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
983         (auth-source-user-or-password-sftp)
984         (auth-source-user-or-password-smtp): Remove.
985         (auth-source-user-or-password): Deprecated and modified to be a wrapper
986         around `auth-source-search'.  Not tested thoroughly.
987
988 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
989
990         * auth-source.el: Bring in assoc and eioeio libraries.
991         (secrets-enabled): New variable to track the status of the Secrets API.
992         (auth-source-backend): New EIOEIO class to represent a backend.
993         (auth-source-creation-defaults): New variable to set prompt defaults
994         during token creation (see the `auth-source-search' docstring for
995         details).
996         (auth-sources): Simplify to allow a simple string as a netrc backend
997         spec.
998         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
999         (auth-source-backend-parse-parameters): Fill in the backend parameters.
1000         (auth-source-search): Main auth-source API entry point.
1001         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
1002         (auth-source-search-collection): Helper function for searching.
1003         (auth-source-netrc-parse, auth-source-netrc-normalize)
1004         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
1005         Supports search, create, and delete.
1006         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
1007         backend stubs.
1008         (auth-source-user-or-password): Call `auth-source-search' but it's not
1009         ready yet.
1010
1011 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
1012
1013         * message.el (message-setup-1): Remove the read-only stuff, since it
1014         doesn't work under XEmacs, for some reason.
1015
1016         * gnus-sum.el (gnus-user-date): Rename back from
1017         gnus-summary-user-date since user code refers to it.
1018
1019         * shr.el (shr-render-td): Store the actual background colour used.
1020
1021         * message.el (message-setup-1): Don't bind the constant
1022         -forbidden-properties.
1023         (message-setup-1): Revert previous change, since it needs to bind the
1024         props to insert them.
1025         (message-resend): Allow removing the read-only separator line.
1026
1027 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
1028
1029         * nnimap.el (nnimap-request-accept-article): Give an error message if
1030         the APPEND wasn't successful.
1031
1032 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
1033
1034         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
1035         that have no groups.
1036
1037 2011-02-03  Julien Danjou  <julien@danjou.info>
1038
1039         * gnus-draft.el: Remove progn around gnus-draft-setup.
1040
1041 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
1042
1043         * gnus-start.el (gnus-read-active-for-groups): This function is never
1044         called with a nil `infos', so clean that up.
1045         (gnus-get-unread-articles): Request active files from primary/secondary
1046         methods that have no groups (yet).
1047
1048 2011-02-03  Julien Danjou  <julien@danjou.info>
1049
1050         * message.el (message-setup-1): Always generate References first.
1051         (message-mail): Return the return value of message-setup, not always t.
1052         (message-setup-1): Insert mail-header-separator with read-only and
1053         intangible properties set.
1054
1055         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
1056         user-date in docstring.
1057
1058         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
1059
1060         * gnus.el (gnus-summary-line-format): Mention &user-date format in
1061         docstring.
1062
1063         * gnus.el (gnus-user-date-format-alist): Change default value. Use
1064         defcustom, with type and group. Move from gnus-util.el. Rename to
1065         gnus-summary-user-date-format-alist.
1066
1067 2011-02-03  Glenn Morris  <rgm@gnu.org>
1068
1069         * nnimap.el (gnus-fetch-headers): Declare.
1070
1071         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
1072
1073 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
1074
1075         * message.el (message-forward-make-body-digest-plain)
1076         (message-followup, message-reply): Clean up things noted by Stefan.
1077
1078         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
1079         gnus-article-update-date-headers is nil.
1080         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
1081         it didn't really work with defcustom.
1082         (article-update-date-lapsed): Make sure the window start doesn't move,
1083         either.
1084
1085 2011-02-01  Julien Danjou  <julien@danjou.info>
1086
1087         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
1088         format.
1089
1090         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
1091         standard in Emacs nowadays.
1092
1093         * color.el (color-gradient): Add a color-gradient function.
1094
1095 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1096
1097         * message.el (message-expand-name): Don't trust the return value of
1098         bbdb-complete-name.
1099         (message-check-news-header-syntax): Remove unused var `start'.
1100         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
1101         (message-inhibit-body-encoding): Move to before first use.
1102         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
1103         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
1104         (Organization, Message-ID, Date, mh-previous-window-config):
1105         Defvar the vars using dynamic scoping.
1106
1107 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
1108
1109         * shr.el (shr-render-td): Only do colours at the final rendering.
1110         Should be slightly faster.
1111         (shr-insert-table): Fix up TD background colours when doing the
1112         vertical padding.
1113
1114         * gnus-art.el (article-date-ut): Protect against articles with no Date
1115         header.
1116         (article-update-date-lapsed): Don't use current-column to find the
1117         horizontal position.  It's fragile in the presence of \003 characters.
1118
1119         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
1120
1121 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1122
1123         * gnus-art.el (article-transform-date): Rewrite to still work when
1124         there are several rfc2822 parts.
1125         (article-transform-date): Fix infinite recursion.
1126         (article-date-ut): Replace infinitely many Date headers with a single
1127         one when called interactively.
1128
1129         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
1130         secure manner.
1131
1132         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
1133         move around by not using save-window-excursion.  It seems to work...
1134
1135 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1136
1137         * gnus-art.el (article-make-date-line): Work for user-defined format.
1138
1139 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1140
1141         * nntp.el (nntp-retrieve-group-data-early)
1142         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
1143         fetching functions.
1144
1145         * gnus-start.el (gnus-read-active-for-groups): Read the active files
1146         thoroughly for all backends that have no known groups.  This should
1147         allow new nnml methods to retrieve mail.
1148
1149         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
1150         that Gnus doesn't know exists again.
1151
1152         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
1153         (gnus-treat-date-ut): Ditto.
1154         (gnus-article-update-date-header): Rename.
1155         (gnus-treat-date-local): Remove.
1156         (gnus-treat-date-english): Remove.
1157         (gnus-treat-date-lapsed): Remove.
1158         (gnus-treat-date-combined-lapsed): Remove.
1159         (gnus-treat-date-original): Remove.
1160         (gnus-treat-date-iso8601): Remove.
1161         (gnus-treat-date-user-defined): Remove.
1162         (gnus-article-date-headers): New variable to control all the date
1163         header options.
1164         (article-date-ut): Rewrite to allow using the new way to format date
1165         headers(s).
1166
1167 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
1168
1169         * nnmail.el (nnmail-article-group): Check for a direct fancy split
1170         method.
1171         (nnmail-article-group): A better test for fanciness.
1172
1173         * nnimap.el (nnimap-request-head): Protect against not finding the
1174         article by Message-ID.
1175
1176 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
1177
1178         * gnus-art.el (article-update-date-lapsed): Try a better way to really
1179         keep point at the "same place".
1180
1181 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
1182
1183         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
1184         data if the group is unactivated.
1185
1186 2011-01-28  Julien Danjou  <julien@danjou.info>
1187
1188         * gnus-win.el: Remove dead function gnus-window-configuration-element.
1189         (gnus-all-windows-visible-p): Remove old compatibility code.
1190         (gnus-window-top-edge): Add docstring.
1191
1192         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
1193
1194 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
1195
1196         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
1197         older request-update-info.
1198
1199         * gnus-art.el (article-make-date-line): Limit the length a bit more.
1200
1201 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
1202
1203         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
1204         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
1205
1206 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
1207
1208         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
1209         groups.  This makes the nndraft:queue group pop up if it's not already
1210         there.
1211
1212         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
1213         messages" logic, which was reversed.
1214
1215         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
1216         the "same place" even if point is on the line being replaced.
1217         (article-update-date-lapsed): Allow updating both the combined lapsed
1218         and the lapsed headers.
1219         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
1220         (article-make-date-line): Limit the number of segments dynamically to
1221         avoid too-long lines.
1222
1223 2011-01-27  Julien Danjou  <julien@danjou.info>
1224
1225         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
1226         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
1227
1228 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1229
1230         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
1231         Use plist-get instead of the cl function getf.
1232
1233 2011-01-27  Glenn Morris  <rgm@gnu.org>
1234
1235         * gnus-util.el (float-time): Get rid of compiler warning, again.
1236
1237 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
1238
1239         * shr.el (shr-put-color): Special-case background colours: Do put them
1240         at the blank parts at the front of the lines.
1241
1242         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
1243         exit hook to nix out all data on readedness on group exit.
1244
1245         * gnus-util.el (float-time): If float-time is bound, always use it on
1246         all Emacsen.  It's unclear why the subrp check was there.
1247         (time-date): Require to make some autoload issues on XEmacs go away.
1248
1249         * shr.el (shr-put-color): Don't do the box padding in tables, since
1250         they're already padded.
1251
1252 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
1253
1254         * gnus-art.el (gnus-article-next-page): When the last line of the
1255         article is displayed, scroll down once more instead of going to the
1256         next article at once.
1257         (article-lapsed-string): Refactor out and allow specifying how many
1258         segments you want.
1259         (gnus-article-setup-buffer): Start updating the lapsed header directly.
1260         (gnus-article-update-lapsed-header): New variable.
1261
1262         * shr.el: Revert change that made headings use different-sized faces.
1263         The Emacs display engine isn't advanced enough that, for instance,
1264         tables can comfortably use differently-sized faces.
1265
1266 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
1267
1268         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
1269         used.
1270         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
1271         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
1272         we're using an encrypted connection.
1273
1274         * proto-stream.el: Alter the interface functions to also return the
1275         actual stream type used: network or tls.
1276
1277 2011-01-25  Julien Danjou  <julien@danjou.info>
1278
1279         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
1280         (mm-display-javascript-inline): New function.
1281
1282         * mm-decode.el (mm-inline-media-tests): Add application/javascript
1283         viewing function.
1284
1285 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1286
1287         * shr.el (shr-expand-newlines): Fix variable name.
1288
1289 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
1290
1291         * shr.el (shr-expand-newlines): Make nested boxes work.
1292
1293 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
1294
1295         * shr.el (shr-expand-newlines): Proof of concept implemantation of boxy
1296         backgrounds.
1297         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
1298         in a more sensible manner.
1299
1300 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
1301
1302         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
1303         if EPG is loaded.
1304
1305 2011-01-24  Julien Danjou  <julien@danjou.info>
1306
1307         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
1308         tags.
1309
1310 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
1311
1312         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
1313         commands.
1314
1315         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
1316         in the article buffer.
1317         (gnus-gravatar-insert): Use blank space from the current buffer to
1318         avoid breaking text properties.  This makes X-Sent updating work again.
1319
1320         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
1321
1322 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
1323
1324         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
1325         fix the bug in url-http.el instead.
1326
1327         * shr.el (shr-image-fetched): Ditto.
1328
1329         * shr.el (shr-image-fetched): Avoid having point move in the article
1330         buffer.
1331
1332         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
1333         buffer after being called.  It's apparently being killed by url.el, and
1334         killing it made point move to end-of-buffer in a random buffer.
1335
1336         * shr.el (shr-image-fetched): Ditto.
1337
1338 2011-01-23  Julien Danjou  <julien@danjou.info>
1339
1340         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
1341
1342         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
1343         text/x-org.
1344
1345 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
1346
1347         * gnus-sum.el (gnus-summary-move-article): Protect against backends
1348         (i.e., nnimap) returning nil as the article number.
1349
1350 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
1351
1352         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
1353         "DelSp" parameter in RFC3676.
1354
1355 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
1356
1357         * message.el (message-check-recipients): Display the encoded version of
1358         the bogus address if they differ.
1359
1360         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
1361         after sending.
1362
1363         * gnus-agent.el (gnus-agent-send-mail): Ditto.
1364
1365         * gnus-group.el (gnus-group-refresh-group): New convenience function.
1366
1367         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
1368         group buffer after sending the queue.
1369
1370         * gnus-agent.el (gnus-agent-send-mail): Ditto.
1371
1372 2011-01-22  Julien Danjou  <julien@danjou.info>
1373
1374         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
1375
1376 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
1377
1378         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
1379         nested related parts.
1380
1381         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
1382         unexpired articles.  This fixes the regression that led expiry marks to
1383         disappear from nnfolder groups.
1384
1385 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1386
1387         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
1388         Don't confuse the "ret" of "retrograde" with RET.
1389
1390 2011-01-21  Julien Danjou  <julien@danjou.info>
1391
1392         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
1393         than mm-insert-inline.
1394
1395 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1396
1397         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
1398         Widen article buffer.
1399
1400 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1401
1402         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
1403         the temp buffer.
1404         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
1405
1406 2011-01-20  Julien Danjou  <julien@danjou.info>
1407
1408         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
1409
1410         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
1411         than mm-insert-inline to insert inline part: this respect
1412         mm-inline-media-tests displayers.
1413
1414         * mm-view.el (mm-display-shell-script-inline): New function.
1415
1416         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
1417
1418         * mm-uu.el (mm-uu-type-alist): Add org block.
1419         (mm-uu-org-src-code-block-extract): New function.
1420
1421         * mm-view.el (mm-display-org-inline): New function.
1422
1423         * mm-decode.el (mm-automatic-display): Add text/org.
1424
1425         * mailcap.el (mailcap-mime-extensions): Add .org.
1426
1427 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1428
1429         * gnus-art.el (gnus-article-highlight): Remove argument passed to
1430         gnus-article-add-buttons.
1431
1432 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
1433
1434         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
1435         From header with a date and "nobody" as the sender.
1436
1437 2011-01-19  Julien Danjou  <julien@danjou.info>
1438
1439         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
1440         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
1441         if you have the same regexp several times.
1442         (gnus-button-push): Fix matching when regexp is symbol.
1443
1444 2011-01-15  Glenn Morris  <rgm@gnu.org>
1445
1446         * message.el (message-mail): A compose-mail function should
1447         accept headers as strings.
1448
1449 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
1450
1451         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
1452         Add :vert-only tags.
1453         (message-mail): New arg RETURN-ACTION.
1454         (message-return-action): New var.
1455         (message-bury): Use it.
1456         (message-mode): Make it buffer-local.
1457         (message-send-and-exit): Always call message-bury.
1458
1459         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
1460         message-mail.
1461
1462 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1463
1464         * nnimap.el (nnimap-convert-partial-article): Protect against
1465         zero-length body parts.
1466
1467         * mm-decode.el (mm-preferred-alternative-precedence):
1468         Discourage showing empty parts.
1469
1470         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
1471         and stuff if the backend didn't return the article number.  This fixes
1472         an Exchange-related nnimap bug.
1473
1474         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
1475         group window, because it does the wrong thing when a separate frame
1476         displays the group buffer.
1477
1478         * proto-stream.el (open-protocol-stream): Protect against the low-level
1479         transport functions returning nil.
1480
1481 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
1482
1483         * mml2015.el (epg-sub-key-fingerprint): Autoload.
1484         (mml2015-epg-find-usable-secret-key): New function.
1485         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
1486         mml2015-epg-find-usable-key (Bug#7797).
1487         (mml2015-epg-encrypt): Ditto.
1488
1489 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1490
1491         * dgnushack.el (rot13-string): Fix the way to get the argument.
1492
1493 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1494
1495         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
1496
1497 2011-01-03  Glenn Morris  <rgm@gnu.org>
1498
1499         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
1500
1501         * sieve.el (sieve-open-server): Give a more explicit error if
1502         sieve-manage-open returns nil.  (Bug#7720)
1503
1504 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
1505
1506         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
1507
1508 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1509
1510         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
1511         This avoids sending passwords in plain text over non-encrypted
1512         channels.
1513
1514         * shr.el (shr-rescale-image): Display all GIF images as animated images.
1515
1516         * nnimap.el (nnimap-login): Refactored out into own function, and
1517         implement CRAM-MD5.
1518         (nnimap-wait-for-line): Refactored out.
1519
1520         * mm-view.el (mml-smime): Require.
1521
1522 2010-12-20  David Engster  <deng@eml.cc>
1523
1524         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
1525         use EPG to decrypt S/MIME messages instead of openssl.
1526
1527 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1528
1529         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
1530
1531         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
1532         status is the group clearly is unreachable.
1533
1534         * auth-source.el (auth-source-create): Add the optional second
1535         parameter to `local-variable-p' to be compatible with XEmacs.
1536
1537 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
1538
1539         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
1540         work when using a compressed nnml folder.
1541
1542 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1543
1544         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
1545         backends after sanitising on entry, because this never makes sense:
1546         If the articles have gone missing, then the data no longer exists on
1547         the backend, and if they haven't, then Gnus is wrong, and shouldn't
1548         overwrite anything anyway.
1549
1550         * shr.el (shr-insert-document): Bind shr-width dynamically to
1551         window-width if it's nil.
1552
1553 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
1554
1555         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
1556         with the meaning of using the full emacs window width for rendering.
1557
1558 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
1559
1560         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
1561         case when sender is not given.
1562
1563 2010-12-23  Julien Danjou  <julien@danjou.info>
1564
1565         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
1566         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
1567         the addresses, otherwise we might misplaced the gravatar.
1568
1569 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
1570
1571         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
1572         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
1573         obsolete in Emacs.
1574
1575 2010-12-20  Julien Danjou  <julien@danjou.info>
1576
1577         * gnus-util.el (gnus-rescale-image): Revert last change.
1578
1579 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
1580
1581         * binhex.el: Improve commentary (Bug#7482).
1582
1583 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1584
1585         * gnus-group.el (gnus-group-delete-articles): New command.
1586
1587 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
1588
1589         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
1590
1591 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1592
1593         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
1594         here, since it's up to the backends to do CRLF removal if their
1595         protocol has it.
1596
1597         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
1598
1599 2010-12-17  Julien Danjou  <julien@danjou.info>
1600
1601         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
1602         they are from file. Can also scale up.
1603
1604 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
1605
1606         * gnus-sum.el (gnus-summary-refer-thread): Simplify code. Restore
1607         gnus-use-agent.
1608         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
1609
1610         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
1611
1612 2010-12-17  Julien Danjou  <julien@danjou.info>
1613
1614         * gravatar.el (gravatar-retrieve-synchronously): New function.
1615         (gravatar-get-data): Make more robust.
1616
1617 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1618
1619         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
1620
1621 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1622
1623         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
1624         to really consider the last line.
1625
1626 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
1627
1628         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
1629         list of recipient keys, or use symmetric encryption if not a list.
1630         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
1631         EPA override, replacing the call to `netrc-store-data'.
1632
1633 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
1634
1635         * gnus-srvr.el: Avoid passing nil regexp argument to
1636         delete-matching-lines.
1637
1638 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1639
1640         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
1641         fetching stops when Gnus exits.
1642
1643         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
1644         function.
1645         (nnfolder-request-expire-articles): Save all the buffers after doing
1646         expiry.
1647
1648         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
1649         the last article", since that led to serious performance regressions
1650         when expiring nnml groups.
1651
1652 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
1653
1654         * nnir.el: Improve customizations.
1655
1656 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1657
1658         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
1659
1660         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
1661         group has been killed.
1662         (gnus-group-yank-group): Ditto.
1663
1664         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
1665
1666         * nnimap.el (nnimap-request-update-group-status): New function.
1667
1668         * gnus-int.el (gnus-request-update-group-status): New interface
1669         function.
1670
1671         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
1672         copying read-ness to the backends.
1673
1674         * nnimap.el (nnimap-quirk): New function.
1675         (nnimap-retrieve-group-data-early): Use it.
1676         (nnimap-quirks): New alist.
1677
1678 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1679
1680         * shr.el (shr-insert): Set shr-start after deleting trailing space;
1681         don't delete it within indentation.
1682
1683 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1684
1685         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
1686         previous line.
1687
1688 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1689
1690         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
1691         QRESYNC command by deleting a superfluous space which broke Cyrus
1692         servers.  This change will break other servers that are buggy the other
1693         way around.
1694
1695 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
1696
1697         * spam.el: Reindent and fix long lines.
1698         (spam-copy-or-move-routine): Exclude invalid move destinations.
1699
1700 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
1701
1702         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
1703         installed the registry.
1704
1705 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1706
1707         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
1708
1709 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
1710
1711         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
1712         groupname doesn't contain "gmane".
1713
1714 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1715
1716         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
1717         and netrc-bound-and-true-p bindings.
1718         (netrc-parse): Cache the netrc contents.
1719
1720         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
1721         (gnus-1): Don't create the nndrafts group twice.
1722         (gnus-setup-news): There's no need to read the active file here, since
1723         that's done again later on a per-backend basis.
1724         (gnus-start-draft-setup): Make sure that the new group is started out
1725         empty.
1726
1727         * gnus-agent.el (gnus-agentize): Don't create the queue group
1728         automatically on startup.  It'll be created later, if needed.
1729
1730         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
1731         of automatically subscribed groups.
1732         (gnus-auto-subscribed-categories): New variable.
1733         (gnus-matches-options-n): Use it.
1734         (gnus-default-subscribed-newsgroups): Remove unused variable.
1735         (gnus-start-draft-setup): Message a bit less.
1736
1737 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
1738
1739         * nnir.el (nnir-run-imap): Return article list in order of increasing
1740         UID.
1741
1742 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1743
1744         * gnus-sum.el (gnus-summary-enter-digest-group):
1745         Mention gnus-auto-select-on-ephemeral-exit.
1746
1747         * proto-stream.el (proto-stream-open-network-only): Fix the calling
1748         convention of the network-only option.
1749
1750 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1751
1752         * proto-stream.el (proto-stream-open-network-only): New function to
1753         have a way to specify non-STARTTLS upgrade connections.
1754
1755 2010-12-10  Julien Danjou  <julien@danjou.info>
1756
1757         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
1758         email address is nil.
1759
1760         * message.el (message-bogus-recipient-p): Set address to "" if nil.
1761
1762 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
1763
1764         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
1765         deletion.
1766         (nnir-run-imap): Only need to parse list once.
1767
1768 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1769
1770         * shr.el (shr-tag-script): Ignore <script>.
1771         (shr-tag-label): Add <label> support.
1772
1773 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1774
1775         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
1776
1777         * shr.el (shr-image-displayer): Work for images lined side by side.
1778
1779 2010-12-08  Robert Pluim  <rpluim@gmail.com>
1780
1781         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
1782         parameter, since XEmacs doesn't accept t as a parameter.
1783
1784 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
1785
1786         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
1787         ids.
1788         (nnir-run-gmane): Simplify groupspec formatting.
1789         (nnir-request-expire-articles): New function.
1790
1791 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1792
1793         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
1794         overflow, possibly.
1795
1796         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
1797         (shr-render-td): Handle td style="" better.
1798         (shr-tag-table): Use the color from the style sheet.
1799         (shr-render-td): Make sure we copy over all the overlays, too.
1800
1801 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
1802
1803         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
1804         (nnir-request-article): Improve article retrieval.
1805
1806 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1807
1808         * mm-util.el (mm-extra-numeric-entities): New variable.
1809
1810         * mm-url.el (mm-url-decode-entities):
1811         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
1812
1813         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
1814
1815 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1816
1817         * message.el: Use completion-at-point.
1818         (message-completion-function): New fun, extracted from message-tab.
1819         (message-mode): Use it for completion-at-point-functions.
1820         (message-tab): Use it and completion-at-point.
1821
1822 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1823
1824         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
1825         character if a non-breakable character follows.
1826
1827 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1828
1829         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
1830         any stream.
1831
1832         * shr.el (shr-tag-font): Colorize the region.
1833         (shr-tag-body): Ditto.
1834         (shr-tag-font): Actually let the styles be inherited instead of
1835         overwriting them.
1836         (shr-tag-font): Get the background color right.
1837         (shr-tag-style): Ignore all <style> tags for the moment.
1838
1839         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
1840         a Message-ID to avoid having nnimap depend on gnus-sum.
1841
1842         * shr.el (shr-descend): Only colorize something if we have a node that
1843         sets colors.
1844
1845 2010-12-06  Julien Danjou  <julien@danjou.info>
1846
1847         * shr.el (shr-render-td): Render td content with shr-descend, so style
1848         will be applied to <td> too.
1849         (shr-colorize-region): Colorize region even if we only have a background.
1850         (shr-tag-body): Fix color and background color inheritance.
1851         Do not recolorize after shr-generic.
1852         (shr-tag-font): Let shr-generic colorize via inheritance.
1853
1854 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1855
1856         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
1857
1858 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
1859
1860         * nnir.el (nnir-request-move-article): Remove obsolete code.
1861
1862 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1863
1864         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
1865
1866 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1867
1868         * gnus-sum.el (gnus-summary-respool-article): The completion function
1869         expects a list instead of an alist.
1870
1871         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
1872         string as the parameter.
1873
1874         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
1875
1876         * shr.el (shr-stylesheet): New dynamic variable for cascading the
1877         styles.
1878         (shr-colorize-region): New function.
1879         (shr-insert-background-overlay): Remove.
1880         (shr-render-td): Background setting should be taken care of on a higher
1881         level.
1882         (shr-tag-body): Use post-hoc colorizations.
1883         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
1884         (shr-put-color-1): Don't overwrite old colors.
1885         (shr-colorize-region): When the background color isn't explicit, use
1886         a fixed background.
1887
1888         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
1889         nnmail variables.
1890
1891 2010-12-05  Bjørn Mork  <bjorn@mork.no>
1892
1893         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
1894         unless necessary.
1895
1896 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
1897
1898         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
1899         server.
1900
1901 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1902
1903         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
1904         so that TAB works.
1905
1906         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
1907         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
1908
1909         * shr.el (shr-urlify): Show the URL before the title to avoid
1910         misleading URLs.
1911
1912 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
1913
1914         * shr.el (shr-urlify): Display the title in <a> tags.
1915
1916 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
1917
1918         * nnir.el (nnir-categorize): Replace mapcar with mapc.
1919
1920 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
1921
1922         * nnir.el: Rearrange code to allow macros to be autoloaded by
1923         gnus-sum.el.
1924         (nnir-retrieve-headers-override-function): Make this variable
1925         customizable.
1926         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
1927
1928         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
1929         from nnir.el.
1930
1931 2010-12-03  Julien Danjou  <julien@danjou.info>
1932
1933         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
1934
1935 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1936
1937         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
1938         allow optional argument `environment'.
1939
1940 2010-12-03  Glenn Morris  <rgm@gnu.org>
1941
1942         * mm-extern.el (message-goto-body): Update declaration.
1943
1944 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1945
1946         * gnus-util.el (gnus-macroexpand-all): New function.
1947
1948         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
1949         instead of macroexpand-all that is unavailable in XEmacs.
1950
1951 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
1952
1953         * nnir.el (nnir-summary-line-format): New variable.
1954         (nnir-mode): Use it.
1955         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
1956         (nnir-article-ids): Reimplement as defsubst.
1957         (nnir-retrieve-headers): Don't mangle the subject header.
1958         (nnir-run-imap): Use 100 as RSV score.
1959         (nnir-run-find-grep): Fix for full server searching.
1960         (nnir-run-gmane): Better restriction to gmane groups.
1961
1962         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
1963         summary buffers.
1964
1965 2010-12-02  Julien Danjou  <julien@danjou.info>
1966
1967         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
1968
1969         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
1970
1971         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
1972         support.
1973
1974 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
1975
1976         * nnir.el: Update to handle the registry better.
1977         (autoload): Silence byte-compiler.
1978         (nnir-open-server): Add a hook for nnir groups.
1979         (nnir-request-move-article): Don't mangle the header. Better to use
1980         formating variables (which will be added in the future).
1981         (nnir-registry-action): Update the registry using the original article
1982         group name.
1983         (nnir-mode): Install nnir-specific hooks for updating the registry.
1984
1985         * gnus-sum.el
1986         (gnus-article-original-subject,gnus-newsgroup-original-name):
1987         Remove obsolete variables.
1988         (gnus-summary-move-article): Remove use of obsolete variables.
1989         (gnus-summary-local-variables): Make move and delete hooks local to
1990         summary buffers.
1991
1992 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1993
1994         * rtree.el: New file.
1995
1996 2010-12-01  Julien Danjou  <julien@danjou.info>
1997
1998         * message.el (message-user-organization): Do not use
1999         gnus-local-organization.
2000
2001         * gnus.el: Remove gnus-local-organization.
2002
2003         * gnus-msg.el: Remove nastygram thing.
2004
2005 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
2006
2007         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
2008         funcall.
2009
2010 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2011
2012         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
2013         names.
2014
2015         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
2016         characters.
2017
2018         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
2019         to t of inhibit-read-only since it is inside gnus-with-article-headers.
2020         Suggested by Štěpán Němec <stepnem@gmail.com>.
2021         (gnus-gravatar-transform-address): Use mail-extract-address-components
2022         that supports non-ASCII names rather than mail-header-parse-addresses.
2023
2024 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2025
2026         * proto-stream.el (open-protocol-stream): All starttls connections are
2027         handled by the network handler.
2028
2029 2010-11-30  Julien Danjou  <julien@danjou.info>
2030
2031         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
2032         (nnimap-open-connection-1): Fix PREAUTH.
2033
2034         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
2035
2036 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2037
2038         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
2039         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
2040         (shr-insert): Use them.
2041         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
2042
2043 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
2044
2045         * nnir.el (nnir-request-move-article): Bail out if original group
2046         doesn't support article moves.
2047         (nnir-get-active): Improve active list retrieval.
2048
2049 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2050
2051         * shr.el (shr-find-fill-point): Don't break before apostrophes.
2052
2053 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
2054
2055         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
2056         seem to accept strings-with-numbers as port numbers,
2057
2058 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
2059
2060         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
2061         change the registry.
2062
2063 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2064
2065         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
2066         delete-dups that is not available in XEmacs 21.4.
2067
2068         * mm-util.el (mm-delete-duplicates): Add comment.
2069
2070 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
2071
2072         * nnir.el (nnir-ignored-newsgroups): New variable.
2073         (nnir-get-active): Use it.
2074
2075 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2076
2077         * proto-stream.el (proto-stream-open-network): Add some comments.
2078
2079         * nntp.el (nntp-open-connection): Provide a :success condition.
2080
2081         * nnimap.el (nnimap-open-connection-1): Ditto.
2082
2083         * proto-stream.el (proto-stream-open-network): See what the response to
2084         the STARTTLS command is.
2085
2086         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
2087         backwards compatibility).
2088         (nnimap-open-connection-1): Really respect nnimap-server-port.
2089
2090         * proto-stream.el (proto-stream-open-network): When doing opportunistic
2091         TLS upgrades we don't really care about the identity of the peer.
2092         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
2093         that what we've checked for.
2094         (proto-stream-always-use-starttls): Only default to t if
2095         open-gnutls-stream exists.
2096         (proto-stream-open-network): If STARTTLS failed, then just open a
2097         normal connection.
2098         (proto-stream-open-network): Wait until the greeting before doing
2099         STARTTLS.
2100
2101         * nntp.el (nntp-open-connection): Report what the connection error is.
2102
2103         * proto-stream.el (open-protocol-stream): Rename from
2104         open-proto-stream.
2105
2106 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2107
2108         * nnimap.el (nnimap-stream): Change default to `undecided'.
2109         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
2110         first, and then network.
2111         (nnimap-open-connection-1): Respect nnimap-server-port.
2112         (nnimap-open-connection): Be more backwards-compatible.
2113
2114         * proto-stream.el (proto-stream-always-use-starttls): New variable.
2115         (proto-stream-open-starttls): De-duplicate the starttls code.
2116         (proto-stream-open-starttls): Folded back into the main function.
2117         (proto-stream-open-network): Fix typo in the gnutls path.
2118         (proto-stream-command): Refactor out.
2119
2120         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
2121
2122         * proto-stream.el (proto-stream-open-starttls): Actually implement the
2123         starttls.el STARTTLS.
2124
2125         * color.el (color-lab->srgb): Fix function call name.
2126
2127         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
2128         if we're using tls.el.
2129         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
2130         built in, then don't try to establish a STARTTLS connection.
2131
2132         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
2133         servers.
2134
2135         * proto-stream.el (open-proto-stream): Use network, not stream.
2136         (open-proto-stream): Add a way to specify what the end of a command is.
2137
2138         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
2139         connections types.
2140         (nntp-open-network-stream): Remove.
2141         (nntp-open-ssl-stream): Remove.
2142         (nntp-open-tls-stream): Remove.
2143         (nntp-ssl-program): Remove.
2144
2145         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
2146
2147 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
2148
2149         * nnir.el: Fix typos.
2150         (nnir-retrieve-headers-override-function): Rename variable to reflect
2151         new semantics.
2152         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
2153         macros.
2154         (nnir-request-article, nnir-request-move-article): Use them.
2155         (nnir-categorize): New function.
2156         (nnir-run-query): Use it.
2157         (nnir-retrieve-headers): Rewrite to batch header retrieval.
2158         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
2159         sorted.
2160         (nnir-group-full-name): Use gnus-group-full-name instead.
2161         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
2162         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
2163
2164 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2165
2166         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
2167
2168         * proto-stream.el: New library to provide protocol-specific
2169         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
2170         protocols.
2171         (open-proto-stream): Complete the documentation.
2172         (proto-stream-open-network): Fix some typos.
2173
2174         * nnimap.el (nnimap-open-connection): Use it.
2175
2176 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
2177
2178         * pop3.el (pop3-open-server): Read server greeting before starting TLS
2179         negotiation.
2180
2181 2010-11-26  Julien Danjou  <julien@danjou.info>
2182
2183         * color.el: Rename various rgb functions to srgb.
2184
2185 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2186
2187         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
2188         names.
2189
2190 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2191
2192         * shr.el (shr-insert): Revert last change.
2193         (shr-find-fill-point): Never leave point being at bol;
2194         relax the kinsoku limitation when rendering tables.
2195
2196 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2197
2198         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
2199         results from -accept-article.
2200
2201         * shr-color.el: Require cl when compiling.
2202
2203         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
2204         checkin.
2205
2206         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
2207
2208         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
2209
2210         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
2211         'add and 'delete to set backend marks.
2212
2213         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
2214
2215         * nnheader.el (nnheader-update-marks-actions): Refactor out.
2216
2217         * nntp.el (nntp-request-set-mark): Use it.
2218
2219         * nnfolder.el (nnfolder-request-set-mark): Ditto.
2220
2221         * nnml.el (nnml-request-set-mark): Ditto.
2222
2223         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
2224         introduces regressions in article selection.
2225         (nnimap-find-uid-response): New function.
2226         (nnimap-request-accept-article): Use the UID returned, if any.
2227         (nnimap-request-move-article): Use the UID returned, if any.
2228         (nnimap-get-groups): Reimplement to work with folded lines.
2229         (nnimap-find-uid-response): The UID is the last element in the list.
2230         (nnimap-request-set-mark): Extend syntax with 'set.
2231
2232         * nnml.el (nnml-request-set-mark): Ditto.
2233
2234         * nnfolder.el (nnfolder-request-set-mark): Ditto.
2235
2236         * nntp.el (nntp-request-set-mark): Ditto.
2237
2238 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2239
2240         * message.el (message-called-interactively-p): A temporary macro.
2241         (message-goto-body): Use it temporarily.
2242
2243 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2244
2245         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
2246         (nnimap-last-response-string): Unfold quoted lines, if they exist.
2247         (nnimap-last-response-string): Fix last unfolding fix.
2248
2249 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2250
2251         * shr.el (shr-insert): Fix the way to fold lines.
2252
2253 2010-11-25  Julien Danjou  <julien@danjou.info>
2254
2255         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex
2256
2257         * color.el: Rename from color-lab.el
2258         (color-rgb->hex): Add.
2259         (color-complement): Add.
2260         (color-complement-hex): Add.
2261
2262         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
2263
2264 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2265
2266         * shr-color.el (shr-color-visible): Don't bug out if the colour names
2267         don't exist.
2268
2269 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2270
2271         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
2272         assuming that article displaying or another mml-preview may be
2273         interrupted for an error or for the like.
2274
2275         * shr.el (shr-get-background): Fix argument name.
2276
2277 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2278
2279         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
2280
2281         * gnus-sum.el (gnus-summary-include-articles): New function.
2282
2283         * message.el (message-goto-body): called-interactively-p needs a
2284         parameter, so use `any'.
2285
2286         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
2287         clear marks before moving, since they're synced from the Gnus side
2288         first.
2289
2290         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
2291         (gnus-summary-move-article): Copy over all marks before moving, so that
2292         IMAP doesn't think a new article has arrived.
2293
2294 2010-11-24  Julien Danjou  <julien@danjou.info>
2295
2296         * shr.el (shr-insert-background-overlay): Fix typo.
2297         (shr-render-td): Copy the background before rendering.
2298
2299         * shr-color.el (shr-color-visible): Fix docstring.
2300
2301         * shr.el (shr-tag-table): Add bgcolor support.
2302         (shr-render-td): Add bgcolor support.
2303         (shr-get-background): Add.
2304         (shr-insert-foreground-overlay): Use shr-get-background.
2305
2306         * message.el (message-goto-body): Use called-interactively-p.
2307         (message-in-body-p): message-goto-body returns point.
2308
2309 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2310
2311         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
2312         Fixes something or other in Emacs 23, and is backwards compatible.
2313
2314         * message.el (message-goto-body): Remove the <#secure special-casing,
2315         which is too special.
2316
2317         * shr.el (shr-parse-style): Drop !important from styles.
2318
2319 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
2320
2321         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
2322         this function to return incorrect results when calling it with an
2323         explicit article argument different from
2324         (gnus-summary-article-number).
2325
2326 2010-11-24  Julien Danjou  <julien@danjou.info>
2327
2328         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
2329         (shr-tag-body): Add background support.
2330         (shr-descend): Add background support.
2331         (shr-tag-title): Add.
2332
2333         * shr-color.el (shr-color-visible): Really return original background
2334         if fixed.
2335
2336 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2337
2338         * shr.el (shr-color-check): Protect against non-existent colour names.
2339
2340 2010-11-24  Julien Danjou  <julien@danjou.info>
2341
2342         * color-lab.el: Require 'cl when compiling.
2343
2344         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
2345
2346         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
2347         matched part.
2348
2349         * color-lab.el: Fix all expt calls to use float type.
2350
2351 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2352
2353         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
2354         expression to shr-color-check as is.
2355
2356         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
2357
2358         * color-lab.el: Add coding cookie.
2359         (float-pi): Use eval-and-compile.
2360
2361         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
2362         compiled for Emacsen having no `libxml-parse-html-region' support.
2363
2364 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2365
2366         * shr.el (shr-insert-color-overlay): Split stuff like
2367         "#444444 !important" to find the real colour.
2368         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
2369         parse <font color="red"> entries.
2370
2371 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
2372
2373         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
2374         point when parsing headers.
2375
2376         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
2377         is positioned properly when parsing headers.
2378
2379 2010-11-23  Julien Danjou  <julien@danjou.info>
2380
2381         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
2382
2383         * shr-color.el (shr-color->hexadecimal): Add support for color names.
2384
2385         * shr.el (shr-parse-style): Replace \n with space in style parsing.
2386
2387         * shr-color.el (shr-color-hsl-to-rgb-fractions):
2388         Use shr-color-hue-to-rgb.
2389         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
2390
2391 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2392
2393         * shr.el (shr-color->hexadecimal): Autoload.
2394         (shr-descend): Add color to all tags.
2395
2396 2010-11-22  Julien Danjou  <julien@danjou.info>
2397
2398         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
2399         shr-color->hexadecimal.
2400
2401         * shr-color.el (shr-color->hexadecimal): Add converting functions for
2402         RGB() or HSL() color representation.
2403
2404         * shr.el (shr-tag-font): Add.
2405         (shr-tag-color-check): New function to get better colors.
2406         (shr-tag-insert-color-overlay): Factorize code between tag-font and
2407         tag-span.
2408
2409         * shr-color.el: New file.
2410
2411         * color-lab.el: New file.
2412
2413         * gnus-art.el (gnus-url-mailto): Do not downcase args.
2414
2415 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
2416
2417         * nnir.el: Fix typo in comments.
2418         (nnir-run-imap): Simplify code. No need to reverse artlist.
2419         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
2420
2421 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2422
2423         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
2424
2425         * nnimap.el (nnimap-get-capabilities): Refactor out.
2426         (nnimap-open-connection): Re-request capabilities after STARTTLS.
2427
2428 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
2429
2430         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
2431         appearing when `mm-uu-hide-markers' is nil.
2432
2433 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2434
2435         * nnimap.el (nnimap-unselect-group): Make into its own function.
2436         (nnimap-request-rename-group): Unselect group before renaming.
2437         This had gotten lost somewhere.
2438         (nnimap-request-accept-article): Keep track of examined groups, and
2439         unselect the group before APPENDing to read-only groups.
2440         (nnimap-request-move-article): Clear flags before moving so that they
2441         can be re-set later.
2442
2443 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2444
2445         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
2446         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
2447
2448 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2449
2450         * gnus-art.el (gnus-mime-display-single)
2451         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images)
2452         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
2453         parameter.
2454
2455 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2456
2457         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
2458         (shr-table-vertical-line): New variable.
2459         (shr-insert-table): Use it.
2460
2461 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2462
2463         * gnus-html.el (gnus-html-wash-images): Don't display images if
2464         gnus-inhibit-images is non-nil; register displayer for cid images.
2465         (gnus-html-display-image): Work for cid image.
2466         (gnus-html-insert-image): Allow arguments.
2467         (gnus-html-put-image): Inhibit read-only.
2468         (gnus-html-prefetch-images): Don't prefetch images if
2469         gnus-inhibit-images is non-nil.
2470
2471 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2472
2473         * shr.el (shr-put-image): Break lines when inserting big pictures.
2474
2475 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
2476
2477         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
2478         sender, thanks Katsumi Yamaoka.
2479
2480 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
2481
2482         * nnir.el (nnir-run-imap): Reverse the article list for each group
2483         rather than the whole list.
2484
2485 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
2486
2487         * shr.el (shr-image-displayer): Protect function against non-existent
2488         image source.
2489
2490         * gnus-art.el (gnus-inhibit-images): New user option.
2491         (gnus-mime-display-single): Don't display image if it is non-nil.
2492
2493         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
2494         gnus-inhibit-images.
2495
2496         * shr.el (shr-image-displayer): New function.
2497         (shr-tag-img): Use it.
2498
2499 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
2500
2501         * mml2015.el (mml2015-epg-sign): Use From header.
2502
2503 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2504
2505         * gnus-html.el (gnus-html-wash-images): Register a displayer.
2506
2507         * gnus-util.el (gnus-find-text-property-region): Return markers.
2508
2509         * shr.el (shr-tag-img): Put a displayer in the text property.
2510
2511         * gnus-util.el (gnus-find-text-property-region): New utility function.
2512
2513         * gnus-html.el (gnus-html-display-image): Make the alt optional.
2514         (gnus-html-show-images): Remove.
2515
2516         * gnus-art.el (gnus-article-show-images): New, more general function.
2517
2518         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
2519         image url text properties.
2520
2521         * shr.el: Ditto.
2522
2523         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
2524         gnus-agent-auto-agentize-methods is set.  Which it isn't.
2525
2526 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2527
2528         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
2529         work for two or more articles.
2530
2531 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2532
2533         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
2534         divide an image that's in an html article to two or more when washing
2535         non-ASCII characters in alt text of it.
2536
2537 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2538
2539         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
2540         smime-decrypt-region using function argument.
2541         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
2542
2543         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
2544
2545         * smime.el (smime-decrypt-region): Catch it.
2546
2547 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2548
2549         * smime.el (smime-mode-map): Move initialization into declaration.
2550         (gnus-run-mode-hooks): Don't autoload.
2551         (smime-mode): Use define-derived-mode.
2552
2553 2010-11-11  Glenn Morris  <rgm@gnu.org>
2554
2555         * smime.el (from): Restrict declaration to XEmacs.
2556
2557         * nnir.el (gnus-group-topic-name): Autoload.
2558
2559 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2560
2561         * shr.el (shr-insert): Don't break long line if it is because of
2562         kinsoku-bol characters in the line end.
2563
2564 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
2565
2566         * nnir.el (nnir-request-move-article): Fix to provide original group
2567         and subject.
2568         (nnir-warp-to-article): Don't fail on articles whose headers haven't
2569         been retrieved.
2570
2571         * gnus-sum.el (gnus-summary-move-article): Use original group and
2572         subject for virtual articles such as those in an nnir summary buffer.
2573
2574 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2575
2576         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
2577         least 21.5).
2578
2579         * smime.el (from): Declare it again for XEmacs.
2580
2581 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2582
2583         * message.el (message-resend): Don't disable encoding unless it's
2584         already encoded.
2585
2586         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
2587         low-numbered articles.
2588
2589 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2590
2591         * rfc2047.el (rfc2047-syntax-table): Simplify.
2592
2593         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
2594
2595         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
2596         set-char-table-range for XEmacs.
2597
2598 2010-11-10  Glenn Morris  <rgm@gnu.org>
2599
2600         * time-date.el (time-to-seconds): Always an alias on Emacs,
2601         never a real function.
2602         (with-no-warnings): Remove compat stub, now unused.
2603         (time-less-p): Doc fix.
2604         (time-to-number-of-days): Simplify.
2605
2606         * smime.el (from): Remove unused declaration.
2607
2608         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
2609         (gnus-float-time): On Emacs, always an alias.
2610
2611         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
2612         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
2613
2614 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2615
2616         * dgnushack.el: Don't use ignore-errors in the top level form since it
2617         is unavailable in XEmacs even if cl is loaded.
2618
2619         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
2620
2621 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2622
2623         * shr.el (browse-url-mailto): Autoload.
2624
2625         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
2626
2627         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
2628         regexp doesn't need quoting.
2629
2630 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
2631
2632         * message.el (message-subject-trailing-was-ask-regexp)
2633         (message-subject-trailing-was-regexp): Match was: in addition to was.
2634
2635 2010-11-09  Glenn Morris  <rgm@gnu.org>
2636
2637         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
2638         (nnbabyl-check-mbox): Use point-at-bol.
2639
2640 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2641
2642         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
2643
2644         * message.el (message-mailto): New function.
2645         (message-mailto): Should accept other parameters.
2646         (message-mailto): Remove since it duplicates browse-url-mailto
2647         functionality.
2648
2649 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2650
2651         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
2652         methods.
2653         (gnus-read-active-file): Ditto.
2654
2655         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
2656         ": " from the prompt.
2657         (gnus-group-make-group): Ditto.
2658
2659 2010-11-07  Glenn Morris  <rgm@gnu.org>
2660
2661         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
2662         (gnus-bookmark-kill-line): Use point-at-eol.
2663
2664 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2665
2666         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
2667         asterisks in From header.
2668
2669 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2670
2671         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
2672         string to avoid making the From headers syntactically invalid.
2673
2674         * message.el (message-send-mail): Don't insert courtesy messages if the
2675         message already has List-Post and List-ID messages.
2676
2677 2010-11-06  Glenn Morris  <rgm@gnu.org>
2678
2679         * gnus-art.el (gnus-treat-article): Give dynamic local variables
2680         `condition', `type', `length' a prefix.
2681         (gnus-treat-predicate): Update for above name changes.
2682
2683 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
2684
2685         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
2686         binding.  Handled by `gnus-summary-refer-thread' instead.
2687         (nnir-warp-to-article): New backend function.
2688
2689         * nnimap.el (nnimap-request-thread): Force dependency updating.
2690
2691         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
2692         (gnus-summary-refer-thread): Rework to improve thread-referral.
2693
2694         * gnus-int.el (gnus-warp-to-article): New function.
2695
2696         * gnus-sum.el (gnus-summary-article-map): Bind it.
2697
2698 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
2699
2700         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
2701         gnus-summary-refer-thread.
2702
2703         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
2704         headers.
2705         (gnus-summary-limit-include-thread): Prevent articles in thread from
2706         being cut in gnus-cut-threads.
2707         (gnus-summary-refer-thread): Limit retrieved headers to those in
2708         thread.
2709
2710 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2711
2712         * message.el (message-send-mail): Use the value of
2713         message-courtesy-message from the message buffer.
2714
2715         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
2716
2717         * shr.el (shr-browse-url): Implement mailto: URLs.
2718
2719         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
2720         "raw".
2721
2722         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
2723         if it's already selected.
2724
2725         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
2726
2727 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2728
2729         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
2730         to measure the length and truncate alt text.
2731
2732 2010-11-03  Glenn Morris  <rgm@gnu.org>
2733
2734         * nndiary.el (nndiary-generate-nov-databases-1)
2735         (nndiary-generate-active-info): Rename dynamic variable `files' to
2736         something less generic.
2737
2738 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
2739
2740         * nnir.el (nnir-request-move-article): Call the underlying backend to
2741         move articles from nnir.
2742
2743 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2744
2745         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
2746
2747 2010-11-02  Julien Danjou  <julien@danjou.info>
2748
2749         * nnir.el: Remove wais support.
2750
2751 2010-11-02  Glenn Morris  <rgm@gnu.org>
2752
2753         * gnus-html.el: Reorder requirements to quieten compiler.
2754
2755 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2756
2757         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
2758         properly for XEmacs as well.
2759         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
2760         (gnus-article-natural-long-line-p): Use window-width rather than
2761         frame-width.
2762
2763 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
2764
2765         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
2766         (nnir-read-parms): Don't modify query.
2767         (nnir-run-query): Add ability to search topic on current line.
2768         (nnir-get-active): Clean up.
2769
2770 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2771
2772         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
2773         degenerate articles.
2774
2775         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
2776         (gnus-print-buffer): Just print the buffer as is, without any copying
2777         to a buffer and then re-highlighting.
2778
2779         * nnimap.el (nnimap-request-group): Store the new updated info.
2780         (nnimap-request-group): Select the group when we don't know whether it
2781         exists or not.
2782
2783         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
2784         groups.
2785
2786         * gnus-group.el (gnus-group-find-new-groups): Display all the new
2787         groups.
2788
2789         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
2790         groups.
2791
2792         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
2793         long-lines case by only filling the long lines.
2794
2795         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
2796         (bug #7311).
2797
2798 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2799
2800         * shr.el: No need to declare `declare-function' since shr.el is for
2801         only Emacsen that provide `libxml-parse-html-region'.
2802
2803         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
2804         effective only in a file it is referred to.
2805
2806 2010-11-01  Glenn Morris  <rgm@gnu.org>
2807
2808         * mm-util.el (gnus-completing-read): Autoload.
2809         (mm-read-coding-system): Simplify Emacs definition.
2810
2811         * nnmail.el (gnus-activate-group):
2812         * nnimap.el (gnutls-negotiate):
2813         * nntp.el (netrc-parse): Fix declarations.
2814
2815 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2816
2817         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
2818         string-match-p in Emacs >=23.
2819
2820         * gnus-msg.el (gnus-configure-posting-styles)
2821         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
2822
2823 2010-11-01  Glenn Morris  <rgm@gnu.org>
2824
2825         * nnir.el (declare-function): Add compat stub.
2826         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
2827         (nnir-run-gmane): Require 'mm-url.
2828
2829         * mm-util.el (mm-string-to-multibyte): Simplify.
2830
2831         * shr.el (declare-function): Add compat stub.
2832         (url-cache-create-filename): Declare.
2833         (mm-disable-multibyte, widget-convert-button): Autoload.
2834
2835         * smime.el (ldap-search): Declare.
2836         (smime-cert-by-ldap-1): Require ldap on Emacs.
2837
2838         * nnimap.el: Require nnmail, and gnus-sum when compiling.
2839         (nnimap-keepalive): Use gnus-float-time.
2840
2841         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
2842         (mail-source-delete-crash-box): Use gnus-float-time.
2843
2844         * gnus-dired.el (gnus-completing-read): Autoload.
2845
2846         * mm-view.el (gnus-rescale-image): Autoload.
2847
2848         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
2849
2850         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
2851
2852         * sieve-manage.el: Require 'cl when compiling.
2853
2854         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
2855         (gnus-iswitchb-completing-read): Require iswitchb.
2856         (gnus-select-frame-set-input-focus): Silence compiler.
2857
2858 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2859
2860         * message.el (message-subject-trailing-was-query): Change default to t,
2861         since I think that's what most people want.
2862
2863         * nnimap.el (nnimap-request-accept-article): Erase buffer before
2864         appending for easier debugging.
2865         (nnimap-wait-for-connection): Take a regexp.
2866         (nnimap-request-accept-article): Wait for the continuation line before
2867         sending anything unless we're streaming.
2868
2869         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
2870         leave the header washing to take place.
2871
2872 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
2873
2874         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
2875         regular expression match and replace in posting styles.
2876
2877 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
2878
2879         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
2880         an entire server.
2881         (nnir-get-active): New function.
2882         (nnir-run-imap): Use it.
2883         (nnir-run-gmane): Who knew, gmane search returns an article score!
2884
2885         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
2886         server on the current line with nnir.
2887
2888 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2889
2890         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
2891         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
2892         left edge.
2893         (gnus-article-foldable-buffer): Skip past the prefix when determining
2894         raggedness.
2895
2896         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
2897         the raw article, and change `C-u g' to show the article without doing
2898         treatments.
2899
2900         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
2901         on to `gnus-treat-article'.
2902         (gnus-inhibit-article-treatments): New variable.
2903
2904         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
2905
2906         * gnus-art.el (gnus-treatment-function-alist): Have
2907         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
2908         (gnus-treat-fill-long-lines): Change default to fill all text/plain
2909         sections.
2910
2911         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
2912         parameter.
2913         (gnus-article-fill-cited-long-lines): New function.
2914         (gnus-article-fill-cited-article): Allow filling only long sections.
2915
2916         * shr.el (shr-find-fill-point): Don't break lines between punctuation
2917         and non-punctuation (like after the apostrophe in "'We").
2918
2919         * gnus-sum.el (gnus-summary-select-article): Make sure
2920         gnus-original-article-buffer is alive.
2921
2922         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
2923         reflect the order they're in in the digest.
2924
2925         * gnus.el (gnus-group-startup-message): Move point to the start of the
2926         buffer.
2927
2928         * nnimap.el (nnimap-capability): New function.
2929         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
2930         is set.
2931
2932 2010-10-31  David Engster  <dengste@eml.cc>
2933
2934         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
2935         conform with changes to gnus-completing-read.
2936
2937 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2938
2939         * shr.el (shr-tag-img): Output "*" instead of "[img]".
2940
2941 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
2942
2943         * nnir.el: Move defvar, defcustom around to keep file organized
2944         and keep byte-compiler quiet.
2945         (nnir-read-parms): Accept search-engine as arg.
2946         (nnir-run-query): Pass search-engine as arg.
2947         (nnir-search-engine): Remove.
2948
2949 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2950
2951         * shr.el (shr-generic): The text nodes should be text, not :text.
2952
2953         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
2954         later in the file.
2955
2956 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
2957
2958         * nnir.el: General clean up.  Allow searching with multiple engines.
2959         Allow separate extra-parameters for each engine.
2960         Batch queries when possible.
2961         (nnir-imap-default-search-key,nnir-method-default-engines):
2962         Add customize interface.
2963         (nnir-run-gmane): New engine.
2964         (nnir-engines): Use it.  Qualify all prompts with engine name.
2965         (nnir-search-engine): Remove global variable.
2966         (nnir-run-hyrex): Restore for now.
2967         (nnir-extra-parms,nnir-search-history): New variables.
2968         (gnus-group-make-nnir-group): Use them.
2969         (nnir-group-server): Remove in favor of gnus-group-server.
2970         (nnir-request-group): Avoid searching twice.
2971         (nnir-sort-groups-by-server): New function.
2972
2973 2010-10-30  Julien Danjou  <julien@danjou.info>
2974
2975         * gnus-group.el: Remove gnus-group-fetch-control.
2976
2977         * gnus-start.el (gnus-find-new-newsgroups):
2978         Remove gnus-check-first-time-used.
2979
2980         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
2981
2982 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
2983
2984         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
2985         set on groups that don't have \* permanentflags.
2986
2987 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2988
2989         * shr.el (shr-tag-span): Drop colorisation of regions since we don't
2990         control the background color.
2991         (shr-tag-img): Ignore very small web bug type images.
2992         (shr-put-image): Add help-echo alt texts to the images.
2993         (shr-tag-video): Show the video poster image.
2994
2995 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2996
2997         * shr.el (shr-table-depth): New variable.
2998         (shr-tag-table-1): Only insert the images after the top-level table.
2999
3000         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
3001
3002         * gnus-util.el (gnus-list-memq-of-list): New function.
3003
3004         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
3005         selected.
3006         (nnimap-unsplittable-articles): New slot.
3007         (nnimap-new-articles): Use it.
3008
3009 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
3010
3011         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
3012         move to the previous line on `M-g'.
3013
3014 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3015
3016         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
3017         *-request-group, which seems unnecessary.
3018
3019         * nnimap.el (nnimap-quote-specials): Function copied over from
3020         imap.el.
3021         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
3022         they support that.  Suggested by Tom Regner.
3023
3024 2010-10-29  Julien Danjou  <julien@danjou.info>
3025
3026         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
3027         defalias.
3028         (gnus-summary-delete-marked-with): Remove obsolete defalias.
3029
3030         * gnus.el: Remove `gnus-nntp-service' variable.
3031         (gnus-secondary-servers): Make obsolete.
3032         (gnus-nntp-server): Make obsolete.
3033
3034         * gnus-start.el (gnus-1): Remove x-splash calls.
3035
3036         * gnus-ems.el (gnus-x-splash): Remove.
3037
3038         * gnus.el (gnus-group-startup-message): Simplify/update code.
3039
3040         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
3041         definition.
3042
3043         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
3044         capability before doing anything.
3045         (gnus-group-insert-group-line): Remove useless
3046         gnus-group-remove-excess-properties.
3047
3048 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3049
3050         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
3051
3052 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3053
3054         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
3055         config after reselecting.
3056
3057 2010-10-28  Julien Danjou  <julien@danjou.info>
3058
3059         * shr.el (shr-put-image): Use point even if only inserting text.
3060         (shr-put-image): Save excursion when inserting alt text on non-graphic
3061         display, so the behaviour is the same when we are on a graphic display.
3062
3063         * nnir.el (nnir-run-swish-e): Remove hyrex support.
3064
3065 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3066
3067         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
3068         (gnus-mime-copy-part): Check coding system, not charset.
3069         (gnus-mime-view-part-externally): Never remove part.
3070         (gnus-mime-view-part-internally): Don't remove part here.
3071         (gnus-article-part-wrapper): Make sure MIME tag is visible.
3072         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
3073         multipart/alternative.
3074
3075         * mm-decode.el (mm-display-part): Take optional arg `force'.
3076
3077 2010-10-26  Julien Danjou  <julien@danjou.info>
3078
3079         * gnus-group.el (gnus-group-default-list-level): Add this function to
3080         compute the default list level.
3081         (gnus-group-default-list-level): Add possibility to use a function.
3082
3083 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3084
3085         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
3086
3087         * gnus-group.el (gnus-group-completing-read)
3088         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
3089         gnus-replace-in-string.
3090
3091 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3092
3093         * shr.el (shr-tag-div): Add.
3094
3095         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
3096
3097 2010-10-25  Julien Danjou  <julien@danjou.info>
3098
3099         * gnus-util.el: Remove `gnus-with-local-quit'.
3100
3101         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
3102
3103 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3104
3105         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
3106         the original article buffer.
3107
3108 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3109
3110         * nnimap.el (nnimap-request-head): New function.
3111         (nnimap-request-move-article): Try to be slighly faster by not
3112         requesting the entire message when moving.
3113         (nnimap-transform-headers): Don't bug out on bodiless articles.
3114         (nnimap-send-command): Have no outstanding messages if the IMAP server
3115         doesn't support streaming.
3116         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
3117
3118 2010-10-24  Julien Danjou  <julien@danjou.info>
3119
3120         * message.el (message-default-headers): Fix type.
3121
3122 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3123
3124         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
3125         prefetching images.
3126
3127         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
3128         backend for unknown groups.  This is mainly useful for nnimap groups.
3129
3130         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
3131         group isn't covered by the agent.
3132
3133 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
3134
3135         * nnir.el (nnir-method-default-engines): New variable.
3136         (nnir-run-query): Use it.
3137         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
3138         (gnus-summary-nnir-goto-thread): Change group if needed.
3139
3140         * gnus-group.el (gnus-group-group-map): Add key binding for
3141         gnus-group-make-nnir-group.
3142
3143 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3144
3145         * shr.el (shr-tag-object): Add.
3146
3147         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
3148         original article buffer live.
3149         (gnus-summary-select-article-buffer):
3150         Mention gnus-widen-article-buffer.
3151
3152 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3153
3154         * shr.el (shr-tag-strong): Add.
3155
3156 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3157
3158         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
3159         group names.  They mess up the group buffer badly.
3160
3161         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
3162
3163         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
3164         instead of the summary one.
3165
3166 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3167
3168         * mml.el (mml-preview): Work properly when editing article.
3169
3170         * gnus-start.el (gnus-read-active-file-1): Don't add method to
3171         gnus-have-read-active-file if it's already been in.
3172
3173 2010-10-22  Tom Tromey  <tromey@redhat.com>
3174
3175         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
3176         gnus-group-completing-read.
3177
3178 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3179
3180         * message.el (message-mode-map): Don't bind M-; to comment region, to
3181         allow the global comment-dwim to work.
3182
3183 2010-10-21  Julien Danjou  <julien@danjou.info>
3184
3185         * message.el (message-setup-1): Allow message-default-headers to be a
3186         function.
3187
3188 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3189
3190         * shr.el (shr-tag-table): Simplify.
3191
3192 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3193
3194         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
3195         to avoid trying to snarf invalid stuff.
3196
3197         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
3198
3199         * gnus.el (gnus-message-archive-group): Quote value.
3200         (gnus-message-archive-group): Mark as changed.
3201
3202         * shr.el (shr-add-font): Don't put the font properties on the newline
3203         or the indentation.
3204
3205         * message.el (message-fix-before-sending): Change options when sending
3206         non-printable characters.
3207
3208         * gnus.el (gnus-message-archive-method): Change the default to
3209         monthly outgoing groups.
3210
3211         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
3212         that have gotten new numbers.
3213
3214         * nnimap.el (nnimap-request-replace-article): New function.
3215
3216 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3217
3218         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
3219         (nnrss-request-article): Don't use special html washing code.
3220
3221 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3222
3223         * shr.el (shr-tag-table): Remove useless nconc.
3224
3225 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3226
3227         * gnus-art.el (article-wash-html): Simplify and remove the charset
3228         stuff.  Use the normal html rendering code instead of the special html
3229         washing code.
3230
3231         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
3232         `gnus-w3m' symbols.
3233         (mm-text-html-washer-alist): Remove.
3234
3235         * mm-decode.el (mm-inline-text-html-renderer): Remove.
3236         (mm-inline-media-tests): Remove use.
3237         (mm-text-html-renderer): Change default to the `shr' symbol.
3238
3239         * mm-view.el (mm-inline-text-html): Remove use.
3240
3241         * gnus-art.el (gnus-blocked-images): New function.  Allow the
3242         `gnus-blocked-images' to be a function.
3243         (gnus-article-wash-function): Remove.
3244
3245 2010-10-20  Julien Danjou  <julien@danjou.info>
3246
3247         * spam.el (spam-list-of-processors): Mark as obsolete.
3248
3249         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
3250         (nnimap-insert-partial-structure): Fix boundary detection.
3251
3252 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
3253
3254         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
3255         run file-truename on remote files.  This can be expensive and even
3256         prevent one from editing drafts if some unrelated buffer has a stale
3257         connection.
3258
3259 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3260
3261         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
3262         kinsoku-eol regardless of shr-kinsoku-shorten.
3263         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
3264         (shr-tag-table): Support caption, thead, and tfoot.
3265
3266 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3267
3268         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
3269         lines.
3270         (shr-save-contents): New command and keystroke.
3271
3272         * nndoc.el (nndoc-type-alist): Add git support.
3273         (nndoc-git-type-p): New function.
3274         (nndoc-transform-git-article): Ditto.
3275         (nndoc-transform-git-headers): Ditto.
3276         (nndoc-transform-git-headers): Generate Subject headers.
3277
3278         * shr.el (shr-parse-style): New function.
3279         (shr-tag-span): Ditto.
3280
3281         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
3282         to `G G' to avoid collisions.
3283
3284 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3285
3286         * shr.el: Load kinsoku if necessary.
3287         (shr-kinsoku-shorten): New internal variable.
3288         (shr-find-fill-point): Make kinsoku shorten text line if
3289         shr-kinsoku-shorten is bound to non-nil.
3290         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
3291         shr-indentation too when testing if table is wider than frame width.
3292         (shr-insert-table): Use `string-width' instead of `length' to measure
3293         text width.
3294         (shr-insert-table-ruler): Make sure indentation is done at bol.
3295
3296 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3297
3298         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
3299         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
3300         undecoded network data.
3301
3302 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3303
3304         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
3305         name in the mode line spec so that the mode line menu works
3306         (bug #2431).
3307
3308         * message.el (message-get-reply-headers): If we're fed `to-address',
3309         then always use that.
3310
3311         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
3312         aren't so wide as to need to switch off the edit menu.
3313
3314         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
3315         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
3316
3317         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
3318         `M-g'.
3319         (nnimap-update-info): Update flags/read marks even if \* isn't part of
3320         the permanent marks.
3321
3322 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
3323
3324         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3325         Splitting according to references/in-reply-to obeys the ignore-groups
3326         variable, while splitting by sender and subject do not.
3327
3328 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3329
3330         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
3331         alist, so that we can look for non-Unicode chars.
3332         (article-translate-strings): Allow both character and string maps.
3333
3334 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3335
3336         * shr.el (shr-insert): Don't insert space behind a wide character
3337         categorized as kinsoku-bol, or between characters both categorized as
3338         nospace.
3339
3340 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
3341
3342         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
3343         headers to gnus-newsgroup-headers.
3344
3345 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3346
3347         * shr.el (shr-tag-img): Don't align images -- since we're not
3348         rescaling, this often leads to ugly displays.
3349
3350 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
3351
3352         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
3353         duplicates.
3354
3355 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
3356
3357         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
3358         call.
3359
3360 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3361
3362         * gnus.el: Autoload gnus-html-show-images.
3363
3364         * nnimap.el: Use nnheader-message throughout.
3365
3366         * shr.el (shr-tag-img): Ignore images with no data.
3367
3368 2010-10-15  Julien Danjou  <julien@danjou.info>
3369
3370         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
3371         a possibility to disable format=flow encoding when using hard newlines.
3372
3373 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3374
3375         * shr.el (shr-insert): Remove space inserted before or after a
3376         breakable character or at the beginning or the end of a line.
3377         (shr-find-fill-point): Do kinsoku; find the second best point or give
3378         it up if there's no breakable point.
3379
3380 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3381
3382         * nnimap.el (nnimap-open-connection): Message when opening connection
3383         for debugging purposes.
3384
3385         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
3386         on every setup buffer call to allow this to change from article to
3387         article.
3388
3389         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
3390         buffers where we have a wide table.
3391
3392 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
3393
3394         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
3395         uses *-request-thread.
3396
3397 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3398
3399         * nnimap.el (nnimap-open-connection): Remove %s from openssl
3400         incantation, which is no longer valid.
3401
3402 2010-10-14  Julien Danjou  <julien@danjou.info>
3403
3404         * shr.el: Fix defcustom type (char -> character).
3405
3406 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3407
3408         * nnimap.el (nnimap-open-connection): tls-program should be a list of
3409         programs.
3410
3411 2010-10-14  Julien Danjou  <julien@danjou.info>
3412
3413         * shr.el (shr-tag-a): Use url-link as widget type.
3414
3415         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
3416         `gnus-group-get-icon'.
3417
3418 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3419
3420         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
3421         This should make server editing work better.
3422
3423         * shr.el (shr-find-fill-point): Don't inloop on indented text.
3424
3425         * tls.el (tls-program): Remove spurious %s from openssl.
3426
3427         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
3428         (nnimap-parse-flags): Fix regexp.
3429
3430         * shr.el (shr-find-fill-point): Use a filling algorithm that should
3431         probably work for CJVK text, too.
3432
3433         * nnimap.el (nnimap-extend-tls-programs): Remove.
3434         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
3435
3436         * tls.el (tls-starttls-switches): Remove starttls hack.
3437         (open-tls-stream): Ditto.
3438         (tls-find-starttls-argument): Ditto.
3439
3440 2010-10-13  Julien Danjou  <julien@danjou.info>
3441
3442         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
3443         responses.
3444
3445 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3446
3447         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
3448
3449         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
3450         anything in Emacs.
3451
3452         * shr.el (shr-current-column): Remove buggy and unnecessary function.
3453
3454 2010-10-13  Julien Danjou  <julien@danjou.info>
3455
3456         * shr.el (shr-width): Make shr-width a defcustom with default to
3457         fill-column.
3458         (shr-tag-img): Use shr-width rather than fill-column.
3459
3460 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3461
3462         * dgnushack.el (byte-optimize-apply)
3463         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
3464
3465         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
3466         position when (X-)Faces exist.
3467         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
3468         avatars when called interactively.
3469
3470 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3471
3472         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
3473         gnus-article-x-face-too-ugly is bound.
3474
3475 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3476
3477         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
3478
3479         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
3480         mailbox that doesn't exist.
3481
3482 2010-10-12  Julien Danjou  <julien@danjou.info>
3483
3484         * shr.el (shr-tag-img): Encode URL properly when retrieving.
3485         (shr-get-image-data): Encode URL properly when fetching from cache.
3486         (shr-tag-img): Use aligned-to spaces to align correctly images.
3487
3488         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
3489         before inserting the Gravatar.
3490
3491         * shr.el (shr-tag-img): Add align attribute support for <img>.
3492
3493 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3494
3495         * gnus-gravatar.el (gnus-art): Require.
3496
3497         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
3498         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
3499         Remove long obsoleted functions.
3500
3501 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3502
3503         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
3504
3505         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
3506
3507         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
3508         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
3509         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
3510         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
3511         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
3512         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
3513         * sieve-manage.el, smime.el, spam.el:
3514         Fix comment for declare-function.
3515
3516 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3517
3518         * nnimap.el (nnimap-request-rename-group): Select group read-only
3519         before renaming it.
3520
3521         * shr.el (shr-insert): Fix up the white space only regexp.
3522
3523         * nnimap.el (nnimap-transform-split-mail): Not all articles have
3524         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
3525
3526         * shr.el (shr-current-column): New function.
3527         (shr-find-fill-point): New function.
3528
3529 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3530
3531         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
3532         numbers.
3533
3534 2010-10-11  Julien Danjou  <julien@danjou.info>
3535
3536         * shr.el (shr-hr-line): Add.
3537         (shr-tag-hr): Use shr-hr-line to specify which character to use to
3538         display hr lines.
3539         (shr-max-columns): Do not change state to nil if we just inserting
3540         spaces.
3541
3542 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3543
3544         * gnus-topic.el (gnus-topic-read-group): If after the last group,
3545         select the last group.
3546
3547 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
3548
3549         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
3550
3551 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
3552
3553         * dig.el (dig-mode-map): Declare and define in one step.
3554
3555 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3556
3557         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
3558         for Gnus.
3559         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
3560         (nnimap-update-qresync-info): Mark \Seen articles as read.
3561
3562         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
3563         non-variable, too.
3564
3565         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
3566         available.
3567         (nnimap-update-info): Rely more on the current active than the param
3568         active to avoid marking articles as read too much.
3569
3570         * auth-source.el (auth-source-create): Use (user-login-name) for the
3571         user name default.
3572
3573         * nnimap.el (nnimap-update-info): If the server doesn't return any
3574         useful info, just use the previous info.
3575         (nnimap-update-info): Prefer old info over start-article.
3576         (nnimap-update-qresync-info): Finish implementing QRESYNC.
3577
3578 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
3579
3580         * nnir.el (autoload): Clean up autoloads.
3581         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
3582         Use key rather than value.
3583         (nnir-imap-search-other): New variable.
3584         (nnir-read-parm): Use it.
3585         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
3586         (gnus-summary-nnir-goto-thread): Modify to work with imap.
3587
3588 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3589
3590         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
3591         the process, too.
3592
3593 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3594
3595         * spam.el (gnus-summary-mode-map): Bind to "$".
3596         Suggested by Russ Allbery.
3597
3598         * shr.el: Rework the way things are indented by <li> slightly.
3599
3600         * gnus.el (gnus-group-set-parameter): Fix typo.
3601
3602         * nnimap.el: Start implementing QRESYNC support.
3603
3604 2010-10-09  Julien Danjou  <julien@danjou.info>
3605
3606         * nnir.el (nnir-engines): Fix too many arguments.
3607
3608 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3609
3610         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
3611         group is the "last", so that the backends like nnfolder actually save
3612         their folders.
3613
3614         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
3615         try to use that for the tls stream.
3616         (nnimap-retrieve-group-data-early): Rework the marks code to heed
3617         UIDVALIDITY and find out which groups are read-only and not.
3618         (nnimap-get-flags): Use the same marks parsing code as the rest of
3619         nnimap.
3620
3621 2010-10-09  Julien Danjou  <julien@danjou.info>
3622
3623         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
3624
3625         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
3626         retrieving gravatars.
3627
3628         * shr.el (shr-table-corner): Add.
3629         (shr-table-line): Add.
3630         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
3631
3632 2010-10-08  Julien Danjou  <julien@danjou.info>
3633
3634         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
3635
3636 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
3637
3638         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
3639
3640         * gnus-sum.el (gnus-mark-article-as-unread)
3641         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
3642         (gnus-summary-set-bookmark): Use it.
3643
3644         * gnus-msg.el (gnus-setup-message): Use it.
3645
3646         * gnus-demon.el (gnus-demon-remove-handler): Use it.
3647
3648         * gnus.el (gnus-group-remove-parameter): Use it.
3649
3650         * gnus-group.el (gnus-group-make-web-group): Use it.
3651
3652         * gnus-demon.el (gnus-demon-remove-handler): Use it.
3653
3654         * nnregistry.el: Update docs to mention manual.
3655
3656         * gnus-registry.el: Update docs to mention nnregistry.el.
3657         (gnus-registry-initialize): Don't install nnregistry refer method
3658         automatically.
3659         (gnus-registry-install-nnregistry): Remove it.
3660
3661 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3662
3663         * shr.el (shr-insert): Don't insert double spaces.
3664
3665 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3666
3667         * gnus-gravatar.el (gnus-treat-from-gravatar)
3668         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
3669         called interactively.
3670
3671         * gnus-art.el (gnus-mime-view-part-externally)
3672         (gnus-mime-view-part-internally): Make predicate function passed to
3673         gnus-mime-view-part-as-type assume argument is a mime type, not a list
3674         of a mime type.
3675
3676         * shr.el (shr-table-widths): Don't use cl function `reduce'.
3677
3678 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3679
3680         * shr.el (require): Require cl when compiling.
3681         (shr-tag-hr): New function.
3682
3683         * nnimap.el (nnimap-update-info): Remove double setting of high.
3684         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
3685         This makes nnimap work properly on Courier again.
3686
3687         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
3688         the variable for backwards compatibility.
3689
3690         * mm-decode.el (mm-save-part): If given a non-directory result, expand
3691         the file name before using to avoid setting mm-default-directory to
3692         nil.
3693
3694         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
3695         bidning gnus-agent variables.
3696
3697         * shr.el (shr-render-td): Use a cache for the table rendering function
3698         to avoid getting an exponential rendering behaviour in nested tables.
3699         (shr-insert): Rework the line-breaking algorithm.
3700         (shr-insert): Don't leave trailing spaces.
3701         (shr-insert-table): Also insert empty TDs.
3702         (shr-tag-blockquote): Ensure paragraphs after </ul>.
3703
3704 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3705
3706         * gnus-sum.el (gnus-number): Rename from `number'.
3707         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
3708         (gnus-summary-limit-children): Update uses correspondingly.
3709
3710 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3711
3712         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
3713         (gnus-gravatar-transform-address): Don't show avatars of people of
3714         which mail addresses match gnus-gravatar-too-ugly.
3715
3716 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3717
3718         * shr.el (shr-table-widths): Expand TD elements to fill available
3719         space.
3720
3721 2010-10-07  Julien Danjou  <julien@danjou.info>
3722
3723         * nnimap.el (nnimap-request-rename-group): Add this method.
3724
3725 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3726
3727         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
3728         name from XEmacs' function-arglist.
3729
3730         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
3731         gravatar under XEmacs.
3732
3733 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
3734
3735         * auth-source.el: Update docs with TODO items.
3736
3737         * gnus-sync.el: Update docs to explain state and plans.
3738
3739         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
3740         Hooks for mark updates.
3741         (gnus-request-set-mark, gnus-request-update-mark): Use them.
3742
3743         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
3744         hooks with arguments, which is needed for mark update hooks.
3745
3746 2010-10-06  Julien Danjou  <julien@danjou.info>
3747
3748         * gnus.el (gnus-expand-group-parameter): Only return and act on what
3749         was matched.
3750
3751         * sieve-manage.el: Update example in `Commentary'.
3752
3753         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
3754
3755         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
3756         not 2000.
3757         (sieve-manage-authenticate): Re-add function.
3758
3759 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3760
3761         * shr.el (shr-insert): Get 'space transition right.
3762         (shr-render-td): Only delete space at the end of the TD.
3763
3764         * nnimap.el (nnimap-open-connection): Prepare to support
3765         open-gnutls-stream.
3766
3767         * shr.el: Rearrange function order to be more logical.
3768
3769 2010-10-06  Julien Danjou  <julien@danjou.info>
3770
3771         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
3772         (nnrss-discover-feed): Remove 404 URL in docstring.
3773
3774         * nnir.el: Fix Swish-E URL.
3775         Fix Namazu URL.
3776
3777         * message.el (message-change-subject): Remove 404 URL in a comment.
3778
3779 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3780
3781         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
3782         called interactively.
3783
3784         * gnus-util.el (gnus-remove-if): Allow hash table.
3785         (gnus-remove-if-not): New function.
3786
3787         * gnus-art.el (gnus-mime-view-part-as-type)
3788         * gnus-score.el (gnus-summary-score-effect)
3789         * gnus-sum.el (gnus-read-move-group-name):
3790         Replace remove-if-not with gnus-remove-if-not.
3791
3792         * gnus-group.el (gnus-group-completing-read):
3793         Regard collection as a hash table if it is not a list.
3794
3795 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3796
3797         * shr.el (shr-render-td): Allow blank/missing <TD>s.
3798
3799         * shr.el: Document the table-rendering algorithm.
3800
3801 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3802
3803         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
3804         for Emacsen having no `libxml-parse-html-region' support.
3805
3806 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3807
3808         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
3809         invalid URLs.
3810
3811         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
3812         line-broken.
3813         (shr-tag-img): Ignore image fetching errors.
3814         (shr-overlays-in-region): Compute overlay positions correctly.
3815
3816         * mm-decode.el (mm-shr): Require shr.
3817
3818         * gnus-art.el (gnus-blocked-images): Move variable here.
3819
3820         * shr.el (shr-insert-table): Bind free variable.
3821
3822         * mm-decode.el (mm-shr): Bind shr-content-function.
3823
3824         * shr.el (shr-content-function): New variable.
3825
3826         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
3827         added for symmetry.
3828
3829         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
3830
3831         * gnus-group.el (gnus-group-make-group): Doc fix.
3832
3833         * nnimap.el (nnimap-request-newgroups): Return success.
3834
3835         * shr.el (shr-find-elements): New function.
3836         (shr-tag-table): Put all the images after the table.
3837         (shr-tag-table): Really inhibit images inside the table.
3838         (shr-collect-overlays): Copy over overlays from the TD elements to the
3839         main document.
3840
3841         * mm-decode.el (mm-shr): Bind shr-blocked-images to
3842         gnus-blocked-images.
3843
3844 2010-10-05  Julien Danjou  <julien@danjou.info>
3845
3846         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
3847
3848         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
3849         (gnus-html-maximum-image-size): Add this function.
3850         (gnus-html-put-image): Use gnus-html-maximum-image-size.
3851
3852         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
3853         server-value of the capability is nil.
3854
3855 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3856
3857         * shr.el (shr-tag-em): Add <EM> tag.
3858
3859 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
3860
3861         * sieve-manage.el (sieve-manage-default-stream): Make default stream
3862         customizable.
3863
3864         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
3865         handing broken links to browse-url.
3866
3867 2010-10-05  Julien Danjou  <julien@danjou.info>
3868
3869         * gnus-util.el (gnus-emacs-completing-read)
3870         (gnus-iswitchb-completing-read): Use autoload rather than require.
3871
3872 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3873
3874         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
3875         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
3876         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
3877         iswitchb-temp-buflist for XEmacs.
3878
3879         * gnus-util.el (gnus-completing-read-function): Exclude
3880         gnus-icompleting-read and gnus-ido-completing-read from candidates for
3881         XEmacs since iswitchb.el is very old and ido.el is unavailable in
3882         XEmacs.
3883
3884         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
3885         not to use `delete-dups' that is unavailable in XEmacs 21.4.
3886
3887         * gnus-html.el: Don't require help-fns under XEmacs.
3888         (gnus-html-schedule-image-fetching): Work for XEmacs.
3889
3890         * mm-decode.el (mm-shr): Decode contents by charset.
3891
3892 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3893
3894         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
3895         unknown.
3896
3897         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
3898         (shr-get-image-data): Ensure against the cache file missing.
3899
3900         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
3901         for data.
3902
3903         * spam-report.el (spam-report-url-ping-plain): Don't query about
3904         killing the process.
3905
3906         * shr.el (shr-render-td): Protect against too-wide text.
3907
3908 2010-10-04  Julien Danjou  <julien@danjou.info>
3909
3910         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
3911         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
3912
3913         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
3914         retrieved.
3915
3916 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3917
3918         * shr.el (browse-url): Require.
3919         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
3920         lines.
3921         (shr-show-alt-text, shr-browse-image): New commands.
3922         (shr-browse-url, shr-copy-url): New commands.
3923
3924         * gnus-sum.el (gnus-widen-article-window): New variable.
3925         (gnus-summary-select-article-buffer): Use it.
3926
3927         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
3928         without @ signs.
3929
3930 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3931
3932         * nnir.el (nnir-run-imap): Remove spurious space in search string.
3933
3934 2010-10-04  Julien Danjou  <julien@danjou.info>
3935
3936         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
3937         for XEmacs.
3938
3939 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3940
3941         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
3942
3943         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
3944         (nnimap-close-server): Implement.
3945
3946         * dgnushack.el (iswitchb): Require to shut up the compiler.
3947
3948         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
3949         (shr-insert): Tweak line breaking.
3950         (shr-insert): Handle <pre> better.
3951         (shr-tag-li): Get <li> indentation right.
3952         (shr-tag-li): Get <li> indentation even righter.
3953         (shr-tag-blockquote): Ensure paragraph start.
3954         (shr-make-table): Tweak table generation.
3955         (shr-make-table): Fix typo.
3956
3957         * shr.el: Implement table rendering.
3958
3959 2010-10-04  Julien Danjou  <julien@danjou.info>
3960
3961         * gnus-html.el (gnus-html-put-image): Fix resize image code.
3962
3963 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3964
3965         * shr.el (shr-insert): Use string anchors instead of line anchors.
3966
3967 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3968
3969         * shr.el: Add headings.
3970         (shr-ensure-paragraph): Actually work.
3971         (shr-tag-li): Make <ul> prettier.
3972         (shr-insert): Get white space at the beginning/end of elements right.
3973         (shr-tag-p): Collapse subsequent <p>s.
3974         (shr-ensure-paragraph): Don't insert double line feeds after blank
3975         lines.
3976         (shr-insert): \t is also space.
3977         (shr-tag-s): Fix "s" tag name function.
3978         (shr-tag-s): Fix face prop name.
3979
3980 2010-10-03  Julien Danjou  <julien@danjou.info>
3981
3982         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
3983
3984         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
3985         gnus-window-inside-pixel-edges.
3986
3987         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
3988         gnus-ems.
3989
3990         * mm-view.el (mm-inline-image-emacs): Support image resizing.
3991
3992         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
3993         function.
3994
3995         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
3996         resize choice.
3997
3998 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3999
4000         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
4001         beginning of the buffer.
4002
4003         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
4004         article buffer again.
4005
4006         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
4007
4008         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
4009         when it's at the start of the buffer.
4010
4011         * shr.el (shr-tag-blockquote): Convert name.
4012         (shr-rescale-image): Use the right image-size variant.
4013
4014         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
4015         buffer isn't shown, then select the current article first instead of
4016         bugging out.
4017         (gnus-summary-select-article-buffer): Show both the article and summary
4018         buffers again.
4019
4020         * shr.el (shr-fontize-cont): Protect against regions with no text.
4021         Rename tag functions to shr-tag-* for enhanced security.
4022         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
4023
4024 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
4025
4026         * shr.el (shr-insert):
4027         * pop3.el (pop3-movemail):
4028         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
4029         loaded.
4030
4031 2010-10-03  Glenn Morris  <rgm@gnu.org>
4032
4033         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
4034
4035         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
4036
4037         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
4038
4039         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
4040
4041         * gnus-util.el (gnus-make-local-hook): Simplify.
4042
4043 2010-10-02  Julien Danjou  <julien@danjou.info>
4044
4045         * gnus-util.el (gnus-iswitchb-completing-read): New function.
4046         (gnus-ido-completing-read): New function.
4047         (gnus-emacs-completing-read): New function.
4048         (gnus-completing-read): Use gnus-completing-read-function.
4049         Add gnus-completing-read-function.
4050
4051 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4052
4053         * shr.el (shr-insert-document): Autoload.
4054         (shr-img): Be silent.
4055         (shr-insert): Add a newline after every picture before text.
4056         (shr-add-font): Use overlays for combining faces.
4057         (shr-insert): Pass upwards the text start point.
4058
4059         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
4060         possible.
4061         (mm-shr): New function.
4062
4063 2010-10-02  Julien Danjou  <julien@danjou.info>
4064
4065         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
4066         should go backward.
4067
4068 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
4069
4070         * shr.el (shr): Fix typo in provide call.
4071
4072 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4073
4074         * shr.el: New file.
4075
4076         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
4077
4078         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
4079         completing read.
4080
4081 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4082
4083         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
4084         we're being queried about.  Suggested by Dan Jacobson.
4085
4086         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
4087         Suggested by Jason Eisner.
4088
4089         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
4090         table, too.  Suggested by Stefan Wiens.
4091         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
4092         the table unnecessary.  Suggested by Stefan Wiens.
4093
4094         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
4095         longer needed, and probably doesn't work either, as pointed out by
4096         Stefan Wiens.
4097         (gnus-summary-exit): Remove call to the clearing function.
4098         (gnus-summary-exit-no-update): Ditto.
4099
4100         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
4101         instead of gnus-eval-in-buffer-window to avoid popping up frames.
4102         Reported by Stefan Monnier.
4103         (gnus-summary-save-in-rmail): Ditto.
4104
4105         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
4106         article buffer, instead of both the article buffer and the summary
4107         buffer.  Sort of suggested by Dan Jacobson.
4108
4109         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
4110
4111         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
4112         Suggested by Dan Jacobson.
4113
4114         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
4115         documentation clearer.
4116
4117         * message.el (message-shorten-references): Comment on the number "21".
4118         Suggested by Stefan Monnier.
4119
4120         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
4121         Suggested by Dan Jacobson.
4122
4123         * gnus.el (gnus-large-newsgroup):
4124         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
4125
4126         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
4127         externalize attachments.  Bug reported by Steve Wen.
4128
4129         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
4130         really message anything to the user.
4131
4132         * nnmail.el (nnmail-article-group): Allow using the fancy split method
4133         directly.
4134
4135         * nnimap.el (nnimap-request-group): Low higher than high to signal no
4136         messages in empty groups.
4137
4138 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
4139
4140         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
4141         non-UIDNEXT group.
4142
4143 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4144
4145         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
4146         not the value from the collection.
4147
4148         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
4149         values.  This sometimes happens on some groups that have no info.
4150         (nnimap-request-newgroups): New function.
4151
4152 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
4153
4154         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
4155         check into `gnus-registry-initialize'.
4156         (gnus-registry-initialize): Ditto.
4157         Fix and extend header docs.
4158
4159 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4160
4161         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
4162         regexp backtrace overflows.
4163
4164         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
4165         for starttls that tls.el implements; i.e. openssl.
4166
4167         * tls.el (tls-starttls-switches): Give up on using starttls with
4168         gnutls-cli.
4169         (tls-program): Add --insecure to be consistent with the defaults from
4170         openssl s_client.  Now all three commands are insecure.
4171
4172 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4173
4174         * lpath.el: Bind completion-styles-alist for XEmacs.
4175
4176         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
4177         (gravatar-create-image): New function that's an alias to
4178         gnus-xmas-create-image, gnus-create-image, or create-image.
4179         (gravatar-data->image): Use it.
4180
4181 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
4182
4183         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
4184         install the nnregistry refer method.
4185         (gnus-registry-install-hooks): Use it.
4186         (gnus-registry-unfollowed-groups): Add nnmairix to the default
4187         unfollowed groups.
4188
4189 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
4190
4191         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
4192         expanding threads.
4193
4194 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4195
4196         * nnir.el: Use the server names without suffixes (bug #7009).
4197
4198         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
4199         unencrypted to STARTTLS, if possible.
4200
4201 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
4202
4203         * message.el (message-ignored-supersedes-headers): Strip Injection-*
4204         headers before superseding.
4205
4206 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4207
4208         * nnrss.el (nnrss-use-local): Add documentation.
4209
4210         * nnimap.el (nnimap-extend-tls-programs): New function.
4211         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
4212         (nnimap-wait-for-connection): Accept the greeting from the stupid
4213         output from openssl s_client -starttls, too.
4214
4215         * tls.el (tls-starttls-switches): New variable.
4216         (tls-find-starttls-argument): Use it.
4217         (open-tls-stream): Ditto.
4218
4219         * netrc.el (netrc-credentials): Return the value of the "default" entry.
4220         (netrc-machine): Ditto.
4221
4222         * nnimap.el (nnimap-find-article-by-message-id): Really return the
4223         article number.
4224         (nnimap-split-fancy): New variable.
4225         (nnimap-split-incoming-mail): Use it.
4226
4227         * nntp.el (nntp-server-list-active-group): Document.
4228
4229         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
4230         SELECT to get the message-id.
4231
4232         * mail-source.el (mail-sources): Remove webmail support.
4233         (defvar): Ditto.
4234         (mail-source-fetcher-alist): Ditto.
4235         (mail-source-fetch-webmail): Remove.
4236
4237         * webmail.el: Remove -- doesn't seem relevant any more.
4238
4239         * gnus.el: Fix up make-obsolete-variable declarations throughout.
4240
4241         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
4242         the \r.
4243
4244 2010-09-30  Julien Danjou  <julien@danjou.info>
4245
4246         * gnus-agent.el (gnus-agent-add-group): Fix call to
4247         gnus-completing-read.
4248
4249 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4250
4251         * nndoc.el (nndoc-retrieve-groups): New function.
4252
4253         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
4254         `default', use nnmail-split-methods.
4255         (nnimap-request-article): Downcase the NILs so that they are nil.
4256
4257         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
4258         symbol.
4259
4260         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
4261         code, since if the user has requested network, that's what they ought
4262         to get.
4263         (nnimap-request-set-mark): Erase the buffer before issuing commands.
4264         (nnimap-split-rule): Mark as obsolete.
4265
4266         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
4267         New variable.
4268
4269         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
4270         correct slot, too.
4271
4272 2010-09-29  Julien Danjou  <julien@danjou.info>
4273
4274         * gnus.el (gnus-local-domain): Declare variable obsolete.
4275
4276         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
4277         Fix history computing.
4278         (gnus-ido-completing-read): Require ido.
4279
4280 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4281
4282         * gnus-registry.el: Don't prompt on load, which makes it impossible to
4283         build Gnus.
4284
4285         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
4286         when interpreting the structures.
4287         (nnimap-request-accept-article): Add \r\n to the lines to make this
4288         work with Cyrus.
4289
4290         * nndraft.el (nndraft-request-expire-articles): Use the group name
4291         instead if "nndraft".  Fix found by Nils Ackermann.
4292
4293 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
4294
4295         * nnregistry.el: Add.
4296
4297 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4298
4299         * nnmail.el (group, group-art-list, group-art):
4300         Remove unneeded directives.
4301
4302 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
4303
4304         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
4305         (mm-mime-charset)
4306         * rfc2047.el (rfc2047-syntax-table)
4307         * utf7.el (utf7-utf-16-coding-system): Comment fix.
4308
4309         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
4310         rather than `insert-file-contents' and `eval-region'.
4311
4312         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
4313         construction.
4314
4315         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
4316
4317         * time-date.el: No need to require cl for Emacs 21.
4318
4319 2010-09-29  Julien Danjou  <julien@danjou.info>
4320
4321         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
4322         replacement of `gnus-gravatar-relief' to mimic
4323         `gnus-faces-properties-alist'.
4324         Add :version property.
4325
4326 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4327
4328         * mail-source.el (mail-source-report-new-mail)
4329         * message.el (message-default-mail-headers)
4330         * mm-decode.el (mm-valid-image-format-p): Comment fix.
4331
4332         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
4333
4334 2010-09-28  Julien Danjou  <julien@danjou.info>
4335
4336         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
4337         mail-address contains the same string as real-name.
4338
4339         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
4340         non-blank in header, otherwise it'll get stripped.
4341
4342         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
4343         real-name, and then for mail address rather than doing : or , search.
4344
4345 2010-09-27  Julien Danjou  <julien@danjou.info>
4346
4347         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
4348         right completing-read function.
4349         (gnus-use-ido): New variable
4350         (gnus-completing-read-with-default): Remove.
4351         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
4352         (gnus-agent-add-group):
4353         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
4354         * mm-view.el (mm-view-pkcs7-decrypt):
4355         * mm-util.el (mm-codepage-setup):
4356         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
4357         * mml-smime.el (mml-smime-openssl-sign-query):
4358         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
4359         (mml-insert-multipart):
4360         * gnus-msg.el (gnus-summary-yank-message):
4361         * gnus-int.el (gnus-start-news-server):
4362         * mm-decode.el (mm-interactively-view-part):
4363         * gnus-dired.el (gnus-dired-attach):
4364         * gnus.el (gnus-read-method):
4365         * gnus-bookmark.el (gnus-bookmark-jump):
4366         * gnus-art.el (gnus-mime-view-part-as-type)
4367         (gnus-mime-action-on-part, gnus-article-encrypt-body):
4368         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
4369         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
4370         * nnmairix.el (nnmairix-create-server-and-default-group)
4371         (nnmairix-update-groups, nnmairix-get-server)
4372         (nnmairix-backend-to-server, nnmairix-goto-original-article)
4373         (nnmairix-get-group-from-file-path):
4374         * nnrss.el (nnrss-find-rss-via-syndic8):
4375         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
4376         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
4377         (gnus-group-browse-foreign-server):
4378         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
4379         (gnus-summary-execute-command, gnus-summary-respool-article)
4380         (gnus-read-move-group-name):
4381         * gnus-score.el (gnus-summary-increase-score)
4382         (gnus-summary-score-effect):
4383         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
4384
4385 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4386
4387         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
4388         x-focus-frame.
4389
4390         * nnimap.el (auth-source-forget-user-or-password)
4391         (auth-source-user-or-password): Autoload.
4392
4393         * message.el (message-from-style, message-interactive)
4394         (message-cite-prefix-regexp, message-sendmail-envelope-from)
4395         (message-yank-prefix, message-indentation-spaces, message-signature)
4396         (message-signature-file): Add comment.
4397
4398 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4399
4400         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
4401         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
4402         new articles.
4403
4404         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
4405         parts.
4406         (nnimap-request-article): Work with the t setting, too.
4407
4408         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
4409         that you don't get flashes of other buffers.
4410         (gnus-summary-show-complete-article): Intern before setting.
4411
4412 2010-09-27  David Engster  <dengste@eml.cc>
4413
4414         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
4415         well as HEADERS.
4416         (nnmairix-retrieve-headers): Provide new argument for the above.
4417
4418 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4419
4420         * gnus-sum.el (gnus-summary-move-article): Don't alter
4421         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
4422         group.
4423
4424         * nnimap.el (nnimap-update-info): Don't destructively alter active.
4425
4426         * message.el (message-cite-prefix-regexp): Revert my last edit.
4427
4428         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
4429         variable instead of the Gnus variable.
4430
4431         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
4432
4433         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
4434
4435         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
4436         since some servers don't like it.
4437         (nnimap-open-connection): Forget credentials if the server says the
4438         password was wrong.
4439         (nnimap-parse-line): Protect against invalid data.
4440
4441         * gnus-sum.el (gnus-summary-move-article): Add comment.
4442         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
4443         nothing alters it while scanning for new messages.
4444
4445         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
4446         which may or may not help.
4447         (nnimap-open-connection): If we're doing a stream connection, and then
4448         discover we're on a STARTTLS-capable server, then open a STARTTLS
4449         connection instead.
4450
4451 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4452
4453         * nnimap.el (utf7): Require.
4454
4455         * message.el (message-cite-prefix-regexp): Remove "}" from citation
4456         prefix.
4457
4458 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
4459
4460         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
4461
4462 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4463
4464         * nnimap.el (nnimap-request-accept-article): Message the error on
4465         error.
4466
4467 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4468
4469         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
4470
4471 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4472
4473         * nndoc.el (nndoc-request-list): Return success always.
4474
4475         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
4476         `fetch-old' -- we only want to fetch the articles we've requested.
4477         The rest are in the agent, probably.
4478         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
4479         disappeared server" to something low.  It's not important.
4480
4481         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
4482         arrived before the FETCH data.
4483
4484         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
4485         target here, because we don't know the Gnus name of the group.
4486
4487         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
4488         for the correct group.
4489
4490         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
4491
4492         * gnus.el (gnus): Give a final warning after startup.
4493
4494         * gnus-util.el (gnus-action-message-log): New variable.
4495         (gnus-message): Use it.
4496         (gnus-final-warning): New function.
4497
4498         * nnimap.el (nnimap-open-connection): Record the greeting.
4499         (nnimap): Add greeting.
4500
4501 2010-09-26  Julien Danjou  <julien@danjou.info>
4502
4503         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
4504         arguments.
4505         (gnus-html-wash-images): Fix spec computing to include start/end.
4506
4507         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
4508
4509 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4510
4511         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
4512         deletion.
4513         (nnimap-retrieve-headers): Don't select the group, because that's
4514         already done by nnimap-possibly-change-group.
4515
4516         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
4517         (gnus-picon-transform-address): Use it.
4518
4519         * mail-source.el (mail-source-value): Revert previous patch.
4520
4521         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
4522         on failure.
4523         (nnimap-open-connection): Look up both virtual and physical server name
4524         credentials.
4525
4526         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
4527
4528 2009-02-07  Dave Love  <fx@gnu.org>
4529
4530         * tls.el (open-tls-stream): Don't query killing process.
4531
4532 2009-02-08  Dave Love  <fx@gnu.org>
4533
4534         * gnus-win.el (gnus-window-to-buffer-helper)
4535         (gnus-all-windows-visible-p): Function needn't be a symbol.
4536
4537         * mail-source.el (mail-source-value): Function needn't be a symbol.
4538
4539 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4540
4541         * message.el (message-cite-prefix-regexp): Remove } from the cite
4542         prefix.
4543
4544         * gnus-art.el (gnus-treatment-function-alist): Do picons before
4545         highlight again, so that the highlight is correct.
4546
4547         * gnus-picon.el (gnus-picon): Remove again.
4548         (gnus-picon-create-glyph): Set the background XPM colour explicitly.
4549
4550         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
4551         doing the header highlightling, so that the background colour of the
4552         picon is correct.
4553
4554         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
4555         (gnus-picon): Ditto.
4556         (gnus-picon): Reinstate.  The background colour for picons is white.
4557         (gnus-picon-insert-glyph): Make the background white.
4558
4559         * nnml.el (nnml-open-nov): Don't return dead buffers.
4560
4561         * auth-source.el (auth-source-create): Query the user for whether to
4562         store the credentials.
4563
4564         * netrc.el (netrc-store-data): New function.
4565
4566         * auth-source.el (auth-source-user-or-password): Use the existing auth
4567         sources, if any, for creation.
4568
4569         * gnus.el (gnus-group-fast-parameter): Return the last matching
4570         parameter instead of the first matching parameter.
4571
4572 2010-09-26  Julien Danjou  <julien@danjou.info>
4573
4574         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
4575
4576 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4577
4578         * mml2015.el (mml2015-use): Remove gpg support.
4579
4580         * mml1991.el (mml1991-function-alist): Remove gpg function.
4581         (mml1991-gpg-sign): Remove.
4582
4583 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
4584
4585         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
4586         (gnus-browse-unsubscribe-current-group): Document it.
4587         (gnus-browse-unsubscribe-group): Use it.
4588
4589 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4590
4591         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
4592         address to the To list for easier response.
4593
4594         * gnus.el (gnus-play-startup-jingle): Remove.
4595         (gnus-splash): Don't play jingle.
4596         (gnus): Silence gnus-load message.
4597
4598         * gnus-art.el (gnus-treat-play-sounds): Remove.
4599
4600         * gnus.el (gnus-play-jingle): Remove audio support.
4601
4602         * gnus-cus.el (gnus-score-customize): Remove audio reference.
4603
4604         * earcon.el: Remove -- no users.
4605
4606         * gnus-audio.el: Remove -- no users of this package.
4607
4608         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
4609
4610         * gnus-start.el (gnus-setup-news): Remove nocem support.
4611
4612         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
4613
4614         * gnus.el (gnus-use-nocem): Remove.
4615
4616         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
4617         Remove.
4618
4619         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
4620         uses NoCeM any more.
4621
4622         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
4623         (gnus-button-ctan-handler): Ditto.
4624         (gnus-button-handle-ctan-bogus-regexp): Ditto.
4625         (gnus-button-ctan-directory-regexp): Ditto.
4626         (gnus-button-handle-ctan): Ditto.
4627         (gnus-button-tex-level): Ditto.
4628         (gnus-button-alist): Remove CTAN stuff.
4629
4630 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4631
4632         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
4633         nnimap-streaming test.
4634
4635         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
4636         servers twice.
4637
4638         * nnimap.el (nnimap-open-connection): Add more error reporting when
4639         nnimap fails early.
4640
4641         * nnheader.el (nnheader-get-report-string): New function.
4642         (nnheader-get-report): Use it.
4643
4644         * gnus-int.el (gnus-check-server): Say what the error was when opening
4645         failed.
4646
4647         * nnimap.el (nnimap-wait-for-response): Search further when we're not
4648         using streaming.
4649
4650 2010-09-25  Julien Danjou  <julien@danjou.info>
4651
4652         * gnus-html.el (gnus-html-rescale-image): Use our defalias
4653         gnus-window-inside-pixel-edges.
4654
4655 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4656
4657         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
4658
4659         * mm-decode.el (mm-save-part): Allow saving to other directories the
4660         normal Emacs way.
4661
4662         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
4663         Suggested by Jay Berkenbilt.
4664
4665         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
4666         there isn't a single byte.
4667
4668         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
4669         just do it.  It doesn't really seem to matter what the user responds
4670         here, I think, so it's just a confusing question.
4671
4672         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
4673         non-streaming case.
4674
4675         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
4676         (gnus-article-encrypt-body): Use it.
4677
4678         * gnus-sum.el (gnus-summary-show-complete-article): New command and
4679         keystroke.
4680
4681         * nnimap.el (nnimap-find-wanted-parts-1):
4682         Use gnus-fetch-partial-articles.
4683
4684         * gnus-art.el (gnus-fetch-partial-articles): New variable.
4685
4686         * nnimap.el (nnimap-insert-partial-structure): New function.
4687         (nnimap-get-partial-article): New function.
4688         (nnimap-request-article): Use it.
4689         (nnimap-wait-for-response): Return whether the wait was successful.
4690         (nnimap-finish-retrieve-group-infos): Don't do anything if the
4691         retrieval wasn't successful.
4692         (nnimap-retrieve-group-data-early): Allow throttling servers.
4693         (nnimap-streaming): New variable.
4694         (nnimap-fetch-partial-articles): Remove.
4695
4696         * mm-decode.el (mm-with-part): Protect against killed buffers.
4697
4698         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
4699         for prettier summary display.
4700
4701 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
4702
4703         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
4704
4705 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4706
4707         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
4708         apparently third-party libraries depend on it.
4709
4710         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
4711         before starting negotiation.
4712
4713         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
4714         privacy reasons.
4715         (gnus-treat-mail-gravatar): Ditto.
4716
4717         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
4718         buffer when inserting images.  Inserting text into the headers, for
4719         instance, can make them invalid.
4720
4721 2010-09-25  Julien Danjou  <julien@danjou.info>
4722
4723         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
4724         variables.
4725
4726         * nnheader.el: Remove useless variables news-reply-yank-from and
4727         news-reply-yank-message-id.
4728
4729         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
4730         variables.
4731
4732         * mml1991.el: Remove useless mml1991-verbose.
4733
4734         * gnus.el: Remove useless variable gnus-use-generic-from.
4735         Remove obsolete variable gnus-topic-indentation.
4736
4737         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
4738
4739         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
4740
4741         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
4742
4743         * gnus-group.el: Remove useless gnus-group-icon-cache.
4744         Remove useless gnus-ephemeral-group-server.
4745
4746         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
4747
4748         * mml2015.el: Remove useless mml2015-verbose.
4749
4750         * mml-smime.el: Remove useless mml-smime-verbose.
4751
4752         * gnus.el: Remove useless gnus-local-domain.
4753
4754         * gnus-gravatar.el (gnus-gravatar-transform-address):
4755         Use gnus-gravatar-size.
4756
4757         * gnus-art.el: Remove useless gnus-treat-translate.
4758
4759 2010-09-24  Julien Danjou  <julien@danjou.info>
4760
4761         * gnus-sum.el: Add support for Gravatars.
4762
4763         * gnus-art.el: Add support for Gravatars.
4764
4765         * gnus-gravatar.el: Add this file.
4766
4767         * gravatar.el: Add this file.
4768
4769 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4770
4771         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
4772
4773         * gnus-group.el (gnus-group-fetch-faq): Remove.
4774
4775         * gnus.el (gnus-group-faq-directory): Remove.
4776
4777         * gnus-group.el (gnus-group-fetch-charter): Remove.
4778
4779         * gnus.el (gnus-group-charter-alist): Remove.
4780
4781         * gnus-group.el (gnus-group-archive-directory): Remove.
4782         (gnus-group-recent-archive-directory): Ditto.
4783         (gnus-group-make-archive-group): Remove.
4784
4785         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
4786
4787         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
4788         use the same article number for all the cached articles.
4789
4790         * nnimap.el (nnimap-command): Register the last command time so
4791         that we can use it for idling NOOPs.
4792         (nnimap-open-connection): Start the keeplive timer.
4793         (nnimap-make-process-buffer): Store all the process buffers.
4794         (nnimap-keepalive): New function.
4795
4796         * starttls.el (starttls-open-stream): Add autoload cookie.
4797
4798 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
4799
4800         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
4801         handling.
4802
4803 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4804
4805         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
4806         its data structures.
4807
4808         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
4809         instead of the cl.el copy-list.
4810         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
4811         equalp.
4812
4813 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4814
4815         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
4816         and tool-bar-local-item-from-menu.
4817
4818         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
4819         mode-line-highlight face for Emacs.
4820
4821         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
4822         loading gnus-sum.elc; fix comment for canlock-verify.
4823         (gnus-article-jump-to-part): Use read-number.
4824         (gnus-insert-mime-button, gnus-insert-mime-security-button):
4825         Remove Emacs pre-21 compatible code for help-echo.
4826         (gnus-article-next-page-1): No need to adjust the number of lines.
4827         (gnus-article-describe-bindings): Always use help-buffer.
4828
4829         * gnus-audio.el (gnus-audio-inline-sound)
4830         * gnus-cus.el (gnus-custom-mode)
4831         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
4832
4833         * gnus-sum.el (gnus-remove-overlays): Doc fix.
4834
4835         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
4836         compatible code.
4837
4838 2010-09-24  Glenn Morris  <rgm@gnu.org>
4839
4840         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
4841         visiting the fcc file in rmail-mode.
4842
4843         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
4844
4845 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4846
4847         * nnir.el: Silence the byte compiler.
4848
4849         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
4850         alias to browse-url-url-encode-chars if any.
4851         (gnus-html-encode-url): Use it.
4852
4853 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4854
4855         * gnus-start.el (gnus-use-backend-marks): New variable.
4856         (gnus-get-unread-articles-in-group): Use it.
4857
4858         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
4859         makeover.
4860
4861 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
4862
4863         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
4864
4865 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4866
4867         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
4868         Remove.
4869         (gnus-setup-news-hook):
4870         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
4871
4872         * gnus-int.el (gnus-request-update-info): Protect against backends not
4873         having the function.
4874
4875         * nnimap.el (nnimap-stream): Mention starttls.
4876         (nnimap-open-connection): Add starttls support.
4877
4878 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
4879
4880         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
4881
4882 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4883
4884         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
4885         BODYSTRUCTUREs.
4886         (nnimap-transform-headers): Unfold quoted {42} headers.
4887
4888         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
4889         the info.
4890         (gnus-get-unread-articles): Only call updatep on backends that support
4891         it.
4892
4893         * nnweb.el (nnweb-request-update-info): NOOP.
4894
4895         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
4896
4897         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
4898         since it only deals with marks.
4899
4900         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
4901         gnus-request-marks, and make a new gnus-request-update-info.
4902
4903         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
4904         the active instead of the high number, which is usually too low.
4905
4906 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
4907
4908         * netrc.el (netrc-parse): Remove encrypt.el mentions.
4909         * encrypt.el: Remove.
4910
4911 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4912
4913         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
4914         server in symbolic form.
4915
4916         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
4917
4918 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4919
4920         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
4921         (nnimap-update-info): Fix up code slightly.
4922
4923         * gnus-int.el (gnus-open-server): Add tracing for performance
4924         debugging.
4925
4926         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
4927         (gnus-group-insert-group-line): Pass the real group name so that it
4928         gets the right data.
4929
4930         * gnus-start.el (gnus-get-unread-articles): Don't have
4931         `gnus-get-unread-articles-in-group' update info, since that can be
4932         really slow and doesn't seem to be needed?
4933
4934 2010-09-22  Dan Christensen  <jdc@uwo.ca>
4935
4936         * time-date.el (date-to-time): Try using parse-time-string first before
4937         using the slower timezone-make-date-arpa-standard.
4938
4939 2010-09-22  Julien Danjou  <julien@danjou.info>
4940
4941         * gnus-group.el (gnus-group-insert-group-line):
4942         Call gnus-group-highlight-line.
4943         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
4944         default hook list.
4945         (gnus-group-update-eval-form): Add new function.
4946         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
4947         (gnus-group-get-icon): Use gnus-group-update-eval-form.
4948
4949 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4950
4951         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
4952         immediate, then expire all articles.
4953         (nnimap-update-info): Fix off-by-one errors.
4954         (nnimap-flags-to-marks): Would return no marks lists for group with no
4955         flags.  Instead return the other data.
4956
4957 2010-09-22  Julien Danjou  <julien@danjou.info>
4958
4959         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
4960         Only return an icon.
4961         (gnus-group-insert-group-line): Compute icon to return.
4962
4963         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
4964         (gnus-html-image-fetched): Only cache if
4965         gnus-html-image-automatic-caching is set.
4966         (gnus-html-image-fetched): Check for errors.
4967
4968 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4969
4970         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
4971         once per method on `g'.  This ensures that backends like nnfolder don't
4972         open all their folders.
4973
4974         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
4975         (nnimap-request-list): Nix out group in the correct buffer.
4976         (nnimap-parse-flags): Implement by using `read' instead of
4977         hand-parsing.
4978         (nnimap-flags-to-marks): Pass on permanent-flags.
4979         (nnimap-make-process-buffer): Record the server name.
4980         (nnimap-parse-flags): Fix typo.
4981         (nnimap-request-scan): Run split on the server in general, not just a
4982         single group.
4983
4984         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
4985         parameter, and propagate this downwards.
4986
4987         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
4988         since EXAMINE changes it on the server.
4989
4990         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
4991         this command might take a while.
4992
4993 2010-09-22  Julien Danjou  <julien@danjou.info>
4994
4995         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
4996         harmful if you have 2 images side-by-side, they can't be properly
4997         update on text deletion.  Using text-property is safer here.
4998         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
4999         data.
5000
5001 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5002
5003         * nnimap.el (nnimap-expunge-inbox): Remove.
5004         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
5005         (nnimap-expunge): Flip default to t.
5006
5007         * gnus.el (gnus-method-to-server): Don't push things to the cache
5008         unless it's unique.
5009         (gnus-server-to-method): Ditto.
5010
5011 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
5012
5013         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
5014
5015 2010-09-22  Julien Danjou  <julien@danjou.info>
5016
5017         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
5018         get the start of data.
5019         (gnus-html-encode-url): Add this function to encode special chars in
5020         URL.
5021         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
5022         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
5023
5024         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
5025         default.
5026         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
5027
5028         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
5029         images alt-text.
5030         (gnus-html-put-image): Put alt-text as help-echo.
5031
5032 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5033
5034         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
5035         * mm-util.el (mm-decompress-buffer)
5036         * nnir.el (nnir-run-find-grep)
5037         * pop3.el (pop3-list): Use 3rd arg of split-string.
5038
5039         * time-date.el (format-seconds): Comment fix.
5040
5041         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
5042         and byte-optimize-form-code-walker.
5043         (dgnushack-make-auto-load): Don't advise make-autoload.
5044
5045         * lpath.el: Remove Emacs 21 stuff.
5046
5047 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5048
5049         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
5050         outside the active range.  Suggested by Dan Christensen.
5051
5052         * gnus-start.el (gnus-get-unread-articles): Get the extended method
5053         slightly later to avoid double-getting it.
5054
5055         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
5056         previous patch.
5057
5058         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
5059
5060 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
5061
5062         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
5063
5064 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5065
5066         * gnus-int.el (gnus-open-server): Give a better error message in the
5067         "go offline" case.
5068
5069         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
5070         marks for nnimap, which is seldom the right thing to do.
5071
5072         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
5073         (gnus-same-method-different-name): New function.
5074
5075         * nnimap.el (parse-time): Require.
5076
5077         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
5078         method in the presence of many similar methods.
5079
5080         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
5081
5082         * nnimap.el (nnimap-find-expired-articles): Don't refer to
5083         nnml-inhibit-expiry.
5084
5085         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
5086         find out whether methods are equal.
5087
5088         * nnimap.el (nnimap-find-expired-articles): New function.
5089         (nnimap-process-expiry-targets): New function.
5090         (nnimap-request-move-article): Request the article before looking at
5091         what the Message-ID is.  Fix found by Andrew Cohen.
5092         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
5093
5094         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
5095         for oldness in addition to being a predicate.
5096
5097         * nnimap.el (nnimap-request-group): When we have zero articles, return
5098         the right data to Gnus.
5099         (nnimap-request-expire-articles): Only delete articles immediately if
5100         the target is 'delete.
5101
5102         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
5103         method, this would bug out.
5104
5105         * gnus-group.el (gnus-group-expunge-group): Rename from
5106         gnus-group-nnimap-expunge, and implemented as a normal interface
5107         function.
5108
5109         * gnus-int.el (gnus-request-expunge-group): New function.
5110
5111         * nnimap.el (nnimap-request-create-group): Implement.
5112         (nnimap-request-expunge-group): New function.
5113
5114 2010-09-21  Julien Danjou  <julien@danjou.info>
5115
5116         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
5117         (gnus-html-cache-expired): Add new function.
5118         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
5119         wethever we should display image for fetch it.
5120         Compute alt-text earlier to pass it to the fetching function too.
5121         (gnus-html-schedule-image-fetching): Change function argument to only
5122         get one image at a time, not a list.
5123         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
5124         cache.
5125         (gnus-html-get-image-data): New function to retrieve image data from
5126         cache.
5127         (gnus-html-put-image): Change buffer argument to use image data rather
5128         than file, and place image above region rather than inserting a new
5129         one.  Do not take alt-text as argument, since it's useless now: we place
5130         the image above alt-text.
5131         (gnus-html-prune-cache): Remove.
5132         (gnus-html-show-images): Start to fetch image when we find one, do not
5133         push into a temporary list.
5134         (gnus-html-prefetch-images): Only fetch image if they have expired.
5135         (gnus-html-browse-image): Fix, use 'gnus-image-url.
5136         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
5137
5138 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5139
5140         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
5141
5142 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5143
5144         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
5145         spec inser "*" if the group isn't active instead of 0.
5146
5147         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
5148         opening the server.
5149         (nnimap-request-delete-group): Implement group deletion.
5150         (nnimap-transform-headers): Return the size of the entire message in
5151         the Bytes header, not just the size of the first part.
5152         (nnimap-request-move-article): When moving an article from nnimap,
5153         request the article first so the accepting form has an article to
5154         accept.  Reported by Dan Christensen.
5155         (nnimap-command): Make sure that the error message doesn't error out.
5156
5157 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
5158
5159         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
5160         we haven't requested anything.
5161
5162 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5163
5164         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
5165         "".  Fix found by Andrew Cohen.
5166
5167         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
5168         instead of -encode-string.
5169
5170 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5171
5172         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
5173
5174         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
5175         by mm-subst-char-in-string.
5176
5177 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5178
5179         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
5180         waiting for the connection string.
5181
5182         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
5183         arriving.
5184
5185         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
5186         bogus characters.  This allows selecting certain Gmail groups.
5187
5188         * nnimap.el (nnimap-find-wanted-parts-1): New function.
5189         (nnimap-fetch-partial-articles): New variable.
5190         (nnimap-open-connection): When looking for credentials, also use the
5191         nnimap-server-port.
5192         (nnimap-request-article): Return the group/article number, so that Gnus
5193         `^' works as expected.
5194         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
5195
5196         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
5197         comments.
5198         (gnus-methods-sloppily-equal): New function.
5199         (gnus): When using the development version of Gnus, load the gnus-load
5200         file.
5201
5202         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
5203         `gnus-open-server' on each method before trying to scan them etc.
5204         This ensures that all the backend parameters are set correctly.
5205
5206         * nnimap.el (nnimap-authenticator): New variable.
5207         (nnimap-open-connection): Allow anonymous login.
5208         (nnimap-transform-headers): The chars header is called Chars not Bytes.
5209         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
5210
5211         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
5212         patch, found by Knut Anders Hatlen.
5213
5214 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
5215
5216         * gnus-agent.el (gnus-agent-batch-confirmation)
5217         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
5218         to gnus-message.
5219         * gnus-art.el (gnus-article-describe-briefly): Likewise.
5220         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
5221         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
5222         * gnus-int.el (gnus-open-server): Likewise.
5223         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
5224         (gnus-score-check-syntax): Likewise.
5225         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
5226         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
5227         Likewise.
5228         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
5229
5230 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5231
5232         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
5233         calling conventions so that prefetch doesn't bug out.
5234
5235 2010-09-19  Julien Danjou  <julien@danjou.info>
5236
5237         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
5238         rather than `subst-char-in-region' in order to be able to replace ASCII
5239         char by UTF-8 ones.
5240
5241         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
5242         than curl.
5243         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
5244         the right URL and ALT text on images.
5245         (gnus-html-wash-tags): Fix tag case.
5246         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
5247         (gnus-article-html): Add -o display_ins_del=2 option.
5248         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
5249
5250 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5251
5252         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
5253         the extra mail headers, which sometimes seem to happen for unknown
5254         reasons.
5255
5256         * mail-parse.el (mail-header-encode-parameter): Define as
5257         rfc2045-encode-string instead of as rfc2231-encode-string, since some
5258         (or most, perhaps?) mail readers don't understand the latter, but do
5259         understand the former.
5260
5261         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
5262         to nil, so that no methods are automatically agentized.  I think this
5263         is probably what most users want.
5264
5265         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
5266         from url-retrieve, for instance about invalid URLs.
5267
5268         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
5269         groups that have no articles.
5270         (nnimap-request-article): Check that we really got an article when we
5271         requested one.
5272
5273         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
5274         doesn't exist.
5275
5276         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
5277         nntp buffer so the agent can save it.
5278         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
5279         that CRLF doesn't get translated to \n.
5280         (nnimap-open-connection): Don't make 'shell commands only send \n.
5281
5282 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5283
5284         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
5285         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
5286         Update var name.
5287         (nnml-generate-nov-file): Use dolist.
5288         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
5289         Use with-current-buffer.
5290
5291 2010-09-18  Julien Danjou  <julien@danjou.info>
5292
5293         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
5294         parallel.
5295
5296 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5297
5298         * nnimap.el (nnimap-update-info): When doing partial marks update, get
5299         the range update right.
5300         (nnimap-request-group): Don't make `M-g' bug out on group with no
5301         marks.
5302         (nnoo): Require, so that other packages can require nnimap.
5303         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
5304         command we're looking for.  This helps when the server sends more
5305         responses after we've gotten everything we expected.
5306         (nnimap): Add a `newlinep' field to keep track of end-of-line
5307         conventions.
5308         Don't send CRLF to things that don't want it.
5309         (nnimap-request-accept-article): Ditto.
5310
5311 2010-09-18  Julien Danjou  <julien@danjou.info>
5312
5313         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
5314         than curl to retrieve images.
5315
5316 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5317
5318         * nnimap.el (nnimap-update-info): Extend the info so that we can set
5319         the marks.
5320         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
5321         (nnimap-wait-for-connection): New function.
5322         (nnimap-open-connection): If we have PREAUTH, don't query for login
5323         credentials.
5324         (nnimap-update-info): Fix off-by-one error when concatenating ranges
5325         when doing a partial update.
5326
5327 2010-09-18  Julien Danjou  <julien@danjou.info>
5328
5329         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
5330         tags.
5331
5332 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5333
5334         * nnimap.el (nnimap-credentials): New function.
5335         (nnimap-open-connection): Use the new function to look for credentials
5336         also on the numeric equivalents of "imap" and "imaps".
5337
5338         * gnus-start.el (gnus-activate-group): Send the info to
5339         gnus-request-group.
5340
5341         * nnimap.el (nnimap-request-group): Have the "check" version of the
5342         function parse flags and update the info, so that a `M-g' get a total
5343         resync of all flags from the group.
5344
5345         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
5346         to allow backends to alter the info on group selection.  Also alter all
5347         the backend -request-group functions to take the parameter.
5348
5349         * nnimap.el (nnimap-store-info): New function.
5350         (nnimap-update-info): Store the info for later usage.
5351         (nnimap-request-group): Use the stored info for the dont-check case, so
5352         that we don't retrieve all marks when we enter a group.
5353
5354         * nnimap.el: Use deffoo instead of defun for interface functions.
5355
5356         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
5357         update the group info.  This makes the nndraft groups, for instance, go
5358         back to their old behaviour.
5359
5360         * gnus-sum.el (gnus-select-newsgroup): Indent.
5361
5362         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
5363         in.
5364         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
5365         nothing.
5366
5367         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
5368         from methods that are denied.
5369
5370         * gnus-int.el (gnus-method-denied-p): New function.
5371
5372         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
5373         store the password instead of netrc.
5374         (nnimap-open-connection): Don't error out when we can't make a
5375         connections.
5376
5377         * auth-source.el (auth-source-create): In the password prompt, say what
5378         we're querying for.  Also prompt for user name if that hasn't been
5379         given.
5380
5381         * nnimap.el (nnimap-with-process-buffer): Remove.
5382
5383 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5384
5385         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
5386         method when we're reading from the agent.
5387
5388         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
5389
5390         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
5391         that's probably most useful for users.
5392
5393         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
5394         "failed" all the time.
5395
5396         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
5397         ...)) with (with-current-buffer ... ).
5398
5399         * nntp.el (nntp-open-server): Return whether the open was successful or
5400         not.
5401
5402         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
5403         select an unread unseen article first.
5404
5405         * nnimap.el (nnimap-open-connection): If the user doesn't have a
5406         /etc/services, supply some sensible port defaults.
5407
5408         * dgnushack.el: Define netrc-credentials.
5409
5410 2010-09-17  Julien Danjou  <julien@danjou.info>
5411
5412         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
5413
5414 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
5415
5416         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
5417         doesn't have any parameters.
5418
5419 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5420
5421         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
5422         only upcased checks.
5423
5424         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
5425
5426         * nnimap.el (nnimap-open-shell-stream): New function.
5427         (nnimap-open-connection): Use it.
5428         (nnimap-transform-headers): Get the number of lines in each message.
5429         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
5430         number of lines.
5431         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
5432         problem.
5433
5434         * utf7.el (utf7-encode): Autoload.
5435
5436         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
5437         to allow the mail splitting to not return a default group.  This is
5438         useful for nnimap, which will leave unmatched mail in the inbox.
5439
5440         * nnimap.el: Rewritten.
5441
5442         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
5443         nnimap usage.
5444
5445         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
5446         if the move is internal, so that nnimap can do fast internal moves.
5447
5448         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
5449         data.
5450         (gnus-read-active-for-groups): Support finishing the early retrieval of
5451         data.
5452
5453         * gnus-range.el (gnus-range-nconcat): New function.
5454
5455         * gnus-int.el (gnus-finish-retrieve-group-infos)
5456         (gnus-retrieve-group-data-early): New functions.
5457
5458 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5459
5460         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
5461         (nnrss-retrieve-groups):
5462         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
5463         (pop3-quit): Use with-current-buffer.
5464
5465 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5466
5467         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
5468         instead of nnheader-accept-process-output.
5469
5470         * dgnushack.el (dgnushack-compile): Add comment.
5471
5472         * lpath.el: No need to fbind propertize for XEmacs 21.4.
5473
5474         * gnus-html.el (gnus-html-schedule-image-fetching)
5475         (gnus-html-prefetch-images): Replace process-kill-without-query by
5476         gnus-set-process-query-on-exit-flag.
5477
5478 2010-09-16  Romain Francoise  <romain@orebokech.com>
5479
5480         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
5481
5482 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5483
5484         * gnus-registry.el (gnus-registry-install-shortcuts): The second
5485         parameter to unintern is mandatory-ish in Emacs 24.
5486
5487         * gnus-html.el (gnus-html-schedule-image-fetching)
5488         (gnus-html-prefetch-images): Check for curl before using it.
5489
5490         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
5491         depend on curl, which isn't essential.
5492
5493         * imap.el: Revert back to version
5494         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
5495         seem problematic.
5496
5497 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
5498
5499         * gnus-registry.el (gnus-registry-install-shortcuts):
5500         Explicitly pass `obarray' to `unintern' to avoid a warning.
5501
5502 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5503
5504         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
5505         change.
5506
5507         * nnrss.el (nnrss-request-list): Remove this function and related
5508         functions, including the moreover stuff.
5509
5510 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5511
5512         * nnrss.el (nnrss-retrieve-groups): New function.
5513
5514 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
5515
5516         * .dir-locals.el: Add no-byte-compile cookie.
5517
5518 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5519
5520         * time-date.el (format-seconds): Comment fix.
5521
5522         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
5523         for back end that doesn't support request-scan.
5524
5525 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5526
5527         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
5528         then do request scans from the backends.
5529
5530         * netrc.el (netrc-credentials): New conveniency function.
5531
5532         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
5533         avoid running a hook per line, since this takes a lot of time,
5534         profiling shows.
5535         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
5536         directly if gnus-visual-p is true.
5537
5538 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5539
5540         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
5541         groups; replace mapcar with dolist which is a bit faster; pass groups
5542         info to gnus-read-active-file-1.
5543         (gnus-read-active-file-1): Scan only specified groups if the new
5544         optional arg `infos' is given.
5545
5546 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5547
5548         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
5549
5550         * pop3.el (pop3-movemail): Remove.
5551         (pop3-streaming-movemail): Rename to pop3-movemail.
5552
5553         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
5554         don't restrict end-tag searches to the end of the line.
5555
5556 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5557
5558         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
5559         articles of every unchecked group to t, which means unknown since the
5560         server has never been opened.
5561
5562 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5563
5564         * gnus-html.el (gnus-html-show-alt-text): New command.
5565         (gnus-html-browse-image): Ditto.
5566         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
5567         to browse the image directly.
5568         (gnus-html-wash-tags): Search for images first, so that <a><img> works
5569         better.
5570
5571         * gnus-async.el (gnus-async-article-callback):
5572         Call `gnus-html-prefetch-images' unconditionally.
5573
5574         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
5575         before feeding URLs to curl.
5576
5577 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5578
5579         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
5580         internal images as deletable by `W D D'.
5581
5582         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
5583         (gnus-async-article-callback): Fix typo.
5584
5585 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5586
5587         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
5588         current line to work around bugs in the output from w3m.
5589
5590         * gnus-async.el (gnus-async-article-callback): Always prefetch images
5591         for groups that want that.
5592
5593         * nntp.el (nntp-wait-for-string): Supply a timeout for
5594         accept-process-output to ensure progress.
5595
5596         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
5597         level to get unread articles from, then use that for foreign groups,
5598         too.
5599
5600         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
5601         confuses the rest of the function.
5602
5603         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
5604         for the methods that support -retrieve-groups, too.
5605
5606         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
5607
5608 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5609
5610         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
5611         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
5612
5613         * pop3.el: Require cl when compiling.
5614         (pop3-number-of-responses): Search for "+OK", not "+OK ".
5615
5616 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5617
5618         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
5619         that aren't going to be activated.
5620         (gnus-get-unread-articles): Fix up the last commit.
5621
5622         * gnus-html.el (gnus-article-html): Allow calling without specifying
5623         the handle.  In that case, dissect the buffer first.
5624
5625         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
5626
5627         * nnimap.el (nnimap-open-connection): Revert the change that would look
5628         into authinfo for imaps instead of imap.
5629
5630         * gnus-start.el (gnus-activate-group): Take an optional parameter to
5631         say that you don't want to call gnus-request-group with don-check, but
5632         do check the reponse.  This is for virtual groups only.
5633         (gnus-get-unread-articles): Count the archive groups as secondary, so
5634         that they're activated the same way as before.
5635
5636         * imap.el (imap-message-map): Removed optional buffer parameter, since
5637         no callers use it.
5638         (imap-message-get): Ditto.
5639         (imap-message-put): Ditto.
5640         (imap-mailbox-map): Ditto.
5641         (imap-mailbox-put): Ditto.
5642         (imap-mailbox-get): Ditto.
5643         (imap-mailbox-get): Revert last change for this function.
5644
5645         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
5646         case-insensitively.
5647         (nnimap-debug): Remove.
5648
5649         * imap.el (imap-fetch-safe): Removed function, and altered all callers
5650         to use `imap-fetch' instead.  According to the comments, this should be
5651         safe, since all other IMAP clients use the 1:* syntax.
5652         (imap-enable-exchange-bug-workaround): Removed.
5653         (imap-debug): Removed -- doesn't seem very useful.
5654
5655         * mail-source.el (mail-source-fetch): Don't message if we're fetching
5656         mail from a file, and the file doesn't exist.
5657
5658         * imap.el (imap-log): New convenience function used throughout instead
5659         of repeating the same code all over the place.
5660
5661         * pop3.el (pop3-streaming-movemail): Return t for success.
5662
5663         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
5664         .authinfo if we're using ssl connection.
5665
5666         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
5667         already have if we're in a main Gnus `g' run.
5668
5669         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
5670
5671 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5672
5673         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
5674
5675         * nnmh.el (nnmh-request-list-1): Bind `file'.
5676
5677         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
5678         alias to set-process-query-on-exit-flag or process-kill-without-query.
5679         (pop3-open-server): Use it.
5680
5681 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5682
5683         * mail-source.el (mail-source-delete-crash-box): Always move the crash
5684         box to the Incoming file.  Fixes mistake in previous checkin.
5685
5686         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
5687         request loop (for debugging purposes) removed.
5688
5689         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
5690         culprit is more visible.
5691         (nnml-save-incremental-nov, nnml-open-incremental-nov)
5692         (nnml-add-incremental-nov): New functions to do "incremental" nov
5693         updates, where we just append to the end of the existing nov files
5694         without reading/writing them in full.
5695
5696         * mail-source.el (mail-source-delete-crash-box): Really only check the
5697         incoming files once in a while.
5698
5699         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
5700
5701         * mail-source.el (mail-source-delete-crash-box): Only check the
5702         incoming files for deletion once per day to save a lot of file
5703         accesses.
5704
5705         * pop3.el (pop3-logon): Fix up unbound variable typo.
5706
5707         * mail-source.el (pop3-streaming-movemail): Autoload.
5708
5709         * pop3.el (pop3-streaming-movemail):
5710         Respect pop3-leave-mail-on-server.
5711
5712         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
5713         retrieval.
5714
5715         * pop3.el (pop3-process-filter): Remove unused function.
5716         (pop3-streaming-movemail, pop3-send-streaming-command)
5717         (pop3-wait-for-messages, pop3-write-to-file)
5718         (pop3-number-of-responses): New functions for streaming pop3
5719         retrieval.
5720
5721         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
5722         come from no known methods.
5723         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
5724         list.
5725
5726         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
5727         message sizes.
5728         (pop3-movemail): Use erase-buffer instead of looping and deleting
5729         regions, which seems rather odd.
5730
5731         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
5732         file once per `g' run.
5733
5734         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
5735         directories.  This makes the draft queue directory work.
5736
5737         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
5738         data from the backends, so that we only request the list of groups from
5739         each method once.  This should speed things up considerably.
5740
5741         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
5742         detect that it's not implemented.
5743
5744         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
5745         we actually do recurse down into the tree, but don't stat all leaf
5746         nodes.
5747
5748         * gnus-html.el (gnus-html-show-images): If there are no images to show,
5749         then say so instead of bugging out.
5750
5751         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
5752         files exist before trying to read them.
5753
5754         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
5755         around <pre_int>.
5756
5757         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
5758
5759         * nnmh.el (nnmh-request-list-1): Optimize for speed.
5760
5761 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5762
5763         * mm-util.el (mm-image-load-path): Just return the image directories,
5764         not all directories in the path in addition to the image directories.
5765         (mm-image-load-path): Maintain a cache of the image directories so that
5766         the `g' command in Gnus doesn't have to stat dozens of directories each
5767         time.
5768
5769         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
5770         (gnus-html-wash-tags): Add a new `i' command to insert images.
5771         (gnus-html-insert-image): New command and keystroke.
5772         (gnus-html-redisplay-with-images): New command and keystroke.
5773         (gnus-html-show-images): Rename command.
5774         (gnus-html-wash-tags): Remove more white space before <pre_int> image
5775         spacers.
5776         (gnus-html-wash-tags): Decode entities at the end, so that entities
5777         inside the tags don't mess up the rest of the "parsing".
5778
5779         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
5780         so that nnimap methods aren't agentized by default.  There's apparently
5781         many problems related to agent/imap behaviour.
5782
5783         * gnus-art.el (gnus-article-copy-string): New command and key binding.
5784
5785         * gnus-html.el: Doc fix.
5786
5787 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5788
5789         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
5790         specifier-spec-list for Emacs 21.
5791
5792         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
5793         glyph-width and glyph-height instead of display-graphic-p and
5794         image-size; make avoidance of displaying small images work for XEmacs.
5795
5796         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
5797         for XEmacs.
5798
5799         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
5800         of symbol that holds plist data.
5801         (gnus-process-plist): Remove plist of process after getting it.
5802
5803 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5804
5805         * message.el (message-generate-hashcash): Change default to
5806         'opportunistic if hashcash is installed.
5807
5808         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
5809         (gnus-html-put-image): Only call image-size once, since it's somewhat
5810         time-consuming on remote X servers.
5811
5812 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5813
5814         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
5815         type on data, not a file name.
5816
5817         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
5818         window-pixel-edges for Emacs 21.
5819
5820         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
5821         decoded contents.
5822         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
5823
5824 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5825
5826         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
5827         group line format, since it isn't very interesting.
5828
5829         * gnus-agent.el (gnus-agent-short-article),
5830         (gnus-agent-long-article): Increase values for these two variables,
5831         since most people are likely to have more network connection and
5832         storage than before.
5833
5834         * gnus.el (gnus-refer-article-method): Change default to 'current.
5835         When referring an article, the common behaviour is to refer it from the
5836         current select method, not the native select method.  The chances of
5837         the native select method having the message in question is rather slim
5838         these days.
5839
5840         * gnus-sum.el (gnus-auto-select-subject): Change default to
5841         `unseen-or-unread'.  I think it's likely that most people want to
5842         select an unseen article over a previously seen, but unread one.
5843
5844         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
5845         means that in the article buffer none of the minor mode elements will
5846         be shown, usually, and this is not desirable in most cases.
5847
5848         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
5849         that commands like `d' (and the like) go to the next line in the
5850         buffer, instead of the next unread article.  I think this is the
5851         behaviour that is most natural for most users.
5852         (gnus-single-article-buffer): Change default to nil, so that people can
5853         have as many article buffers open as they have summary buffer.  I think
5854         this is the most natural way for the groups to behave.
5855
5856         * message.el (message-generate-new-buffers): Change default to
5857         `unsent', so that all new message buffers start their names with the
5858         string "*unsent", and it's easier to find the buffers if you move from
5859         them.
5860
5861 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5862
5863         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
5864         small.  They're probably tracking images.
5865         (gnus-html-wash-tags): Remove all <pre_int> place holders.
5866         (gnus-html-rescale-image): Yet another try at getting the image sizing
5867         right.
5868
5869         * nntp.el (nntp-request-set-mark): Refuse to do marks if
5870         nntp-marks-file-name is nil.
5871
5872 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5873
5874         * gnus-html.el (gnus-html-wash-tags)
5875         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
5876         Better logging.
5877
5878 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5879
5880         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
5881
5882         * gnus-html.el (gnus-html-wash-tags): Check the value of
5883         gnus-blocked-images in the summary buffer.
5884
5885 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5886
5887         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
5888
5889 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5890
5891         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
5892         like "a", it seems like.
5893         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
5894         since it needs to be picked from the correct buffer.
5895
5896         * nnwfm.el: Remove.
5897
5898         * nnlistserv.el: Remove.
5899
5900 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5901
5902         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
5903         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
5904
5905 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5906
5907         * nnkiboze.el: Remove.
5908
5909         * nndb.el: Remove.
5910
5911         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
5912         alt text.
5913         (gnus-html-rescale-image): Try to get the rescaling logic right for
5914         images that are just wide and not tall.
5915
5916         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
5917         overshadow variable bindings.
5918
5919 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5920
5921         * gnus-html.el (gnus-html-wash-tags)
5922         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
5923         Add extra logging.
5924
5925 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5926
5927         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
5928         (gnus-max-image-proportion): New variable.
5929         (gnus-html-rescale-image): New function.
5930         (gnus-html-put-image): Rescale images.
5931
5932 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5933
5934         Fix up some byte-compiler warnings.
5935         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
5936         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
5937         (gnus-article-fill-cited-article, gnus-article-hide-citation)
5938         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
5939         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
5940         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
5941         (gnus-group-update-group): Use save-excursion and with-current-buffer.
5942
5943 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5944
5945         * gnus-html.el (gnus-article-html): Decode contents by charset.
5946
5947 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5948
5949         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
5950         (gnus-html-frame-width, gnus-blocked-images)
5951         * message.el (message-prune-recipient-rules): Add custom version.
5952         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
5953
5954         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
5955         functions.
5956
5957         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
5958         gnus-process-get.
5959
5960 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
5961
5962         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
5963         instead of lsub directly.
5964
5965 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5966
5967         * nnwarchive.el: Remove.
5968
5969         * gnus-soup.el: Remove.
5970
5971         * nnsoup.el: Remove.
5972
5973         * nnultimate.el: Remove.
5974
5975         * gnus-html.el (gnus-blocked-images): New variable.
5976
5977         * message.el (message-prune-recipients): New function.
5978         (message-prune-recipient-rules): New variable.
5979
5980         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
5981         guess whether a long line is natural text or not.
5982
5983         * gnus-html.el (gnus-html-schedule-image-fetching):
5984         Use gnus-process-plist and friends for compatibility.
5985
5986 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5987
5988         * gnus-html.el: Require packages that define macros used in this file.
5989         (gnus-article-mouse-face): Declare to silence byte-compiler.
5990         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
5991         process-get.
5992         (gnus-html-put-image): Use plist-get to avoid getf.
5993         (gnus-html-prefetch-images): Use with-current-buffer.
5994
5995 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5996
5997         * gnus-ems.el: Provide compatibility functions for
5998         gnus-set-process-plist.
5999
6000         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
6001         header-line-format for XEmacs 21.4.
6002
6003         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
6004         * gnus.el (gnus-valid-select-methods)
6005         * message.el (message-send-mail-partially-limit)
6006         * mm-decode.el (mm-text-html-renderer)
6007         * mml.el (mml-insert-mime-headers-always)
6008         * smiley.el (smiley-regexp-alist): Bump custom version.
6009
6010 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6011
6012         * gnus-html.el: require mm-url.
6013         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
6014         with the url to `url'.
6015         (gnus-html-wash-tags): Support cid: URLs/images.
6016
6017 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6018
6019         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
6020         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
6021         bindings, as they aren't useful at all.  `w' is moved to `W w'.
6022
6023         * gnus-move.el: Remove file, since it doesn't really work.
6024
6025         * gnus-html.el (gnus-article-html): Tell w3m that the input is
6026         UTF-8.  This seems to fix problems with some German web feeds.
6027
6028         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
6029         at the top so that the proper colours are applied.
6030
6031         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
6032         don't have dots in their names.
6033
6034         * gnus-art.el (gnus-article-view-part): Doc fix.
6035
6036         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
6037         XEmacs-compatible.
6038         (gnus-html-put-image): Don't do images on non-graphic displays.
6039
6040         * nnslashdot.el: Remove this unused backend.
6041
6042         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
6043         actions.
6044         (gnus-undo-register-1): Revert last change.
6045
6046         * gnus-group.el (gnus-group-completing-read): Protect against not
6047         having completion-styles bound.
6048
6049         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
6050         make broken recipients happier.
6051
6052         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
6053
6054         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
6055         point parameter.
6056
6057         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
6058
6059         * gnus-group.el (gnus-group-completing-read): Add 'substring to
6060         completion-styles for group selection.
6061
6062 2009-02-04  Andreas Schwab  <schwab@suse.de>
6063
6064         * gnus-score.el (gnus-score-string): Fix regex for matching extra
6065         headers and regexp-quote the match if necessary.
6066
6067 2009-03-24  Miles Bader  <miles@gnu.org>
6068
6069         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
6070         the blinking smiley.
6071
6072 2009-03-24  Simon Josefsson  <simon@josefsson.org>
6073
6074         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
6075         blink smiley.
6076
6077 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6078
6079         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
6080         where the dribbel file lives exists.
6081
6082         * message.el (message-send-mail-partially-limit): Change the default to
6083         nil, since most people don't want this.
6084
6085         * mm-url.el (mm-url-decode-entities): Also decode entities like
6086         &#x3212.
6087
6088 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
6089
6090         * gnus-sum.el (gnus-summary-idna-message):
6091         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
6092         Hyperlink urls in docstrings with URL `...'.
6093
6094 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
6095
6096         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
6097         functions.
6098
6099 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6100
6101         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
6102         say what the mouseover text should be.
6103
6104         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
6105         version of the mm-w3m-safe-url-regexp variable to only download images
6106         in the groups where we want that to happen.
6107
6108         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
6109
6110         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
6111         easier debugging.
6112         (gnus-article-beginning-of-window): Add kludge to allow spacing past
6113         big pictures in the article buffer.
6114
6115         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
6116         gnus-article-html.
6117         (mm-text-html-renderer): gnus-article-html needs curl in addition to
6118         w3m.
6119
6120         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
6121
6122 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6123
6124         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
6125         which doesn't exist.
6126
6127         * message.el (message-inhibit-ecomplete): New variable to allow some
6128         function to inhibit ecomplete address storage.
6129         (message-resend): Disable ecomplete message storage when resending
6130         messages.
6131
6132         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
6133
6134 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6135
6136         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
6137         Save excursion while copying, moving, and deleting articles in order to
6138         prevent the cursor from jumping to unforeseen place.
6139
6140 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6141
6142         * lpath.el: No need to bind bookmark-current-buffer,
6143         bookmark-yank-point and bookmark-make-record-function.
6144
6145 2010-08-17  Glenn Morris  <rgm@gnu.org>
6146
6147         * gnus-sync.el: Require gnus components whose functions are used.
6148
6149         * gnus-art.el (bookmark-make-record-function):
6150         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
6151         Declare for compiler.
6152
6153         * mm-url.el (mml-compute-boundary): Autoload.
6154
6155 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6156
6157         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
6158
6159 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
6160
6161         Typo fix "hoo4a" -> "hook".
6162
6163         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
6164
6165 2010-08-14  Glenn Morris  <rgm@gnu.org>
6166
6167         * gnus-sync.el (gnus-sync): Fix defgroup version.
6168
6169 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
6170
6171         Doc fixes and keep unknown groups (ammended for nunion bug fix).
6172
6173         * gnus-sync.el: Fix docs.
6174         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
6175         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
6176
6177 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
6178
6179         Optimizations for gnus-sync.el.
6180
6181         * gnus-sync.el: Add docs about gnus-sync-backend
6182         possibilities.
6183         (gnus-sync-save): Remove unnecessary message.
6184         (gnus-sync-read): Optimize and show what groups were skipped.
6185
6186 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
6187
6188         Minor bug fixes for gnus-sync.el.
6189
6190         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
6191         Don't read the sync on get-new-news.
6192
6193         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
6194         quiet.
6195
6196         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
6197         (fix typo).
6198
6199 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
6200
6201         Make saving and restoring of hidden threads work with overlays.
6202         Patch applied by Ted Zlatanov.
6203
6204         * gnus-sum.el (gnus-hidden-threads-configuration)
6205         (gnus-restore-hidden-threads-configuration): Update to deal with text
6206         properties, rather than searching for a magic character.
6207
6208 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
6209
6210         New gnus-sync.el library for synchronization of marks.
6211
6212         * gnus-sync.el: New library for synchronization of marks.
6213
6214         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
6215         renamed from `gnus-registry-grep-in-list'.
6216
6217         * gnus-registry.el (gnus-registry-follow-group-p):
6218         Use `gnus-grep-in-list'.
6219
6220         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
6221
6222 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6223
6224         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
6225         determining charset of text fails.
6226
6227 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6228
6229         * nnmail.el (nnmail-get-new-mail-1): Revert.
6230
6231         * nnml.el (nnml-active-number): Make sure names of newly created groups
6232         in nnml-group-alist are encoded.
6233
6234 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6235
6236         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
6237         containing non-ASCII characters in active file for nnml back end.
6238
6239 2010-07-24  David Engster  <dengste@eml.cc>
6240
6241         * mml-smime.el (mml-smime-epg-verify): Also accept the older
6242         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
6243
6244 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
6245
6246         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
6247         tag (Bug#6654).
6248
6249 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6250
6251         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
6252         the article buffer, not the summary buffer.
6253
6254 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6255
6256         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
6257         Emacs 23 as well.
6258
6259 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6260
6261         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
6262         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
6263
6264 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6265
6266         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
6267         Patch applied by Karl Fogel.
6268
6269         * gnus-sum.el (gnus-summary-bookmark-make-record):
6270         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
6271
6272 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6273
6274         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
6275         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
6276         C-w still not working correctly from Article buffers; Thierry's
6277         patch to fix that will be applied after this.
6278
6279         * gnus-art.el (bookmark-make-record-function): New local variable.
6280
6281         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
6282         article buffer.
6283         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
6284
6285 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
6286
6287         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
6288         on changes in bookmark.el.
6289
6290 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6291
6292         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
6293         `no-log' instead of message not to log prompt string.
6294
6295 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
6296
6297         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
6298         the *other* type of HTML form submission.
6299
6300 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
6301
6302         * auth-source.el (auth-source-pick): If choice does not contain a
6303         questioned keyword, set the check to t.
6304
6305 2010-06-12  Romain Francoise  <romain@orebokech.com>
6306
6307         * gnus-util.el (gnus-date-get-time): Move up before first use.
6308
6309 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6310
6311         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
6312         (gnus-article-edit-part): Bind it to make last part that is substituted
6313         or deleted visible.
6314         (gnus-mime-display-single): Buttonize part of which id equals to
6315         gnus-mime-buttonized-part-id.
6316
6317 2010-06-10  Dan Christensen  <jdc@uwo.ca>
6318
6319         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
6320         (gnus-dd-mmm): Use gnus-date-get-time.
6321         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
6322         simplify logic.
6323         (gnus-summary-limit-to-age): Use gnus-date-get-time.
6324         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
6325
6326 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
6327
6328         * auth-source.el (top): Autoload `secrets-list-collections',
6329         `secrets-create-item', `secrets-delete-item'.
6330         (auth-sources): Fix tag string.
6331         (auth-get-source, auth-source-retrieve, auth-source-create)
6332         (auth-source-delete): New defuns.
6333         (auth-source-pick): Rewrite in order to avoid 2 passes.
6334         (auth-source-forget-user-or-password): New parameter USERNAME.
6335         (auth-source-user-or-password): New parameters CREATE-MISSING and
6336         DELETE-EXISTING.  Retrieve password interactively, if needed.
6337
6338 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
6339
6340         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
6341         deleting unused directories when gnus-expert-user is t.
6342
6343 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6344
6345         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
6346         for each temp file when gnus-article-browse-delete-temp is ask.
6347
6348 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6349
6350         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
6351         Lisp calls to delete-backward-char by calls to delete-char.
6352
6353 2010-05-20  Kevin Ryde  <user42@zip.com.au>
6354
6355         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
6356
6357 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
6358
6359         * password-cache.el (password-cache-remove): Fix docstring.
6360
6361 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6362
6363         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
6364         article unless decoding article to be saved.
6365
6366 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6367
6368         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
6369         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
6370         generated within the mm-with-unibyte-current-buffer macro.
6371
6372 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6373
6374         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
6375         to nil when we're in a mml-preview buffer and no group is selected.
6376
6377 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
6378
6379         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
6380         when catching the `C-g'.  Reported by "Leo".
6381
6382 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6383
6384         * message.el (message-forward-make-body-plain)
6385         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
6386         multibyte-string-p.
6387
6388         * lpath.el: Revert.
6389
6390 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6391
6392         * message.el (message-forward-make-body-mml): Assume original message
6393         is multibyte string; error on unibyte.
6394         (message-forward-make-body-plain): Ditto; don't add excessive newline
6395         in body end.
6396
6397         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
6398
6399 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
6400
6401         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
6402         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
6403
6404 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6405
6406         * mm-extern.el (mm-extern-url): Don't use
6407         mm-with-unibyte-current-buffer.
6408         (mm-extern-cache-contents): Use with-current-buffer instead of
6409         save-excursion + set-buffer.
6410
6411 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6412
6413         * mm-util.el (mm-emacs-mule): Remove.
6414
6415 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
6416
6417         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
6418         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
6419         change.
6420
6421 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6422
6423         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
6424         bind the default value of enable-multibyte-characters to nil.
6425
6426 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6427
6428         * message.el (message-forward-make-body-plain)
6429         (message-forward-make-body-mml):
6430         Don't use mm-with-unibyte-current-buffer.
6431
6432 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6433
6434         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
6435
6436 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
6437
6438         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
6439         (Bug#5592).
6440
6441 2010-05-07  Julien Danjou  <julien@danjou.info>
6442
6443         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
6444         it to mm-pipe-part.
6445
6446         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
6447         it is given.
6448
6449 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6450
6451         * binhex.el (binhex-decode-region-internal)
6452         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
6453         (dns-query)
6454         * nnweb.el (nnweb-gmane-search)
6455         * pgg-parse.el (pgg-parse-armor)
6456         * pgg.el (pgg-verify-region)
6457         * sha1.el (sha1-string-external)
6458         * uudecode.el (uudecode-decode-region-internal)
6459         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
6460         XEmacs.
6461
6462         * gnus-art.el (gnus-article-browse-html-parts)
6463         * gnus-group.el (gnus-read-ephemeral-gmane-group)
6464         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
6465         make-temp-file.
6466
6467         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
6468         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
6469         compiling.
6470
6471         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
6472         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
6473         XEmacs when compiling.
6474
6475         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
6476         gnus-pick-mode-off-hook for XEmacs when compiling.
6477         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
6478         gnus-binary-mode-off-hook for XEmacs when compiling.
6479
6480         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
6481         Return nil if char-charset is not available.
6482
6483         * imap.el (imap-disable-multibyte)
6484         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
6485         macros.
6486
6487         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
6488         instead of encode-coding-string.
6489
6490         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
6491         'xemacs) instead of mm-emacs-mule to switch function definitions.
6492         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
6493
6494         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
6495         bind temporary-file-directory for XEmacs;
6496         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
6497         timer-set-function for XEmacs 21.4 and SXEmacs;
6498         bind timer-list for XEmacs 21.4 and SXEmacs;
6499         fbind char-charset and find-charset-region for non-Mule XEmacs;
6500         fbind decode-coding-region, decode-coding-string, detect-coding-region,
6501         encode-coding-region and encode-coding-string for XEmacs having no
6502         file-coding feature.
6503
6504 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
6505
6506         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
6507
6508 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6509
6510         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
6511         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
6512
6513 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
6514
6515         * mm-util.el (mm-decompress-buffer): Use `delete-file';
6516         alias `jka-compr-delete-temp-file' no longer exists.
6517
6518 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6519
6520         Use define-minor-mode in Gnus where applicable.
6521         * mml.el (mml-mode): Use define-minor-mode.
6522         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
6523         (gnus-undo-mode): Use define-minor-mode.
6524         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
6525         (gnus-dead-summary-mode): Use define-minor-mode.
6526         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
6527         Initialize in declaration.
6528         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
6529         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
6530         (gnus-mailing-list-mode): Use define-minor-mode.
6531         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
6532         (gnus-draft-mode): Use define-minor-mode.
6533         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
6534         (gnus-dired-mode): Use define-minor-mode.
6535
6536 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
6537
6538         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
6539         handles on recursive mml-to-mime translation and check them for
6540         boundary delimiter collisions.  Reported by Greg Troxel.
6541
6542 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6543
6544         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
6545
6546 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6547
6548         * mm-util.el (mm-find-buffer-file-coding-system):
6549         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
6550
6551 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
6552
6553         * message.el (message-generate-headers): Record insertion of optional
6554         headers as well.  Otherwise the check to prevent repeated insertion of
6555         optional headers is a no-op.
6556
6557 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
6558
6559         * smime.el: Don't mention CVS.
6560
6561         * nnrss.el (nnrss-fetch): Don't mention CVS.
6562
6563         * nnir.el: Don't mention CVS.
6564
6565 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6566
6567         * gnus-sum.el (gnus-summary-bookmark-make-record):
6568         Add `location' field.
6569
6570 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6571
6572         * lpath.el: Fbind bookmark-default-handler,
6573         bookmark-get-bookmark-record, bookmark-make-record-default,
6574         bookmark-prop-get for Emacs <23 and XEmacs.
6575
6576 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6577
6578         * gnus-sum.el: Add bookmark declarations to silence the compiler.
6579         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
6580         Use with-current-buffer to silence the byte-compiler.
6581         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
6582         bother to require `gnus'.
6583         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
6584
6585 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6586
6587         * gnus-sum.el (gnus-summary-bookmark-make-record)
6588         (gnus-summary-bookmark-jump): New functions.
6589         (gnus-summary-mode): Setup bookmark support.
6590
6591 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
6592
6593         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
6594         if set.
6595
6596 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6597
6598         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
6599         gnus-article-browse-html-save-cid-image; make it work recursively for
6600         forwarded messages as well.
6601         (gnus-article-browse-html-parts): Work when prefix arg is given.
6602         (gnus-article-browse-html-article): Doc fix.
6603
6604 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
6605
6606         * message.el (message-default-mail-headers):
6607         (message-default-headers): Carry the value mail-default-headers over
6608         into message-default-mail-headers, rather than message-default-headers.
6609
6610 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
6611
6612         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
6613         charset.
6614
6615         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
6616         charset into the <meta> tag when the article is encoded to utf-8.
6617
6618 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6619
6620         * gnus-art.el (gnus-article-browse-delete-temp-files):
6621         Delete directories as well.
6622         (gnus-article-browse-html-parts): Work for images that do not specify
6623         file names; delete temp directory when quitting; insert header at the
6624         right place; use file: scheme for image files.
6625
6626 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
6627
6628         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
6629         (gnus-article-browse-html-parts): Use it to make temporary cid image
6630         files in addition to html file so that browser may display them.
6631
6632 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6633
6634         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
6635
6636 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
6637
6638         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
6639
6640 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
6641
6642         * auth-source.el (auth-sources): Change default to be simpler.
6643         Explain about Secret Service API sources.  Improve Customize options.
6644         (auth-source-pick): Change to accept any number of search parameters.
6645         Implement fallbacks iteratively, not recursively.  Add scoring on the
6646         second pass and sort by score.  Call Secret Service API when needed.
6647         (auth-source-user-or-password): Use it.  Call Secret Service API
6648         directly when needed to get the user name and the password.
6649
6650 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
6651
6652         * message.el (message-interactive): Doc fix.
6653         (message-qmail-inject-args): Reflow.
6654         (message-kill-to-signature): Fix typo in docstring.
6655
6656         * smiley.el (smiley-buffer): Fix typo in docstring.
6657
6658 2010-03-24  Glenn Morris  <rgm@gnu.org>
6659
6660         * mail-source.el (gnus-message): Declare.
6661         (mail-source-delete-old-incoming): Require gnus-util.
6662
6663 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6664
6665         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
6666
6667         * message.el (ecomplete-setup): Autoload it for Emacs <23.
6668
6669         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
6670         password-cache's default if it is not bound.
6671         (mml-secure-passphrase-cache-expiry): Default to 16 that is
6672         password-cache-expiry's default if it is not bound.
6673
6674         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
6675         available in Emacs 21.
6676
6677         * lpath.el: Suppress compiler warnings for:
6678         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
6679         XEmacs;
6680         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
6681         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
6682         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
6683
6684 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
6685
6686         * auth-source.el (auth-sources): Fix up definition so extra parameters
6687         are always inline.
6688
6689 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
6690
6691         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
6692         wasn't updated after mismatch.  Clear cached mailbox info correctly
6693         when uidvalidity changes.
6694         (nnimap-group-prefixed-name): New function to avoid some code
6695         duplication.
6696         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
6697         (nnimap-request-group): Use it.
6698         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
6699         (nnimap-update-unseen): Significantly improved speed of Gnus startup
6700         with many imap folders.  This is done by caching the group status from
6701         the imap server persistently in a group parameter `imap-status'.  (This
6702         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
6703         but not persistently, so every Gnus startup was still very slow.)
6704
6705 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
6706
6707         * assistant.el (assistant-render-text): Run `widget-setup' and don't
6708         delete the extra newline.  Otherwise editing of :string and :number
6709         types don't work.
6710
6711 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
6712
6713         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
6714         secrets.el dependency.
6715         (auth-sources): Add optional user name.  Add secrets.el configuration
6716         choice (unused right now).
6717
6718 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
6719
6720         * gnus-sum.el (gnus-summary-make-menu-bar):
6721         Let `gnus-registry-install-shortcuts' fill in the functions.
6722
6723         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
6724         warnings.
6725         (gnus-registry-misc-menus): Variable to hold registry mark menus.
6726         (gnus-registry-install-shortcuts): Populate and use it in a
6727         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
6728
6729 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
6730
6731         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
6732         In-place substitutions for the group name encoding/decoding.
6733         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
6734         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
6735         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
6736         (nnimap-update-unseen, nnimap-request-list)
6737         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
6738         (nnimap-request-set-mark, nnimap-split-to-groups)
6739         (nnimap-split-articles, nnimap-request-newgroups)
6740         (nnimap-request-create-group, nnimap-request-accept-article)
6741         (nnimap-request-delete-group, nnimap-request-rename-group)
6742         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
6743         `encoded-mbx' for consistency.
6744         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
6745         variable `imap-current-mailbox'.
6746
6747         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
6748         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
6749
6750 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
6751
6752         * pop3.el (pop3-display-message-size-flag): Display message size byte
6753         counts during POP3 download.
6754         (pop3-movemail): Use it.
6755         (pop3-list): Implement listing of available messages.
6756
6757 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
6758
6759         * nnir.el (nnir-get-article-nov-override-function): New function to
6760         override the normal NOV retrieval.
6761         (nnir-retrieve-headers): Use it.
6762
6763 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
6764
6765         * auth-source.el (netrc-machine-user-or-password): Autoload.
6766
6767 2010-03-19  Glenn Morris  <rgm@gnu.org>
6768
6769         Stop message.el from loading about 40 libraries it doesn't always need.
6770         The general approach is to autoload rather than require, and to
6771         require in the specific functions rather than the file.  (Bug#5642)
6772
6773         * gmm-utils.el: Don't require wid-edit.
6774         (widget-create-child-value, widget-convert, widget-default-get):
6775         Autoload.
6776
6777         * gnus-util.el: Don't require time-date, netrc.
6778         (message-fetch-field, gnus-group-name-decode): Declare rather than
6779         autoloading.
6780         (gnus-fetch-field): Require message.
6781         (gnus-decode-newsgroups): Require gnus-group.
6782
6783         * ietf-drums.el: Don't require time-date.
6784
6785         * message.el: Don't require hashcash, canlock, ecomplete.
6786         Do require mail-utils.  Require nnheader only when compiling.
6787         (smtpmail-default-smtp-server): Remove declaration.
6788         (message-send-mail-function): Check smtpmail-default-smtp-server
6789         is bound rather than requiring smtpmail.
6790         (message-auto-save-directory, message-insert-signature):
6791         Use expand-file-name rather than nnheader-concat.
6792         (nnheader-insert-file-contents): Autoload.
6793         (hashcash-wait-async): Declare.
6794         (message-send-mail): Only call gnus-setup-posting-charset if
6795         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
6796         (message-send-mail-with-sendmail): Require sendmail.
6797         (canlock-password, canlock-password-for-verify): Declare.
6798         (message-canlock-password): Require canlock.
6799         (nnheader-get-report): Autoload.
6800         (gnus-setup-posting-charset): Declare.
6801         (message-send-news): Require gnus-msg.
6802         (message-make-references, message-make-in-reply-to): Use mail-header-id
6803         rather than the alias mail-header-message-id.
6804         (ecomplete-add-item, ecomplete-save): Declare.
6805         (message-put-addresses-in-ecomplete): Require ecomplete.
6806         (ecomplete-display-matches): Autoload.
6807
6808         * mm-decode.el: Don't require mailcap, gnus-util.
6809         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
6810         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
6811         Autoload.
6812         (mailcap-mime-extensions): Declare.
6813
6814         * mm-encode.el: Don't require mailcap.
6815         (mailcap-extension-to-mime): Autoload.
6816
6817         * mml-sec.el: Don't require password-cache.
6818
6819         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
6820         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
6821         (mml-minibuffer-read-type): Require mailcap.
6822         (mml-preview): Require gnus-msg.
6823
6824         * mml1991.el: Require password-cache.
6825         (password-cache-expiry): Remove declaration.
6826
6827         * mml2015.el: Require password-cache.
6828         (password-cache-expiry): Remove declaration.
6829
6830         * nneething.el (mailcap): Require mailcap.
6831
6832         * nnheader.el (declare-function): Add compatibility stub.
6833         (message-remove-header): Declare rather than autoload.
6834         (nnheader-replace-header): Require message.
6835
6836         * nnimap.el (declare-function): Add compatibility stub.
6837         (netrc-parse, netrc-machine-user-or-password): Declare.
6838         (nnimap-open-connection): Require netrc.
6839
6840         * nntp.el (declare-function): Add compatibility stub.
6841         (netrc-parse, netrc-machine, netrc-get): Declare.
6842         (nntp-send-authinfo): Require netrc.
6843
6844         * rfc2047.el: Don't require qp.
6845         (quoted-printable-encode-region, quoted-printable-decode-string):
6846         Autoload.
6847
6848         * sieve-mode.el: Don't require easymenu.
6849         (easy-menu-add-item): Autoload it.
6850
6851         * spam-stat.el (time-to-number-of-days): Autoload it.
6852
6853 2010-03-19  Glenn Morris  <rgm@gnu.org>
6854
6855         * password-cache.el (password-cache, password-cache-expiry): Autoload.
6856
6857 2010-03-18  Glenn Morris  <rgm@gnu.org>
6858
6859         * hashcash.el (declare-function): Remove duplicate definition.
6860
6861 2010-03-17  Kevin Ryde  <user42@zip.com.au>
6862
6863         * mml.el (mml-read-tag): Unquote values with `read' to reverse
6864         prin1 in mml-insert-tag (just stripping the quotes gave wrong
6865         value if any backslash escapes).
6866
6867 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6868
6869         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
6870         if it is available.  (bug#5647)
6871
6872         * lpath.el: Suppress compiler warning for coding-system-from-name for
6873         Emacs 21 and XEmacs.
6874
6875 2010-03-14  Juri Linkov  <juri@jurta.org>
6876
6877         * hmac-def.el:
6878         * hmac-md5.el:
6879         * netrc.el: Fix keywords.
6880
6881 2010-02-26  Glenn Morris  <rgm@gnu.org>
6882
6883         * message.el (message-send-mail-function): Change the default, so that
6884         it inherits from a customized send-mail-function.  (Bug#5643)
6885
6886 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6887
6888         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
6889         shell-command-to-string signals an error (bug#5299).
6890
6891 2010-02-24  Glenn Morris  <rgm@gnu.org>
6892
6893         * message.el (message-smtpmail-send-it)
6894         (message-send-mail-with-mailclient): Doc fixes.
6895
6896 2010-02-16  Glenn Morris  <rgm@gnu.org>
6897
6898         * message.el (message-default-mail-headers): Change the default value
6899         to ease the transition from mail-mode to message-mode.  (Bug#5555)
6900
6901 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6902
6903         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
6904         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
6905
6906 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
6907
6908         * time-date.el (date-to-time): Doc fix (Bug#5408).
6909
6910 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
6911
6912         * message.el (message-mail): Just pass yank-action on to message-setup.
6913         (message-setup): Handle (FUN . ARGS) form of yank-action.
6914         (message-with-reply-buffer, message-widen-reply)
6915         (message-yank-original): Handle non-buffer values of
6916         message-reply-buffer (Bug#4080).
6917         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
6918
6919 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
6920
6921         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
6922         Fix typo in docstring.
6923
6924 2010-01-08  Jason Rumney  <jasonr@gnu.org>
6925
6926         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
6927         response.
6928
6929 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6930
6931         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
6932
6933         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
6934
6935         * message.el (message-check-news-header-syntax): Protect against a
6936         string that `rfc822-addresses' returns when parsing fails.
6937
6938 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6939
6940         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
6941         (gnus-previous-char-property-change): New functions.
6942
6943         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
6944
6945 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
6946
6947         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
6948         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
6949
6950 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
6951
6952         * message.el (message-exchange-point-and-mark): Rework last change to
6953         avoid using optional arg of exchange-point-and-mark, for backward
6954         compatibility.
6955
6956 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
6957
6958         * message.el (message-exchange-point-and-mark):
6959         Call exchange-point-and-mark with an argument rather than setting
6960         mark-active by hand (Bug#5175).
6961
6962 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6963
6964         * nntp.el (nntp-service-to-port): Work for service expressed with
6965         numeric string; replace [:digit:] with [0-9] for XEmacs.
6966
6967 2009-12-17  Glenn Morris  <rgm@gnu.org>
6968
6969         * gnus-group.el (gnus-bug-group-download-format-alist):
6970         Change emacs entry to debbugs.gnu.org.  Bump :version.
6971
6972 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6973
6974         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
6975
6976 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
6977
6978         * message.el (message-info): Explain why we use `Info-goto-node'.
6979
6980 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6981
6982         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
6983
6984 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6985
6986         * message.el (message-completion-in-region): New compatibility function.
6987         (message-expand-group): Use it.
6988
6989 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6990
6991         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
6992         with no unread article should be listed if the 2nd arg `predicate' is
6993         given.
6994
6995 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6996
6997         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
6998
6999 2009-11-29  Juri Linkov  <juri@jurta.org>
7000
7001         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
7002         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
7003         on `gnus-recenter'.  (Bug#4698, Bug#4981)
7004
7005 2009-11-26  Kevin Ryde  <user42@zip.com.au>
7006
7007         * sha1.el (sha1-string-external): default-directory "/" in case
7008         otherwise non-existent.  process-connection-type pipe for touch of
7009         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
7010
7011 2009-11-25  Kevin Ryde  <user42@zip.com.au>
7012
7013         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
7014         it's comms related and sgml-mode.el has "comm" on that basis too.
7015
7016 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7017
7018         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
7019         containing tspecial characters if they have been already quoted.
7020
7021 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
7022
7023         * dns-mode.el (auto-mode-alist): Purecopy string.
7024
7025 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7026
7027         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
7028
7029 2009-10-24  Glenn Morris  <rgm@gnu.org>
7030
7031         * gnus-art.el (help-xref-stack-item): Define for compiler.
7032
7033 2009-10-21  Kevin Ryde  <user42@zip.com.au>
7034
7035         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
7036
7037 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7038
7039         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
7040
7041 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7042
7043         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
7044         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
7045
7046 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7047
7048         * gnus.el (gnus-overlay-get): New alias to overlay-get.
7049         (gnus-overlays-in): New alias to overlays-in.
7050
7051         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
7052         gnus-overlay-get, and gnus-delete-overlay.
7053         (gnus-summary-show-thread): Make it work as well for systems in which
7054         next-single-char-property-change is not available.
7055         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
7056
7057         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
7058         (gnus-overlay-get): New alias to extent-property.
7059         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
7060
7061         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
7062         SXEmacs.
7063
7064         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
7065         SXEmacs.
7066
7067 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
7068
7069         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
7070
7071 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
7072
7073         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
7074         and XEmacs that don't have `remove-overlays'.
7075
7076 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7077
7078         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
7079         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
7080         selective display.  Use overlays instead.
7081
7082 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
7083
7084         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
7085
7086 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7087
7088         * spam-stat.el (spam-stat-load): Fix typo in message.
7089
7090 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7091
7092         * dig.el (dig-invoke): Fix typo in docstring.
7093         (query-dig): Reflow docstring.
7094
7095 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
7096
7097         * gnus-art.el (gnus-article-encrypt-body):
7098         * message.el (message-check-recipients):
7099         * mm-util.el (mm-codepage-setup):
7100         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
7101         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
7102
7103 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
7104
7105         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
7106         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
7107         keys from the menu if mm-{sign,encrypt}-option is 'guided.
7108         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
7109         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
7110
7111 2009-09-21  Kevin Ryde  <user42@zip.com.au>
7112
7113         * dig.el: Add "Keywords: comm", as per net-utils.el.
7114
7115 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7116
7117         * dig.el (dig-mode): Use define-derived-mode.
7118
7119 2009-09-19  Glenn Morris  <rgm@gnu.org>
7120
7121         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
7122
7123 2009-09-18  Glenn Morris  <rgm@gnu.org>
7124
7125         * gnus-diary.el (gnus-diary-check-message):
7126         * message.el (message-insert-formatted-citation-line):
7127         * nnbabyl.el (top-level):
7128         * nndiary.el (nndiary-schedule):
7129         Fix typos in condition-case handlers.
7130
7131 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7132
7133         * gnus-art.el (gnus-article-edit-part): Work for the buffer
7134         configuration that provides the sole article window in a frame;
7135         position point correctly after deleting a part.
7136
7137 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
7138
7139         * spam.el (spam-unregister-on-reregister): Add boolean variable.
7140         (spam-resolve-registrations-routine): Use it to unregister articles
7141         that change status.
7142
7143 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
7144
7145         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
7146         with XEmacs.
7147         (parse-time-string-chars): Use it.
7148
7149 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
7150
7151         * imap.el (imap-interactive-login): Better messages.
7152         (imap-open): Fix bug with renamed buffer on reconnect.
7153         (imap-authenticate): Add buffer-local imap-last-authenticator variable
7154         for easier debugging and cleaner code.  On successful (guessed based on
7155         server capabilities) secondary authentication, set imap-state
7156         correctly.
7157         (imap-last-authenticator): Define imap-last-authenticator as a variable
7158         to avoid warnings.
7159
7160 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7161
7162         * nnrss.el (nnrss-request-article): Remove binding of
7163         default-enable-multibyte-characters that has gotten needless by
7164         the 2007-07-13 change in rfc2047-encode-message-header.
7165
7166         * mml.el (mml-insert-multipart): Error on the message header.
7167         (mml-insert-part): Error on the message header; position point at
7168         the end of a MIME tag.
7169
7170 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7171
7172         * time-date.el (autoload): Expand define-obsolete-function-alias into
7173         defalias and make-obsolete for old Emacsen that Gnus supports.
7174         (with-no-warnings): Define it for old Emacsen.
7175         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
7176         is available.
7177         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
7178         float-time is available; suppress compile warning for time-to-seconds.
7179
7180         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
7181         (gnus-float-time): Alias to float-time if it exists.
7182
7183         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
7184         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
7185         float-time is available; suppress compile warning for time-to-seconds.
7186
7187         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
7188         XEmacs.
7189
7190 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
7191
7192         * imap.el (imap-message-map): Docstring fix.
7193
7194 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7195
7196         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
7197         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
7198         Add the optional argument `encoding' that overrides the default.
7199
7200         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
7201         mm-encode-buffer.
7202
7203 2009-09-04  Glenn Morris  <rgm@gnu.org>
7204
7205         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
7206         mm-disable-multibyte, rather than default-enable-multibyte-characters.
7207         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
7208         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
7209         * mm-util.el (mm-with-unibyte-current-buffer)
7210         (mm-find-buffer-file-coding-system):
7211         * yenc.el (yenc-decode-region): Use default-value rather than
7212         default-enable-multibyte-characters.
7213
7214 2009-09-03  Glenn Morris  <rgm@gnu.org>
7215
7216         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
7217         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
7218         than default-enable-multibyte-characters.
7219
7220 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
7221
7222         * gnus-art.el (gnus-article-read-summary-keys):
7223         Fix gnus-buffer-configuration's value temporarily used.
7224
7225 2009-09-02  Glenn Morris  <rgm@gnu.org>
7226
7227         * gnus-util.el (gnus-float-time): New function.
7228         * gnus-delay.el (gnus-delay-article):
7229         * gnus-sum.el (gnus-thread-latest-date):
7230         * gnus-util.el (gnus-user-date): Use gnus-float-time.
7231         * nnspool.el (nnspool-request-newgroups):
7232         Use gnus-float-time rather than time-to-seconds.
7233         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
7234
7235         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
7236         (gnus-header-subject-face, gnus-header-newsgroups-face)
7237         (gnus-header-name-face, gnus-header-content-face):
7238         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
7239         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
7240         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
7241         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
7242         (gnus-cite-face-11):
7243         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
7244         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
7245         (gnus-server-closed-face, gnus-server-denied-face)
7246         (gnus-server-offline-face):
7247         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
7248         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
7249         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
7250         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
7251         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
7252         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
7253         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
7254         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
7255         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
7256         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
7257         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
7258         (gnus-summary-selected-face, gnus-summary-cancelled-face)
7259         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
7260         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
7261         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
7262         (gnus-summary-high-undownloaded-face)
7263         (gnus-summary-low-undownloaded-face)
7264         (gnus-summary-normal-undownloaded-face)
7265         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
7266         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
7267         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
7268         (gnus-splash-face):
7269         * message.el (message-header-to-face, message-header-cc-face)
7270         (message-header-subject-face, message-header-newsgroups-face)
7271         (message-header-other-face, message-header-name-face)
7272         (message-header-xheader-face, message-separator-face)
7273         (message-cited-text-face, message-mml-face):
7274         * sieve-mode.el (sieve-control-commands-face)
7275         (sieve-action-commands-face, sieve-test-commands-face)
7276         (sieve-tagged-arguments-face):
7277         * spam.el (spam-face):
7278         Mark face aliases with "-face" in the name as obsolete.
7279
7280 2009-09-01  Glenn Morris  <rgm@gnu.org>
7281
7282         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
7283         than goto-line.
7284
7285 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7286
7287         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
7288         Don't move point if the command is invoked inside the message header.
7289
7290 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7291
7292         * imap.el (imap-send-command): Simplify.
7293         (imap-wait-for-tag): point-max -> buffer-size.
7294
7295 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7296
7297         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
7298         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
7299         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
7300         * nnir.el (nnir-swish-e-index-file):
7301         * gnus-sum.el (gnus-summary-delete-marked-as-read)
7302         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
7303         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
7304         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
7305         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
7306         (gnus-treat-display-xface): Add Emacs version of obsolescence.
7307
7308 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7309
7310         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
7311         Don't save excursion.
7312
7313 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7314
7315         * nnheader.el (nnheader-find-file-noselect):
7316         * mm-util.el (mm-insert-file-contents):
7317         Use (default-value 'major-mode) instead of default-major-mode.
7318
7319 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7320
7321         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
7322
7323 2009-08-26  Glenn Morris  <rgm@gnu.org>
7324
7325         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
7326         than placing in files.el.
7327
7328 2009-08-25  Glenn Morris  <rgm@gnu.org>
7329
7330         * nnir.el (top-level): Don't require cl at run-time.
7331         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
7332         Replace cl-function substitute with gnus-replace-in-string.
7333         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
7334         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
7335         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
7336         simplified expansions.
7337
7338 2009-08-25  Kevin Ryde  <user42@zip.com.au>
7339
7340         * dig.el (dig): Add autoload cookie.
7341
7342 2009-08-22  Glenn Morris  <rgm@gnu.org>
7343
7344         * gnus-art.el (gnus-button-patch): Use forward-line rather than
7345         goto-line.
7346
7347 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
7348
7349         * parse-time.el (parse-time-string-chars): Save match data.
7350
7351 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
7352
7353         * parse-time.el (parse-time-string-chars): Compute using character
7354         classes, to handle non-ascii characters (Bug#3190).
7355
7356 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7357
7358         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
7359
7360         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
7361         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
7362         (gnus-mm-display-part, gnus-mime-display-single)
7363         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
7364         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
7365
7366         * gnus-sum.el
7367         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
7368         (gnus-summary-move-article): Add expirable mark to articles copied or
7369         moved to group that has auto-expire turned on if the option is non-nil.
7370
7371 2009-07-24  Glenn Morris  <rgm@gnu.org>
7372
7373         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
7374         Fix typo.  (Bug#3903)
7375
7376 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7377
7378         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
7379         gnus-article-read-summary-keys rather than gnus-summary-edit-article
7380         that should not be used for draft articles.
7381         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
7382         that has no concern in minor mode keys.
7383         (gnus-article-summary-command, gnus-article-summary-command-nosave):
7384         Abolish.
7385
7386 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7387
7388         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
7389         article without making inquiry to a user for unknown encoding.
7390
7391         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
7392         (nnmaildir--scan): Assume i-node and device number that file-attributes
7393         returns might be cons-cell.
7394
7395         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
7396
7397         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
7398
7399 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
7400
7401         * auth-source.el: Remove docs now in auth.texi.  Don't use
7402         `gnus-message' for logging.  Add new variables `auth-source-debug' and
7403         `auth-source-hide-passwords' and use them.
7404
7405 2009-07-15  Glenn Morris  <rgm@gnu.org>
7406
7407         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
7408
7409 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7410
7411         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
7412         excessive whitespace from the default values of title and description.
7413
7414 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7415
7416         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
7417         mail-fetch-field to fetch Content-Description header in order to
7418         exclude newlines.
7419
7420 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
7421
7422         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
7423         format used by GnuPG 2.0.11.
7424
7425 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7426
7427         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
7428         to deleted part.
7429
7430 2009-05-30  David Engster  <dengste@eml.cc>
7431
7432         * nnmairix.el: Remove old documentation in the commentary block.
7433         (nnmairix-request-group): Do not update active file for nnml back ends.
7434         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
7435         end so that overview files are ignored.
7436         (nnmairix-update-groups): Make updating the groups more robust by using
7437         marks.
7438         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
7439         with dollar characters in message-id.
7440
7441 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
7442
7443         * spam.el: Use dns-query instead of query-dns.  Was renamed on
7444         2008-12-25 in dns.el.
7445
7446 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7447
7448         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
7449         could happen if the text is only composed of spaces and/or tabs.
7450
7451 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
7452
7453         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
7454         when sending a queued message to avoid extra mml tags.
7455
7456 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7457
7458         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
7459
7460 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7461
7462         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
7463         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
7464         rmail-toggle-header for XEmacs;
7465         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
7466
7467 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7468
7469         * gnus-dired.el: Remove autoload for gnus-setup-message.
7470         (gnus-dired-attach): Fake this-command value to prevent Gnus from
7471         displaying Gnus logo; always use compose-mail.
7472
7473 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
7474
7475         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
7476
7477 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7478
7479         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
7480         (gnus-nocem-issuers): List currently active issuers; fix custom type.
7481         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
7482         available.
7483         (gnus-nocem-epg-verify): New function.
7484
7485 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
7486
7487         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
7488
7489 2009-02-15  Glenn Morris  <rgm@gnu.org>
7490
7491         * gnus-util.el (rmail-insert-rmail-file-header)
7492         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
7493         autoloads.
7494         (rmail-default-rmail-file): Remove unnecessary declaration.
7495         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
7496
7497 2009-02-14  Glenn Morris  <rgm@gnu.org>
7498
7499         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
7500         variable (only used in gnus-util, which declares it anyway).
7501         (rmail-output-to-rmail-file): Remove autoload of deleted function,
7502         which was only needed by gnus-art (changed to not use it any more).
7503         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
7504         only used in gnus-util, which autoloads it itself.
7505         (rmail-update-summary): Fix autoload.
7506
7507         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
7508         rather than rmail-output-to-rmail-file.
7509
7510 2009-02-07  Glenn Morris  <rgm@gnu.org>
7511
7512         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
7513         autoload of function that no longer exists.
7514         (rmail-toggle-header): Declare.
7515         (message-forward-rmail-make-body): Handle mbox Rmail.
7516
7517 2009-01-31  Glenn Morris  <rgm@gnu.org>
7518
7519         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
7520         2009-01-09 change.
7521
7522 2009-01-31  Dave Love  <fx@gnu.org>
7523
7524         * imap.el (imap-fetch-safe): Bind debug-on-error.
7525         (imap-debug): Add imap-fetch-safe.
7526
7527 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
7528
7529         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
7530         (auth-source-forget-all-cached): New convenience function.
7531         (auth-source-user-or-password): Accept list of modes or a single mode.
7532
7533         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
7534         auth-source modes.
7535
7536         * netrc.el (netrc-machine-user-or-password): Use list of
7537         auth-source modes.
7538
7539         * nnimap.el (nnimap-open-connection): Use list of
7540         auth-source modes.
7541
7542         * nntp.el (nntp-send-authinfo): Use list of
7543         auth-source modes.
7544
7545 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
7546
7547         * auth-source.el: Update docs to reflect epa-file-enable is to be used
7548         now.
7549
7550 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7551
7552         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
7553         coding system in XEmacs; add a workaround for XEmacs.
7554
7555         * lpath.el: Fbind coding-system-aliasee.
7556
7557 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7558
7559         * mm-util.el (mm-coding-system-priorities): Protect against nil value
7560         of current-language-environment.
7561
7562 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
7563
7564         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
7565         available at runtime.
7566
7567 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
7568
7569         * gnus-art.el (article-date-ut): Fix end point of narrowing.
7570
7571 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
7572
7573         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
7574         the greatest positive fixnum value doesn't work under an XEmacs with
7575         bignum support; use the most-positive-fixnum constant instead,
7576         available since Emacs 21.1 with cl and XEmacs 21.1.
7577
7578 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7579
7580         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
7581         XEmacs gets not to work.
7582
7583 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7584
7585         * mm-util.el (mm-coding-system-priorities): Allow the value like
7586         "Japanese (UTF-8)" of current-language-environment.
7587
7588 2009-01-09  Glenn Morris  <rgm@gnu.org>
7589
7590         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
7591         with last-command-event.
7592
7593 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
7594
7595         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
7596         in the doc string.
7597
7598         * message.el (message-fix-before-sending): Amend comment.
7599
7600 2009-01-08  Dave Love  <fx@gnu.org>
7601
7602         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
7603
7604 2009-01-07  David Engster  <dengste@eml.cc>
7605
7606         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
7607         simplified server definitions by converting it via
7608         gnus-server-to-method.
7609
7610 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7611
7612         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
7613         parameter's operands.
7614
7615 2009-01-06  David Engster  <dengste@eml.cc>
7616
7617         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
7618         primary select method (for gnus-group-mark-article-as-read).
7619
7620 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
7621
7622         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
7623         `(gnus)Face', not `(gnus)X-Face'.
7624
7625 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7626
7627         * mm-util.el (mm-ucs-to-char): New function.
7628
7629         * mm-url.el (mm-url-decode-entities): Use it.
7630
7631         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
7632         unicode-to-char.
7633
7634 2009-01-05  Dave Love  <fx@gnu.org>
7635
7636         * time-date.el: Require cl for `declare'.
7637
7638 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
7639
7640         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
7641         Dave Love.
7642
7643 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
7644
7645         * message.el (message-fix-before-sending): Add `eight-bit' to
7646         illegible-text check.
7647
7648 2009-01-03  Michael Olson  <mwolson@gnu.org>
7649
7650         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
7651         `headers' is nil.  This can occur if the IMAP server does not have
7652         permissions to read messages from a folder, but can write new messages
7653         to the folder.
7654         (nnimap-request-article-part): Do not insert `data' if it is nil.
7655
7656         * imap.el (imap-parse-fetch): Courier can insert spurious blank
7657         characters which will confuse `read', so skip past them.
7658
7659 2009-01-01  Dave Love  <fx@gnu.org>
7660
7661         * imap.el (imap-string-to-integer): Fix typo.
7662         (imap-fetch-safe): New function.
7663         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
7664
7665         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
7666
7667         * imap.el (imap-process-connection-type, imap-debug, imap-open):
7668         (imap-parse-greeting): Fix doc strings.
7669         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
7670         (imap-parse-flag-list): Make messages unique.
7671         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
7672
7673         * nnimap.el: Fix author email.
7674         (nnimap-split-rule): Add FIXME comment.
7675         (nnimap-debug): Fix doc string.
7676
7677 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
7678
7679         * dns.el (dns-set-servers): Check "Address".  Fix typo.
7680
7681 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
7682
7683         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
7684         nslookup if resolv.conf isn't available.
7685         (dns-query): Rename from query-dns.
7686         (dns-query-cached): Rename from query-dns-cached.
7687
7688 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7689
7690         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
7691         overlay-arrow-position and overlay-arrow-string buffer-local; no need
7692         to check if those variables exist (first appeared in Emacs 18.50).
7693
7694 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7695
7696         * mm-util.el (mm-line-number-at-pos): New function.
7697
7698         * spam-report.el (spam-report-process-queue): Use it.
7699
7700 2008-12-24  David Engster  <dengste@eml.cc>
7701
7702         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
7703         parameters that haven't existed as variables as buffer-local variables.
7704
7705 2008-12-23  Dave Love  <fx@gnu.org>
7706
7707         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
7708         cadar.
7709
7710         * sieve-manage.el (sieve-manage-starttls-p): Rename from
7711         imap-starttls-p.
7712         (sieve-manage-starttls-open): Rename from imap-starttls-open.
7713
7714 2008-12-22  Dave Love  <fx@gnu.org>
7715
7716         * imap.el: Fix author email.  Doc fixes.
7717         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
7718         reply.
7719
7720 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
7721
7722         * spam-report.el (spam-report-gmane-max-requests): New constant.
7723         (spam-report-gmane-wait): New variable.
7724         (spam-report-gmane-ham, spam-report-gmane-spam)
7725         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
7726         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
7727         the server.
7728
7729         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
7730         Add explanations.
7731
7732         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
7733         nnheader-accept-process-output and nnheader-read-timeout if available.
7734         (pop3-movemail): Use it.
7735
7736         * message.el (message-check-news-body-syntax): Fix signature check if
7737         there's an attachment.
7738
7739 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7740
7741         * mm-util.el: Add comments to the mm- emulating functions.
7742
7743 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
7744
7745         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
7746         Reported by Stephen Berman <stephen.berman@gmx.net>.
7747
7748 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7749
7750         * mm-util.el (mm-substring-no-properties): New function.
7751         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
7752         (mm-special-display-p): Enable those lambda forms to be byte compiled.
7753         (mm-string-to-multibyte): Doc fix.
7754
7755         * mml.el (mml-attach-file): Use mm-substring-no-properties.
7756
7757 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
7758
7759         * mml.el (mml-attach-file): Strip text properties from file name.
7760         (Bug#1574)
7761
7762 2008-12-16  Glenn Morris  <rgm@gnu.org>
7763
7764         * mm-util.el (mm-charset-override-alist): Declare for compiler.
7765
7766 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7767
7768         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
7769         knows since the charset specified might be a bogus alias that
7770         mm-charset-synonym-alist provides.
7771
7772 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
7773
7774         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
7775         "ISO_8859-1".
7776
7777         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
7778
7779 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7780
7781         * mm-util.el (mm-charset-eval-alist):
7782         Define it before mm-charset-to-coding-system.
7783         (mm-charset-to-coding-system): Add optional argument `silent';
7784         define it before mm-charset-override-alist.
7785         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
7786         default value if it can be used in Emacs currently running;
7787         silence mm-charset-to-coding-system.
7788
7789 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7790
7791         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
7792         `allow-override' which says whether to use `mm-charset-override-alist'.
7793         (rfc2047-decode-encoded-words): Use it.
7794
7795         * mm-util.el (mm-charset-override-alist): Fix custom type;
7796         add `(gb2312 . gbk)' to choices.
7797
7798 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7799
7800         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
7801         fast.
7802
7803         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
7804
7805         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
7806
7807 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
7808
7809         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
7810         on links.
7811
7812         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
7813
7814 2008-12-03  Lute Kamstra  <lute@gnu.org>
7815
7816         * sha1.el: Remove leading * from docstrings of defcustoms,
7817         deffaces, defconsts and defuns.
7818
7819 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7820
7821         * message.el (message-idna-to-ascii-rhs-1): Protect against local
7822         users' addresses that don't have domain parts.
7823         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
7824         rather than message-narrow-to-head since there will be the message
7825         header separator.
7826
7827 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7828
7829         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
7830         since the result is inserted in a unibyte buffer anyway.
7831         (nnimap-demule-use-string-to-multibyte): Remove.
7832         (nnimap-demule): Alias it to mm-string-to-multibyte.
7833
7834 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
7835
7836         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
7837         variable for debugging bug#464 and bug#1174.
7838         (nnimap-demule): Use it.
7839
7840 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7841
7842         * gnus-score.el (gnus-score-find-trace): Handle default score in total
7843         score calculation correctly.
7844
7845 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7846
7847         * message.el (message-send-mail): Just set the buffer to unibyte
7848         rather than use mm-with-unibyte-current-buffer which does a lot more.
7849         (message-send-mail-partially): Don't bother with
7850         mm-with-unibyte-current-buffer since it's already been made unibyte by
7851         message-send-mail.
7852
7853 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
7854
7855         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
7856
7857 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
7858
7859         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
7860
7861 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7862
7863         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
7864         require itself and to remove `with-no-warnings'.
7865
7866 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
7867
7868         * starttls.el (starttls-any-program-available): Get the name of the
7869         available TLS layer program.
7870         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
7871         well as the host name in the "opening" message.
7872
7873         * auth-source.el (auth-source-cache, auth-source-do-cache)
7874         (auth-source-user-or-password): Cache passwords and logins by default,
7875         allow override with `auth-source-do-cache'.
7876         (auth-source-forget-user-or-password): Allow users to remove cache
7877         entries if needed.
7878
7879 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
7880
7881         * md4.el (md4-buffer): Fix typo in docstring.
7882         (md4, md4-64): Doc fixes.
7883         (md4-pack-int32): Reflow docstring.
7884
7885 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
7886
7887         * ietf-drums.el (ietf-drums-remove-comments): Localize second
7888         condition-case to only the forward-sexp call.
7889
7890 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
7891
7892         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
7893         quotes contained.  Make it more robust regardless by an extra
7894         condition-case wrapper.
7895
7896 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7897
7898         * lpath.el: No need to fbind codepage-setup for Emacs 23.
7899
7900 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7901
7902         * nnml.el (nnml-request-expire-articles): Check if the function set to
7903         `nnmail-expiry-target' returns the symbol `delete'.
7904
7905         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
7906
7907         * nnmail.el (nnmail-expiry-target): Fix custom type.
7908
7909 2008-10-02  Glenn Morris  <rgm@gnu.org>
7910
7911         * mm-util.el (mm-codepage-setup): Tweak codepage error.
7912         Silence compiler warning.
7913
7914 2008-10-01  Magnus Henoch  <mange@freemail.hu>
7915
7916         * tls.el (open-tls-stream): Show the actual command being
7917         executed, instead of the format string.
7918
7919 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7920
7921         * lpath.el: Fbind codepage-setup for Emacs 23.
7922
7923 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
7924
7925         * mml.el (mml-menu): Don't assume mml2015 is bound.
7926
7927 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7928
7929         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
7930         exists.
7931
7932 2008-09-27  Glenn Morris  <rgm@gnu.org>
7933
7934         * gnus-util.el (mail-header-remove-comments): Autoload it.
7935
7936 2008-09-27  Andreas Schwab  <schwab@suse.de>
7937
7938         * gnus-util.el (gnus-split-references): Strip comments.
7939         (gnus-parent-id): Likewise.
7940
7941 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
7942
7943         * message.el (message-confirm-send): Fix version.
7944
7945 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7946
7947         * message.el (message-idna-to-ascii-rhs-1): Use
7948         mail-extract-address-components rather than mail-header-parse-addresses
7949         that is an alias by default to ietf-drums-parse-addresses that does not
7950         support non-ASCII names in headers' contents.
7951
7952 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
7953
7954         * message.el (message-confirm-send): Fix variable documentation to
7955         avoid the "y/n" wording.
7956
7957 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
7958
7959         * message.el (message-set-auto-save-file-name): Save to a different
7960         filename so multiple messages (especially drafts) can be recovered.
7961
7962 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
7963
7964         * message.el (message-confirm-send): Add appropriate version.
7965
7966 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
7967
7968         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
7969         defvar.
7970
7971 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
7972
7973         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
7974         (mm-pkcs7-enveloped-magic): Ditto.
7975
7976 2008-09-17  Simon Josefsson  <simon@josefsson.org>
7977
7978         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
7979         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
7980
7981 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
7982
7983         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
7984         default, it's better.
7985
7986 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
7987
7988         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
7989         summary line gnus-number property and ignore them (with a warning
7990         message).
7991
7992 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7993
7994         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
7995         macro caddr in the interactive form since it won't be expanded.
7996
7997 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7998
7999         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
8000         `charset'; fix name of function called recursively.
8001         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
8002
8003 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8004
8005         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
8006         (gnus-mime-set-charset-parameters): New function.
8007         (gnus-mime-view-part-as-charset): Use it to correctly display part
8008         specifying wrong charset.
8009
8010 2008-09-08  David Engster  <dengste@eml.cc>
8011
8012         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
8013         in completing-read for back end server.
8014
8015 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
8016
8017         * message.el (message-confirm-send): New variable to confirm sending a
8018         message.
8019         (message-send): Use it.
8020
8021 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
8022
8023         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
8024
8025 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8026
8027         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
8028
8029 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
8030
8031         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
8032         prevent tracking too many groups.
8033         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
8034         Use it.
8035
8036 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
8037
8038         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
8039         moving point to the bottom of the window in order to avoid recentering.
8040
8041 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8042
8043         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
8044
8045         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
8046         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
8047         (gnus-article-beginning-of-window): Fix calculation.
8048
8049 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8050
8051         * gnus-msg.el (gnus-summary-supersede-article)
8052         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
8053         value of gnus-newsgroup-charset to decode non-MIME encoded text in
8054         message header.
8055
8056 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
8057
8058         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
8059         pending output coming after the status change.
8060
8061 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
8062
8063         * message.el:
8064         * gnus-start.el:
8065         * gnus-registry.el: Remove VMS support.
8066
8067 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8068
8069         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
8070         macro.
8071         (rfc2104-hash): Use it.
8072
8073 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
8074
8075         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
8076         (gnus-summary-sort-by-most-recent-date): New commands.
8077         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
8078         and menu entries.
8079
8080 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8081
8082         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
8083         don't redisplay article for raw contents; remove plural articles stuff.
8084
8085         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
8086         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
8087         on gnus-summary-save-article; display results properly.
8088
8089 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8090
8091         * lpath.el: No need to fbind ns-focus-frame.
8092
8093 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8094
8095         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
8096
8097 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8098
8099         * gnus-art.el (gnus-summary-save-in-pipe):
8100         Consider gnus-save-all-headers.
8101
8102 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
8103
8104         * gnus-util.el (ns-focus-frame): Remove declaration.
8105         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
8106         like x.
8107
8108 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
8109
8110         * rfc2104.el (rfc2104-zero): Delete defconst.
8111         (rfc2104-hex-alist): Likewise.
8112         (rfc2104-hex-to-int): Delete func.
8113         (rfc2104-hexstring-to-bitstring): Likewise.
8114         (rfc2104-nybbles): New defconst.
8115         (rfc2104-hash): Rewrite for speed.
8116
8117 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8118
8119         * tls.el (open-tls-stream): Make it work with the 2nd argument
8120         BUFFER that is a string but does not exist as a buffer object, as
8121         mentioned in the doc-string.
8122
8123 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8124
8125         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
8126         SXEmacs.
8127
8128 2008-07-16  Glenn Morris  <rgm@gnu.org>
8129
8130         * gnus-util.el (ns-focus-frame): Declare for compiler.
8131
8132 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8133
8134         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
8135         set as a group parameter.
8136         (gnus-summary-save-in-pipe): Work when it is called independently.
8137         (gnus-summary-pipe-to-muttprint): Don't modify
8138         gnus-summary-pipe-output-default-command.
8139
8140 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8141
8142         * message.el (message-send-mail-with-sendmail):
8143         Display the error message.
8144
8145 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8146
8147         * gnus-art.el (gnus-default-article-saver):
8148         Add gnus-summary-save-in-pipe to choices.
8149         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
8150         gnus-summary-pipe-output-default-command as the default command.
8151         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
8152         instead of gnus-last-shell-command.
8153
8154         * gnus-sum.el (gnus-summary-pipe-output-default-command):
8155         New user option.
8156         (gnus-summary-muttprint-program): Mention the value will be changed.
8157         (gnus-summary-save-article): Force showing of all headers.
8158         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
8159
8160 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
8161
8162         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
8163
8164 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
8165
8166         * nnimap.el (nnimap-id):
8167         * sieve-manage.el (sieve-manage-open): Doc fixes.
8168
8169 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
8170
8171         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
8172         if available.
8173
8174 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8175
8176         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
8177
8178         * nnkiboze.el (nnkiboze-generate-group):
8179         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
8180
8181         * nnmairix.el: Require CL.
8182
8183 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8184
8185         * dgnushack.el: Autoload get-display-table and put-display-table for
8186         XEmacs 21.5.
8187
8188         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
8189         21.4 and SXEmacs.
8190
8191 2008-06-15  David Engster  <dengste@eml.cc>
8192
8193         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
8194
8195 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
8196
8197         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
8198         New macros that expand to an `aset'/`aref' call under Emacs, and to a
8199         runtime choice under XEmacs.
8200
8201         * gnus-sum.el (gnus-summary-set-display-table):
8202         Use `gnus-put-display-table', `gnus-get-display-table',
8203         `gnus-set-display-table' for the display table, instead of `aset'.
8204
8205         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
8206         Use `gnus-put-display-table', `gnus-get-display-table',
8207         `gnus-set-display-table' for the display table.
8208
8209 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
8210
8211         * nnmairix.el: Add autoloads.
8212
8213 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
8214
8215         * nnmairix.el (nnmairix-delete-recreate-group)
8216         (nnmairix-update-and-clear-marks): Fix error messages.
8217
8218 2008-06-14  David Engster  <dengste@eml.cc>
8219
8220         * nnmairix.el: Upgrade to version 0.6.
8221         (nnmairix-group-toggle-propmarks-this-group)
8222         (nnmairix-group-toggle-readmarks-this-group)
8223         (nnmairix-group-delete-recreate-this-group)
8224         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
8225         (nnmairix-remove-tick-mark-original-article): New commands.
8226         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
8227         (nnmairix-propagate-marks-to-nnmairix-groups)
8228         (nnmairix-only-use-registry, nnmairix-allowfast-default)
8229         (nnmairix-marks-cache, nnmairix-version-output): New variables.
8230         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
8231         functions needed for marks propagation and manipulation of read marks.
8232         (nnmairix-update-groups): New function.
8233         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
8234         (nnmairix-determine-original-group-from-registry)
8235         (nnmairix-determine-original-group-from-path)
8236         (nnmairix-get-group-from-file-path, nnmairix-map-range)
8237         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
8238         New helper functions.
8239         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
8240         keystrokes for new commands.
8241         (nnmairix-delete-and-create-on-change): Doc string cleanup.
8242         (nnmairix-request-group): Check allow-fast group parameter.
8243         (nnmairix-request-create-group): Set allow-fast group parameter if
8244         nnmairix-allowfast-default is set.
8245         (nnmairix-close-group): Propagate marks upon closing if needed.
8246         (nnmairix-group-toggle-threads-this-group): Use new.
8247         nnmairix-group-toggle-parameter helper function.
8248         (nnmairix-search): Better check for empty search result.
8249         (nnmairix-goto-original-article): Use new helper functions for
8250         determining original article.
8251         (nnmairix-show-original-article): Make sure message-id is in brackets.
8252         (nnmairix-call-mairix-binary): Change variable name.
8253         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
8254         helper function.
8255         (nnmairix-widget-toggle-activate): Fix doc string.
8256
8257 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8258
8259         * nnir.el: Require edmacro when compiling with XEmacs.
8260         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
8261         available in Emacs 21.
8262
8263 2008-06-11  Glenn Morris  <rgm@gnu.org>
8264
8265         * gnus-util.el (x-focus-frame):
8266         * gnus.el (image-size):
8267         * mm-decode.el (image-size): Declare.
8268
8269         * gnus-picon.el (declare-function): Add compat definition.
8270         (image-size): Declare.
8271
8272         * gnus-group.el (tool-bar-map):
8273         * gnus-sum.el (tool-bar-map): Define for compiler.
8274
8275         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
8276
8277         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
8278
8279         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
8280         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
8281         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
8282         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
8283         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
8284         * sieve-manage.el, spam-report.el, spam.el:
8285         Remove unnecessary eval-and-compile of autoloads.
8286
8287 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
8288
8289         * auth-source.el: Precise Tramp doc.
8290
8291 2008-06-07  Glenn Morris  <rgm@gnu.org>
8292
8293         * nnmairix.el: Remove unnecessary eval-when-compile.
8294
8295 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8296
8297         * lpath.el: Fbind propertize for XEmacs 21.4.
8298
8299 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
8300
8301         * nnir.el: Move here from ../contrib.
8302
8303 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8304
8305         * gnus-util.el (gnus-read-shell-command): New function.
8306         * mm-decode.el (mm-pipe-part):
8307         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
8308
8309 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8310
8311         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
8312
8313 2008-06-03  Glenn Morris  <rgm@gnu.org>
8314
8315         * pop3.el (nnheader-accept-process-output): Autoload it.
8316
8317 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8318
8319         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
8320         are not 2-digit hexadecimal characters that follow `%'s.
8321
8322 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
8323
8324         * message.el (message-bogus-recipient-p): Fix type in doc string.
8325         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
8326         (message-bogus-addresses): Rename from message-bogus-address-regexp.
8327         Improve custom options.
8328         (message-bogus-recipient-p): Adjust accordingly.
8329
8330 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
8331
8332         * parse-time.el (parse-time-months, parse-time-weekdays): Add
8333         long-form month and day names.
8334
8335 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8336
8337         * dgnushack.el: Autoload debug, eudc-expand-inline and
8338         pgg-snarf-keys-region for XEmacs.
8339
8340         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
8341
8342         * nnmairix.el: Require edmacro when compiling with XEmacs.
8343
8344 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
8345
8346         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
8347         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
8348
8349 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
8350
8351         * auth-source.el: Add more docs.
8352
8353         * netrc.el (netrc-machine): Always match if the port is not given.
8354
8355 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8356
8357         * nnheader.el (nnheader-read-timeout): Change the default timeout from
8358         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
8359         retrieval faster in some cases, but might make CPU usage larger.
8360         If this has any bad side effects, we might revert this change.
8361
8362         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
8363         seems to make mail retrieval much, much faster.
8364         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
8365         unconditionally.
8366
8367         * gnus-draft.el (gnus-group-send-queue):
8368         Bind message-send-mail-partially-limit to nil to avoid being prompted.
8369
8370 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
8371
8372         * mml.el (mml-attach-buffer): Prompt for `disposition'.
8373
8374         * message.el (message-bogus-address-regexp): Fix and improve custom
8375         type.
8376         (message-setup-hook): Add message-check-recipients as custom option.
8377
8378 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
8379
8380         * message.el (message-cite-function): Remove bogus autoload which crept
8381         in during merge from v5-10.
8382
8383 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
8384
8385         * nnimap.el (nnimap-open-connection): Fix login/password bug.
8386
8387         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
8388
8389         * auth-source.el: Preliminary Tramp docs.
8390         (auth-sources): Change the default auth-sources to use
8391         EPA .gpg files.
8392
8393 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
8394
8395         * nntp.el: Autoload `auth-source-user-or-password'.
8396         (nntp-send-authinfo): Use it.
8397
8398         * nnimap.el: Autoload `auth-source-user-or-password'.
8399         (nnimap-open-connection): Use it.
8400
8401         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
8402         for the gnus-message function.
8403         (auth-source-user-or-password): Use it.
8404
8405 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8406
8407         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
8408         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
8409         (rfc2104-hash): Use it.
8410
8411 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
8412
8413         * gnus-art.el (gnus-article-toggle-truncate-lines):
8414         Don't use `iff' in docstring.
8415
8416 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
8417
8418         * gnus-registry.el: Adjusted copyright dates and added a keyword.
8419
8420         * gnus-util.el (gnus-extract-address-component-name)
8421         (gnus-extract-address-component-email): Convenience functions around
8422         `gnus-extract-address-components'.
8423
8424         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8425         Use `gnus-extract-address-component-email' to fix bug of comparing full
8426         sender name to `user-mail-address'.
8427
8428 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
8429
8430         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
8431         catch/throw to optimize.
8432         (gnus-registry-find-keywords): Just use member to find a keyword.
8433
8434 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8435
8436         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
8437         is current before calling gnus-server-prepare.
8438         (gnus-server-setup-buffer, gnus-server-update-server)
8439         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
8440
8441 2008-05-04  Juri Linkov  <juri@jurta.org>
8442
8443         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
8444         (mailcap-file-default-commands): Use mailcap-replace-in-string
8445         instead of replace-regexp-in-string, and mailcap-delete-duplicates
8446         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
8447
8448 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
8449
8450         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
8451
8452 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
8453
8454         * gnus.el: Bump version to 0.11.
8455
8456 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
8457
8458         * gnus.el: No Gnus v0.10 is released.
8459
8460 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8461
8462         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
8463         hooks.
8464         (gnus-update-read-articles): Speed up non-marks-using users.
8465         (gnus-use-marks): Define gnus-use-marks.
8466         (gnus-propagate-marks): Rename variable to something more sensible.
8467
8468 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
8469
8470         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
8471         (gmm-image-load-path-for-library): Fix typos in docstrings.
8472         (gmm-message): Reflow docstring.
8473
8474 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
8475
8476         * mail-source.el (mail-source-set-1, mail-source-bind):
8477         Move auth-source code out of the macro to clean it up and fix bugs.
8478
8479 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
8480
8481         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
8482         by sender if it's equal to user-mail-address, it's likely to be
8483         useless.
8484
8485         * mail-source.el (mail-source-bind): Don't use user or password if they
8486         are not bound.  Unintern them if they are nil.  Don't use server unless
8487         it's bound, and default it to empty string otherwise.
8488
8489 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
8490
8491         * mail-source.el: Load auth-source.el.
8492         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
8493         get user name or password, if auth-sources is set up.
8494
8495         * gnus-registry.el (gnus-registry-split-strategy): New variable for
8496         strategy of splitting with parent.
8497         (gnus-registry-split-fancy-with-parent)
8498         (gnus-registry-post-process-groups): Use it and fix prior
8499         bug (returning a list as the split result).
8500
8501         * auth-source.el (auth-sources): Remove server parameter.
8502         (auth-source-pick, auth-source-user-or-password)
8503         (auth-source-user-or-password-imap)
8504         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
8505         (auth-source-user-or-password-sftp)
8506         (auth-source-user-or-password-smtp): Remove server parameter.
8507
8508 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
8509
8510         * smime.el (smime-sign-region, smime-encrypt-region)
8511         (smime-decrypt-region):
8512         Remove redundant calls to `generate-new-buffer-name'.
8513
8514 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
8515
8516         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
8517         Don't use QP for message/rfc822.
8518         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
8519
8520 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8521
8522         * sieve-manage.el (sieve-string-bytes): Remove.
8523         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
8524         correct byte-length only if the process's coding-system is the same as
8525         the one used internally by Emacs to represent strings.
8526
8527 2008-04-22  Juri Linkov  <juri@jurta.org>
8528
8529         * mailcap.el (mailcap-file-default-commands): New function.
8530
8531 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
8532
8533         * message.el (message-signature-separator, message-cite-function):
8534         Change custom version.
8535
8536 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
8537
8538         * tls.el (tls-program): Add -ign_eof argument to call the openssl
8539         commands.
8540         (tls-checktrust): Ditto.
8541
8542 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
8543
8544         * mm-decode.el (mm-display-external): Make temp file read-only.
8545
8546 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8547
8548         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
8549         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
8550         `C-c C-f d'.
8551
8552 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
8553
8554         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
8555
8556 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8557
8558         * gnus.el: Bump version to 0.9.
8559
8560 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
8561
8562         * gnus.el: No Gnus v0.8 is released.
8563
8564 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8565
8566         * mail-source.el (mail-source-value):
8567         Prefer fboundp to functionp so it works with macros as well.
8568
8569 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8570
8571         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
8572         Fix last change in case the element is not even a symbol.
8573
8574 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8575
8576         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
8577         Prefer fboundp to functionp so it works with macros as well.
8578
8579 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
8580
8581         * auth-source.el: Add docs.
8582         (auth-sources): Modify format to support server.
8583         (auth-source-pick, auth-source-user-or-password)
8584         (auth-source-user-or-password-imap)
8585         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
8586         (auth-source-user-or-password-sftp)
8587         (auth-source-user-or-password-smtp): Add server parameter.
8588
8589 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
8590
8591         * gnus-registry.el: Initialize the registry when gnus-registry-install
8592         is t.
8593
8594 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8595
8596         * compface.el (uncompface): Make buffer unibyte.
8597
8598 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8599
8600         * mail-source.el (mail-source-value):
8601         Prefer fboundp to functionp so it works with macros as well.
8602
8603 2008-04-05  Glenn Morris  <rgm@gnu.org>
8604
8605         * gnus-ems.el (mm-disable-multibyte): Autoload it.
8606
8607 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8608
8609         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
8610         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
8611
8612         * nnheader.el (nnheader-init-server-buffer): Change buffer's
8613         multibyteness after rather than before erasing it.
8614
8615         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
8616         mm-with-multibyte.
8617         (gnus-request-article-this-buffer): Make sure the proper decoding is
8618         used if gnus-original-article-buffer happens to be unibyte.
8619
8620         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
8621         default-enable-multibyte-characters.
8622
8623         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
8624         default-enable-multibyte-characters.
8625
8626         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
8627
8628         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
8629
8630 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8631
8632         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
8633         Fix last change in case the element is not even a symbol.
8634
8635 2008-04-02  Simon Josefsson  <simon@josefsson.org>
8636
8637         * imap.el (imap-enable-exchange-bug-workaround): New variable.
8638         (imap-message-copyuid-1): Use it.
8639         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
8640         J. Williams in
8641         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
8642
8643         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
8644         imap-enable-exchange-bug-workaround.
8645         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
8646
8647 2008-04-01  Simon Josefsson  <simon@josefsson.org>
8648
8649         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
8650         a 100 byte status-checks into a 2-3MB transfer for each group.
8651         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
8652         to enable bug workaround or not.
8653         (nnimap-find-minmax-uid): Only enable workaround conditionally.
8654
8655 2008-03-31  Glenn Morris  <rgm@gnu.org>
8656
8657         * message.el (mml2015-use): Declare for compiler.
8658         (message-info): Require mml2015 when appropriate.
8659
8660 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8661
8662         * Makefile.in (EMACS_COMP): Quote directory name that might contain
8663         whitespace.
8664
8665 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8666
8667         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
8668         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
8669         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
8670         (nntp-service-to-port): New function.
8671         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
8672         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
8673         (nntp-open-netcat-stream): New function.
8674         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
8675
8676 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
8677
8678         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
8679
8680 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8681
8682         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
8683
8684 2008-03-28  Magnus Henoch  <mange@freemail.hu>
8685
8686         * dns.el (dns-write): Use set-buffer-multibyte.
8687
8688 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
8689
8690         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
8691
8692 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
8693
8694         * message.el (message-signature-separator): Change default.
8695         Improve custom type.
8696         (message-cite-function): Change default to
8697         message-cite-original-without-signature.
8698
8699         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
8700         toggle.
8701
8702         * message.el (message-check-news-body-syntax): Fix signature check.
8703         (message-setup-1): Mark buffer as unmodified _after_ running
8704         message-setup-hook and handling message-alternative-emails.
8705         (message-shorten-references): Be more strict when building list of
8706         valid references to comply with GNKSA.
8707
8708         * gnus-group.el (gnus-read-ephemeral-bug-group)
8709         (gnus-read-ephemeral-debian-bug-group)
8710         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
8711
8712         * message.el (message-info): Don't use booleanp which isn't supported
8713         in Emacs 21 and XEmacs.
8714
8715 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
8716
8717         * gnus-group.el (gnus-gmane-group-download-format): Rename from
8718         gnus-group-gmane-group-download-format.
8719         (gnus-group-read-ephemeral-gmane-group): Rename from
8720         gnus-group-read-ephemeral-gmane-group.
8721         (gnus-read-ephemeral-gmane-group-url): Rename from
8722         gnus-group-read-ephemeral-gmane-group-url.
8723         (gnus-bug-group-download-format-alist): New variable.
8724         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
8725         (gnus-read-ephemeral-emacs-bug-group): New commands.
8726
8727 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8728
8729         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
8730         (gnus-visible-headers): Improve custom type.
8731
8732 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8733
8734         * mml.el (mml-menu): Add workarounds for XEmacs.
8735
8736         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
8737         X-Boundary header.
8738
8739         * message.el (message-simplify-recipients): Fix previous commit.
8740
8741 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8742
8743         * mm-util.el (mm-set-buffer-multibyte): New function.
8744         * mm-decode.el (mm-copy-to-buffer): Use it.
8745
8746         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
8747         Prefer fboundp to functionp so it works with macros as well.
8748
8749 2008-03-19  Glenn Morris  <rgm@gnu.org>
8750
8751         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
8752         Accidentally removed in the sync process with Emacs.
8753
8754 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
8755
8756         * message.el (message-alter-recipients-discard-bogus-full-name):
8757         New function.
8758         (message-alter-recipients-function): New variable.
8759         (message-get-reply-headers): Use it.
8760         (message-replace-header): New helper function.
8761         (message-recipients-without-full-name): New variable.
8762         (message-simplify-recipients): New command.
8763
8764         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
8765
8766         * message.el (message-info): Handle EasyPG manual.
8767
8768         * mml.el (mml-menu): Add entry for EasyPG.
8769
8770 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
8771
8772         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
8773         parameter.
8774
8775         * message.el (message-disassociate-draft): Specify drafts group name
8776         fully.
8777
8778 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
8779
8780         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8781         Eliminate unnecessary duplicates from the match list.
8782
8783 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8784
8785         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
8786
8787         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
8788
8789         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
8790         args of `how-many' of which the XEmacs version doesn't take; declare
8791         Info-index-next as function.
8792
8793 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8794
8795         * gnus-score.el (gnus-score-headers): Fix handling of
8796         gnus-inhibit-slow-scoring.
8797
8798         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
8799         string.
8800         (gnus-button-url-regexp): Improve handling of parenthesis.
8801         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
8802         (gnus-button-handle-info-keystrokes): Handle index entries.
8803
8804 2008-03-15  Glenn Morris  <rgm@gnu.org>
8805
8806         * parse-time.el (parse-time-string): Simplify.
8807
8808 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8809
8810         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
8811         Incoming* files.
8812
8813 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
8814
8815         * auth-source.el (auth-sources): Rename from auth-source-choices.
8816         (auth-source-pick): Use it.
8817
8818 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8819
8820         * binhex.el (binhex-decode-region-internal):
8821         * uudecode.el (uudecode-decode-region-internal):
8822         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
8823         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
8824         setting default-enable-multibyte-characters.
8825
8826 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
8827
8828         * auth-source.el (auth-source-protocols)
8829         (auth-source-protocols-customize, auth-source-choices): Add and
8830         modified variable customizations and defaults.
8831         (auth-source-pick, auth-source-user-or-password)
8832         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
8833         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
8834         (auth-source-user-or-password-sftp)
8835         (auth-source-user-or-password-smtp): Use new variables and provide an
8836         interface to netrc.el.
8837
8838 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8839
8840         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
8841         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
8842         Make sure the nntp port to specify is a string.
8843
8844 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8845
8846         * nntp.el: Use with-current-buffer.
8847         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
8848         dubious mm-with-unibyte-current-buffer.
8849         (nntp-with-open-group-function): New function extracted from
8850         nntp-with-open-group macro.
8851         (nntp-with-open-group): Use the function, so it's easier to debug.
8852         Add indentation and debugging info.
8853         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
8854         Recommend the use of the netcat alternatives.
8855
8856         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
8857         Avoid mm-string-as-multibyte as well.
8858
8859         * nnweb.el (nnweb-insert-html):
8860         Remove use of nnheader-string-as-multibyte.
8861
8862         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
8863         (nnheader-string-as-multibyte): Remove.
8864
8865         * mm-view.el: Use inhibit-read-only.
8866         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
8867         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
8868         or unibyte-string.
8869
8870         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
8871         (mm-uu-yenc-extract): Use with-current-buffer.
8872
8873         * gnus-soup.el (gnus-soup-send-packet): Don't use
8874         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
8875
8876         * nnmh.el: Use with-current-buffer.
8877         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
8878         mm-string-as-multibyte on the output of mm-encode-coding-string.
8879
8880         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
8881         (nnimap-request-move-article): Use with-current-buffer.
8882
8883         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
8884         inserting the handle-buffer's text, so the implicit multibyte->unibyte
8885         conversion uses string-make-unibyte rather than string-as-unibyte.
8886
8887         * gnus-msg.el: Use with-current-buffer.
8888
8889         * message.el (message-ignored-resent-headers): Add "Delivered-To".
8890
8891 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
8892
8893         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
8894         string for caching if it is 'PIN.
8895
8896 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8897
8898         * lpath.el: Consider the case without Emacs/W3.
8899
8900 2008-03-08  Glenn Morris  <rgm@gnu.org>
8901
8902         * time-date.el (date-to-time, time-subtract, time-add)
8903         (safe-date-to-time): Doc fixes.
8904
8905 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8906
8907         * mail-source.el (mail-source-delete-old-incoming-confirm):
8908         Change default to nil.
8909         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
8910
8911 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8912
8913         * lpath.el: Rearrange.
8914
8915         * gnus-art.el (gnus-narrow-to-page): Position point properly.
8916         (gnus-article-goto-prev-page): Work for articles having ^L's.
8917
8918         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
8919
8920         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
8921
8922 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
8923
8924         * gnus-bookmark.el: Adjust for renames in bookmark.el.
8925         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
8926         (gnus-bookmark-jump): Adjust some variable names.
8927
8928 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
8929
8930         * auth-source.el: New package.
8931         (auth-source-choices): Add customization entry point variable.
8932
8933         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
8934         bug.
8935
8936 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
8937
8938         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
8939         (gnus-registry-initialize, gnus-registry-install-p): Use it.
8940         (gnus-registry-install-shortcuts): Rename from
8941         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
8942         the `gnus-registry-mark-map' keymap dynamically from
8943         `gnus-registry-marks'.  The generated functions update the summary line
8944         when a registry mark is added or deleted, and will call
8945         `gnus-registry-install-p' (see the comments in the code).
8946         (gnus-registry-user-format-function-M): Use concat intelligently.
8947
8948         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
8949         the registry mark functions.
8950
8951 2008-03-05  Glenn Morris  <rgm@gnu.org>
8952
8953         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
8954         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
8955         gnus-art.
8956         (top-level): No need to load own source when compiling.
8957
8958 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
8959
8960         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
8961         Suggested by <chris.anderton@zetnet.co.uk>.
8962
8963 2008-03-04  Glenn Morris  <rgm@gnu.org>
8964
8965         * gnus-sum.el (top-level): No need to require gnus when compiling,
8966         since unconditionally required near start of file.
8967         (gnus-summary-display-while-building): Move definition before use.
8968
8969 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
8970
8971         * gnus-registry.el (gnus-registry-user-format-function-M):
8972         Add formatting function.
8973
8974 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
8975
8976         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
8977         with plists.
8978         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
8979         Use new format.
8980
8981 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8982
8983         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
8984         `where-is-internal' that returns a range of key sequences.
8985
8986 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8987
8988         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
8989
8990         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
8991         (gnus-summary-jump-to-group): Consider windows on other displayed
8992         frames as well.  Similar changes might be needed elsewhere, but that's
8993         the one I've bumped into during my use.
8994
8995         * nndoc.el (nndoc-oe-dbx-type-p):
8996         * gnus-msg.el (gnus-debug):
8997         * gnus-group.el (gnus-update-group-mark-positions):
8998         Use mm-string-to-multibyte.
8999
9000 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
9001
9002         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
9003         doesn't handle NotDashEscaped.
9004
9005         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
9006         (mml-dnd-attach-options): Fix typo in custom choice.
9007
9008         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
9009         Change nndoc-article-type to mbox.
9010         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
9011
9012         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
9013         to nil, instead of html2text.
9014
9015         * imap.el (imap-debug): Add `imap-ping-server'.
9016
9017         * gnus-bookmark.el: Add FIXMEs.
9018
9019         * message.el (message-form-letter-separator)
9020         (message-send-form-letter-delay): New variables.
9021         (message-send-form-letter): Use them.  New command to send form
9022         letters.  Requested by Uwe Siart.
9023         (message-send-mail-function): Doc fix.  Add "Other" custom option.
9024
9025 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
9026
9027         * Update copyright years.
9028
9029 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
9030
9031         Sync from EMACS_22_BASE.
9032
9033         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
9034
9035 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
9036
9037         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
9038         empty author.
9039
9040 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
9041
9042         * gnus-registry.el (gnus-registry-marks): Add variable for
9043         customization of marks and their appearance.
9044         (gnus-registry-read-mark): Use it.
9045         (gnus-registry-do-marks): Add utility function to loop through
9046         `gnus-registry-marks'.
9047         (gnus-registry-install-shortcuts-and-menus): Add function to install
9048         shortcuts and menus.
9049         (gnus-registry-initialize): Use it.
9050         (gnus-registry-default-mark): Clarify documentation.
9051
9052 2008-02-29  Glenn Morris  <rgm@gnu.org>
9053
9054         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
9055         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
9056         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
9057         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
9058         Change defcustom :version from 23.0 to 23.1.
9059
9060 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
9061
9062         * gnus-registry.el (gnus-registry-follow-group-p)
9063         (gnus-registry-post-process-groups): Add functions to aid registry
9064         splitting and improve logging.  Clarify behavior in function
9065         documentation.
9066         (gnus-registry-split-fancy-with-parent): Use them.
9067
9068 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9069
9070         * gnus-art.el: Use with-current-buffer.
9071
9072 2008-02-27  David Engster  <dengste@eml.cc>
9073
9074         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
9075         Express real group name in the response.
9076
9077 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9078
9079         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
9080         (nnmairix-last-server, nnmairix-current-server): Defvar them.
9081         (nnmairix-goto-original-article): Defvar gnus-registry-install and
9082         autoload gnus-registry-fetch-group when compiling.
9083         (nnmairix-request-group-with-article-number-correction):
9084         Remove unreferenced argument passed to nnmairix-call-backend.
9085
9086 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
9087
9088         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
9089         (mm-uu-extract): Improve face for low color ttys.
9090         Reported by Sascha Wilde.
9091
9092 2008-02-27  Glenn Morris  <rgm@gnu.org>
9093
9094         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
9095         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
9096         variables to defconsts.  Convert comments to doc-strings.
9097         (nnmairix-last-server, nnmairix-current-server): Convert from free
9098         variables to defvars.  Convert comments to doc-strings.
9099         (gnus-registry-fetch-group): Autoload.
9100         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
9101         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
9102         (nnmairix-widget-build-editable-fields): Use car cddr rather than
9103         caddr.
9104         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
9105         nnmairix-request-group-with-article-number-correction call.
9106         (nnmairix-fast, nnmairix-group): New, less general names, for free
9107         variables passed from nnmairix-request-group to
9108         nnmairix-request-group-with-article-number-correction.  Declare.
9109         (nnmairix-request-group-with-article-number-correction):
9110         Use nnmairix-fast, nnmairix-group rather than fast, group.
9111
9112 2008-02-26  David Engster  <dengste@eml.cc>
9113
9114         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
9115         version 0.5.
9116
9117 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
9118
9119         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
9120         instead of making an extra function call.  Don't add the current group
9121         to articles only when they have the group.  Use
9122         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
9123         Reported by David <de_bb@arcor.de>.
9124
9125 2008-02-24  Miles Bader  <miles@gnu.org>
9126
9127         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
9128         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
9129         (mm-find-mime-charset-region):
9130         * mm-bodies.el (mm-encode-body):
9131         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
9132
9133 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9134
9135         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
9136         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
9137
9138 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
9139
9140         * mail-source.el (mail-source-delete-incoming): Change default.
9141         Supplement doc string.
9142
9143         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
9144
9145 2008-02-14  Glenn Morris  <rgm@gnu.org>
9146
9147         * time-date.el (format-seconds): New function.
9148
9149 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
9150
9151         * nnmail.el (nnmail-message-id-cache-file): Derive from
9152         `gnus-home-directory'.
9153
9154 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
9155
9156         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
9157         Document negative prefix.
9158
9159         * gnus-group.el (gnus-group-read-group): Document negative prefix.
9160
9161 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9162
9163         * message.el (message-unsent-separator): Add the Exim bounce
9164         separator.
9165
9166 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
9167
9168         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
9169         list.
9170         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
9171         recipient/signer list.
9172
9173 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9174
9175         * Makefile.in (datarootdir): Define.
9176         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
9177         name that might contain whitespace.
9178
9179 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
9180
9181         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
9182         fbound (Emacs 23 unicode), signal an error.
9183
9184 2008-02-08  Glenn Morris  <rgm@gnu.org>
9185
9186         * gnus-art.el (pgg-display-output-buffer): Declare as function.
9187
9188 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
9189
9190         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
9191         ports to the calls to `netrc-machine-user-or-password' in addition to
9192         "imap" and "imaps".
9193
9194 2008-02-01  Zhang Wei  <id.brep@gmail.com>
9195
9196         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
9197
9198         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
9199
9200 2008-02-01  Kenichi Handa  <handa@m17n.org>
9201
9202         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
9203         rfc2104-hexstring-to-bitstring and changed to return a byte list.
9204         (rfc2104-hash): Convert the result of concat to unibyte string.
9205
9206 2008-02-01  Dave Love  <fx@gnu.org>
9207
9208         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
9209         coding-system-for-read.
9210         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
9211
9212 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
9213
9214         * gnus.el (gnus-group-startup-message): Add `find-image' call before
9215         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
9216         <hanche@math.ntnu.no>.
9217
9218 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9219
9220         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
9221
9222         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
9223
9224 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
9225
9226         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
9227         * message.el (message-beginning-of-line): Use featurep instead of bound
9228         tests in order to resolve conditionals at compile time.
9229
9230 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
9231
9232         * mail-source.el (mail-sources): Add `group' choice.
9233
9234         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
9235         parameter `in-group' to control into which group the articles go.
9236         Add treatment of `group' mail-source.
9237
9238 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9239
9240         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
9241
9242         * mm-decode.el (mm-dissect-buffer): Decode description.
9243
9244         * mml.el (mml-to-mime): Encode message header first.
9245
9246 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9247
9248         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
9249         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
9250
9251         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
9252         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
9253
9254 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
9255
9256         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
9257
9258 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9259
9260         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
9261         prefix keys.
9262         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
9263         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
9264         gnus-xmas.el.
9265
9266         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
9267         (gnus-xmas-article-describe-bindings): New function.
9268         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
9269         gnus-xmas-article-describe-bindings.
9270
9271         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
9272
9273 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
9274
9275         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
9276         Add new variables for article mark management.
9277         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
9278         list of extra data entries which, when present, will indicate that the
9279         article ID should not be trimmed from the registry.
9280         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
9281         functions.
9282         (gnus-registry-read-mark): New function to read a mark name from the
9283         user.
9284         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
9285         (gnus-registry-set-article-mark-internal): New functions to add and
9286         remove marks.
9287         (gnus-registry-get-article-marks): New function to show the marks for
9288         an article, or retrieve them for further use.
9289
9290 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9291
9292         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
9293         keys when no argument is given.
9294
9295 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
9296
9297         * imap.el (imap-ping-server): New variable.
9298         (imap-opened): On add extra ping if imap-ping-server is non-nil.
9299         (imap-ping-server): Minor doc string fixes.
9300
9301 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
9302
9303         * imap.el (imap-ping-server): New function.
9304         (imap-opened): Call imap-ping-server.
9305
9306 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9307
9308         * gnus-sum.el (gnus-article-sort-by-random)
9309         (gnus-thread-sort-by-random): Fix doc strings.
9310         Reported by jidanni@jidanni.org.
9311
9312 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9313
9314         * gnus-art.el (gnus-article-describe-bindings): New function.
9315         (gnus-article-read-summary-keys): Use it.
9316         (gnus-article-mode-map): Bind `C-h b' to it.
9317
9318 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9319
9320         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
9321         XEmacs.
9322         (gnus-article-describe-key, gnus-article-describe-key-briefly):
9323         Protect against non-character events.
9324
9325         * lpath.el: Fbind map-keymap for Emacs 21.
9326
9327 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
9328
9329         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
9330         New command.
9331         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
9332         instead of END.  Change name of the temp file.
9333         (gnus-group-gmane-group-download-format): Add doc string.  Make it
9334         customizable.
9335
9336 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9337
9338         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
9339         bind `S W' to gnus-article-wide-reply-with-original; set default
9340         binding to gnus-article-read-summary-send-keys.
9341         (gnus-article-read-summary-keys): Fix the order of keys; display
9342         continuation keys correctly in the echo area; describe bindings
9343         correctly when keys end with `C-h'.
9344         (gnus-article-read-summary-send-keys): New function.
9345         (gnus-article-describe-key, gnus-article-describe-key-briefly):
9346         Work for gnus-article-read-summary-send-keys; display continuation keys
9347         correctly in the echo area.
9348         (gnus-article-reply-with-original): Ignore prefix argument.
9349         (gnus-article-wide-reply-with-original): New function.
9350
9351         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
9352         Emacs 21.
9353
9354 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9355
9356         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
9357         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
9358
9359 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
9360
9361         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
9362         (gnus-group-read-ephemeral-gmane-group): New command.
9363
9364 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
9365
9366         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
9367
9368 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
9369
9370         * message.el (message-send-mail-function): Increase custom version.
9371
9372         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
9373         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
9374
9375 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
9376
9377         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
9378         for the cases where imap-authenticate is called with a nil buffer
9379         parameter.
9380
9381 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9382
9383         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
9384         html parts correctly; support forwarded messages.
9385         (gnus-article-browse-html-article): Remove work buffers.
9386
9387         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
9388         compiling.
9389         (netrc-bound-and-true-p): New macro.
9390         (netrc-parse): Use it instead of bound-and-true-p that is not available
9391         in XEmacs 21.4.
9392
9393 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
9394
9395         * gnus-registry.el (gnus-registry-mark-article)
9396         (gnus-registry-article-marks): Add functionality to mark articles
9397         through the Gnus registry.
9398
9399         * encrypt.el: Clarify documentation for the new pgg method.
9400         (encrypt-file-alist): Add PGG option.
9401         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
9402         functionality.  Abstract password key and messaging to external
9403         functions.
9404         (encrypt-password-key, encrypt-get-passphrase-if-needed)
9405         (encrypt-message-method-and-cipher): Add new convenience external
9406         functions.
9407         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
9408         (encrypt-pgg-process-buffer): Add PGG functionality glue.
9409
9410         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
9411         (netrc-parse): Use encrypt-file-alist to determine if
9412         encrypt-find-model or encrypt-insert-file-contents should be used.
9413
9414         * encrypt.el: Clarify documentation.  Load password-cache or
9415         password, whichever one is found first, instead of autoloading.
9416
9417 2007-12-19  Glenn Morris  <rgm@gnu.org>
9418
9419         * mml.el (message-options-set, message-narrow-to-head)
9420         (message-in-body-p, message-mail-p, message-encode-message-body):
9421         Autoload.
9422         (message-remove-header, message-narrow-to-headers-or-head)
9423         (message-subscribed-p, message-make-mail-followup-to)
9424         (message-position-on-field, message-news-p)
9425         (message-options-set-recipient, message-generate-headers)
9426         (message-sort-headers): Declare as functions.
9427
9428 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9429
9430         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
9431         convention in doc string.
9432
9433 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9434
9435         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
9436         title to html parts.
9437         (gnus-article-browse-html-article): Pass message header to it.
9438
9439         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
9440
9441 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
9442
9443         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
9444         or password compatible with XEmacs.
9445
9446 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9447
9448         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
9449         format document.
9450         (gnus-mime-delete-part): Don't write description line if empty.
9451         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
9452
9453 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
9454
9455         * gnus-sum.el (gnus-summary-mark-unread-as-read)
9456         (gnus-summary-mark-read-and-unread-as-read)
9457         (gnus-summary-mark-current-read-and-unread-as-read)
9458         (gnus-summary-mark-unread-as-ticked): Doc fix.
9459         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
9460
9461 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
9462
9463         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
9464         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
9465
9466 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
9467
9468         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
9469         yes-or-no-p.
9470
9471 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9472
9473         * mm-decode.el (mm-add-meta-html-tag): New function.
9474         (mm-save-part-to-file, mm-pipe-part): Use it.
9475
9476         * gnus-art.el (gnus-article-browse-delete-temp-files):
9477         Use gnus-y-or-n-p instead of y-or-n-p.
9478         (gnus-article-browse-html-parts): Work with message/external-body; use
9479         mm-add-meta-html-tag.
9480
9481 2007-12-11  Glenn Morris  <rgm@gnu.org>
9482
9483         * gnus-cache.el: Require gnus-sum not just when compiling.
9484
9485         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
9486
9487         * gnus-int.el (gnus-server-opened, gnus-status-message):
9488         Move definitions before use.
9489
9490         * mm-decode.el: Require gnus-util.
9491         (mm-remove-part): Only call delete-annotation on XEmacs.
9492
9493         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
9494
9495         * nnmail.el: Require gnus-int.
9496
9497         * spam.el: Move `require's before `eval-when-compile's.
9498
9499         * gnus-ems.el (gnus-alive-p):
9500         * gnus-fun.el (message-goto-eoh):
9501         * gnus-util.el (gnus-group-name-decode):
9502         * mail-source.el (gnus-compress-sequence):
9503         * message.el (Info-goto-node, format-spec):
9504         * mm-bodies.el (message-options-get):
9505         * mm-decode.el (mm-view-pkcs7):
9506         * mm-util.el (gmm-write-region):
9507         * mml-smime.el (mml-compute-boundary)
9508         (gnus-completing-read-with-default):
9509         * mml.el (widget-button-press, gnus-make-hashtable):
9510         * mml1991.el (mm-decode-content-transfer-encoding)
9511         (mm-encode-content-transfer-encoding)
9512         (message-options-get, message-options-set):
9513         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
9514         * nnfolder.el (gnus-request-group):
9515         * nnheader.el (ietf-drums-unfold-fws):
9516         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
9517         * smime.el (gnus-run-mode-hooks):
9518         * spam-stat.el (gnus-message): Autoload.
9519
9520         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
9521         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
9522         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
9523         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
9524         Add declare-function compatibility definition.
9525
9526         * gnus-cache.el (nnvirtual-find-group-art):
9527         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
9528         (gnus-add-image, gnus-add-wash-type):
9529         * gnus-group.el (nnkiboze-score-file):
9530         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
9531         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
9532         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
9533         (message-tokenize-header, gnus-get-buffer-create)
9534         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
9535         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
9536         * gnus.el (gnus-group-decoded-name):
9537         * mail-source.el (imap-capability):
9538         * mm-bodies.el (message-options-set):
9539         * mm-decode.el (gnus-configure-windows):
9540         * mm-extern.el (message-goto-body):
9541         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
9542         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
9543         (epg-sub-key-validity, message-options-set):
9544         * mml.el (widget-event-point, gnus-configure-windows):
9545         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
9546         * mml2015.el (epg-check-configuration, epg-configuration)
9547         (message-options-set):
9548         * nndb.el (nndb-request-article):
9549         * nnfolder.el (gnus-request-create-group):
9550         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
9551         * nnmaildir.el (gnus-group-mark-article-read):
9552         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
9553         * rfc1843.el (message-fetch-field):
9554         * spam.el (gnus-extract-address-components):
9555         Declare as functions.
9556
9557 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9558
9559         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
9560
9561         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
9562
9563         * lpath.el: Fbind run-mode-hooks for Emacs 21;
9564         bind show-trailing-whitespace for XEmacs.
9565
9566 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9567
9568         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
9569         new no-op macro for backward compatibility.
9570
9571         * imap.el (imap-string-to-integer): New function.
9572
9573 2007-12-09  Glenn Morris  <rgm@gnu.org>
9574
9575         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
9576
9577         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
9578         * message.el, mm-view.el, sieve-manage.el, smime.el:
9579         Add declare-function compatibility definition.
9580
9581         * gnus-art.el (w3-region, w3m-region, Info-menu):
9582         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
9583         * gnus-sum.el (gnus-get-predicate):
9584         * gnus-util.el (mm-append-to-file, w32-focus-frame):
9585         * message.el (mail-abbrev-in-expansion-header-p):
9586         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
9587         (w3m-detect-meta-charset, w3m-region):
9588         * sieve-manage.el (password-read, password-cache-add)
9589         (password-cache-remove):
9590         * smime.el (password-read-and-add): Declare as functions.
9591
9592 2007-12-08  David Kastrup  <dak@gnu.org>
9593
9594         * gnus-sum.el (gnus-summary-simplify-subject-query):
9595         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
9596         `message'.
9597
9598 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9599
9600         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
9601         it to bind idna-program, installation-directory, defined-colors, and
9602         face-attribute for XEmacs of the version that compiles defcustom forms.
9603
9604 2007-12-07  Glenn Morris  <rgm@gnu.org>
9605
9606         * gnus-art.el (article-make-date-line): Revert previous change.
9607
9608 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9609
9610         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
9611
9612 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
9613
9614         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
9615         Call gnus-add-to-range ranges only once with a prepared article-list.
9616
9617 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
9618
9619         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
9620         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
9621         group names with backslashes.
9622         Reported by Tassilo Horn <tassilo@member.fsf.org>.
9623
9624 2007-12-06  Deepak Goel  <deego3@gmail.com>
9625
9626         * gnus-art.el (article-make-date-line):
9627         * gnus-start.el (gnus-load):
9628         * pop3.el (pop3-read-response): Fix buggy call to `error'.
9629
9630 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9631
9632         * gnus-art.el (gnus-use-idna)
9633         * gnus-start.el (gnus-site-init-file)
9634         * message.el (message-use-idna)
9635         * mm-uu.el (mm-uu-hide-markers)
9636         * smiley.el (smiley-style): Revert changes that suppress warnings.
9637
9638 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9639
9640         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
9641         specify charset to html source.
9642         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
9643
9644 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9645
9646         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
9647         idna-program in order to suppress byte compile warning issued by XEmacs
9648         that came to byte compile the default value section of defcustom forms
9649         recently.
9650
9651         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
9652         value of installation-directory.
9653
9654         * message.el (message-use-idna): Don't directly refer to the value of
9655         idna-program.
9656
9657         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
9658
9659         * smiley.el (smiley-style): Don't directly call face-attribute.
9660
9661 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
9662
9663         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
9664
9665         * gnus-dired.el: Reduce Gnus dependencies.
9666         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
9667         Don't require.  Use autoloads instead.
9668         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
9669         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
9670         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
9671         (gnus-dired-mode): Adjust doc string.
9672         (gnus-dired-mail-mode): New variable.
9673         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
9674         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
9675         (gnus-dired-mail-buffers): New function.  Return mail or message
9676         composition buffers.
9677         (gnus-dired-attach): Use it.
9678         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
9679         NO-DECODE.
9680         (gnus-dired-print): Use `gnus-print-buffer' depending on
9681         `gnus-dired-mail-mode'.
9682
9683 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9684
9685         * rfc2047.el (rfc2047-encoded-word-regexp)
9686         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
9687         explaining what regexp patterns are for.
9688
9689 2007-12-04  Glenn Morris  <rgm@gnu.org>
9690
9691         * password.el: Move to password-cache.el.
9692
9693         * mml1991.el (password-read, password-cache-add, password-cache-remove):
9694         * mml2015.el (password-read, password-cache-add, password-cache-remove):
9695         * mml-smime.el (password-read, password-cache-add)
9696         (password-cache-remove):
9697         No need to autoload, since mml-sec requires password.
9698
9699         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
9700         * message.el (gnus-extract-address-components):
9701         * mml-smime.el (gnus-extract-address-components): Define for compiler.
9702
9703         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
9704         password.
9705
9706 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
9707
9708         * mailcap.el: Reduce dependencies.
9709         (mail-header-parse-content-type): Autoload.
9710         (mailcap-delete-duplicates): New alias.
9711         (mailcap-mime-info): Add optional argument NO-DECODE.
9712         (mailcap-mime-types): Use mailcap-delete-duplicates.
9713
9714         * message.el (message-ignored-supersedes-headers): Add "X-ID".
9715
9716 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
9717
9718         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
9719         (imap-parse-status): Upcase status-att for servers that sends them
9720         lower-case (e.g., MS Exchange 2007).
9721
9722 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9723
9724         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
9725         function.
9726
9727         * gnus-uu.el (gnus-uu-decode-yenc): New command.
9728         (gnus-uu-yenc-article): New function.
9729
9730         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
9731
9732         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
9733
9734 2007-12-02  Glenn Morris  <rgm@gnu.org>
9735
9736         * binhex.el (binhex): New custom group.
9737         (binhex-decoder-program, binhex-decoder-switches)
9738         (binhex-use-external): Move to the binhex custom group.
9739
9740         * uudecode.el (uudecode): New custom group.
9741         (uudecode-decoder-program, uudecode-decoder-switches)
9742         (uudecode-use-external): Move to the uudecode custom group.
9743
9744         * netrc.el (top-level): Don't load `encrypt' features.
9745         (netrc-parse): Don't use encrypt.
9746         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
9747
9748         * encrypt.el: Remove file.
9749
9750 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
9751
9752         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
9753         matches on patches.
9754
9755         * gnus-art.el (gnus-article-browse-html-article):
9756         Mention `mm-text-html-renderer' in the doc string.
9757
9758         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
9759         string.  Add comments.
9760
9761         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
9762         if rhs is ASCII.
9763
9764 2007-12-01  Glenn Morris  <rgm@gnu.org>
9765
9766         * mail-source.el (top-level): Require format-spec before
9767         eval-when-compile.
9768
9769 2007-11-30  Glenn Morris  <rgm@gnu.org>
9770
9771         * encrypt.el: Require password, rather than autoloading password-read.
9772
9773 2007-11-29  Glenn Morris  <rgm@gnu.org>
9774
9775         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
9776         (sasl-make-client, sasl-next-step, sasl-step-data)
9777         (sasl-step-set-data): Declare as functions.
9778
9779 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
9780
9781         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
9782
9783 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
9784
9785         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
9786         certs should be verified and what is to be done in the event of a
9787         verification failure.
9788
9789         * gnus.el (gnus-method-to-server): Add an optional parameter so the
9790         caller can indicate whether the cache should be disregarded for this
9791         call.  This way the result of the call is reproducible at all times and
9792         can be considered a canonical server name for the supplied method.
9793         (gnus-agent-method-p): Canonicalize server names by pushing their
9794         method through `gnus-method-to-server' using the no-cache argument.
9795
9796         * gnus-srvr.el (gnus-server-insert-server-line):
9797         Call `gnus-method-to-server' with `no-cache' argument.
9798
9799         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
9800         gnus-agent-possibly-synchronize-flags as this should be called when the
9801         server is actually being opened.
9802         (gnus-agent-possibly-synchronize-flags)
9803         (gnus-agent-possibly-synchronize-flags-server): Move check for the
9804         flags file of an agentized server to the latter function.
9805
9806         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
9807         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
9808         after a connection has been established successfully.
9809
9810 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9811
9812         * gnus-art.el (article-display-face): Force to display face if called
9813         interactively; check if gnus-article-x-face-too-ugly matches author.
9814         (article-display-x-face): Display face even if From header is missing
9815         as article-display-face does.
9816
9817 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
9818
9819         * hashcash.el (message-narrow-to-headers-or-head)
9820         (message-fetch-field, message-goto-eoh)
9821         (message-narrow-to-headers): Declare as functions.
9822
9823 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
9824
9825         * mail-source.el (mail-sources): Default to fetch from file for
9826         compatibility with default of nnmail-spool-file.
9827
9828 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9829
9830         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
9831         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
9832         to look for encoded word that should be encoded again.
9833         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
9834         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
9835         encoding pattern.
9836         (rfc2047-decode-region): Switch strict regexp and loose one according
9837         to rfc2047-allow-irregular-q-encoded-words.
9838
9839 2007-11-25  Romain Francoise  <romain@orebokech.com>
9840
9841         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
9842
9843 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
9844
9845         * tls.el (tls-program): Provide more custom choices from
9846         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
9847         (tls-process-connection-type, tls-success): Remove "*" in doc string.
9848
9849 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
9850
9851         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
9852         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
9853
9854         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
9855         `nnmail-spool-file'.
9856
9857         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
9858         `nnmail-spool-file'.
9859
9860         * gnus-move.el (gnus-change-server): Ditto.
9861
9862         * gnus-kill.el (gnus-batch-score): Ditto.
9863
9864         * gnus-cache.el (gnus-jog-cache): Ditto.
9865
9866         * gnus-msg.el (gnus-summary-reply):
9867         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
9868
9869 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
9870
9871         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
9872         version.  Minor improvement to doc strings.
9873         (tls-program): Add comment.
9874
9875 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
9876
9877         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
9878         (tls-checktrust): New variable.  Check if GNU TLS complained about a
9879         mismatch between the hostname provided in the certificate and the name
9880         of the host connnecting to.
9881         (open-tls-stream): Use them.  Check certificates against trusted root
9882         certificates.
9883
9884 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
9885
9886         * gnus-cache.el (gnus-cache-generate-nov-databases):
9887         Use nnml-generate-nov-databases-directory instead of
9888         nnml-generate-nov-databases-1.
9889
9890 2007-11-24  Glenn Morris  <rgm@gnu.org>
9891
9892         * message.el (message-tool-bar-retro): Update for rename
9893         mail_send.xpm->mail-send.xpm.
9894
9895 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
9896
9897         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
9898         `smime-ldap-search' for Emacs 22 and up.
9899
9900 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9901
9902         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
9903
9904         * message.el (message-send-mail-function): Fix error convention.
9905         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
9906         (message-widen-reply, message-send-mail, message-talkative-question)
9907         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
9908         (message-clone-locals, message-send-news): Use with-current-buffer.
9909         (message-insert-or-toggle-importance): Remove unused var `valid'.
9910         (message-make-references): Remove unused var `new-references'.
9911         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
9912
9913 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
9914
9915         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
9916         (spam-split-symbolic-return-positive): Reflow docstring.
9917         (spam-backends, spam-summary-exit-behavior)
9918         (spam-mark-ham-unread-before-move-from-spam-group)
9919         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
9920         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
9921         (spam-clear-cache, spam-backend-check, spam-install-backend)
9922         (spam-install-statistical-backend, spam-list-of-processors)
9923         (spam-group-processor-p, spam-split, spam-bogofilter-score)
9924         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
9925         (spam-check-crm114, spam-initialize, spam-unload-hook):
9926         Fix typos in docstrings.
9927
9928 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9929
9930         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
9931         been checked if they have never been read and those group levels are
9932         higher than the one that a user specified.
9933
9934 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9935
9936         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
9937         foreign groups unless a group level is specified by a user.
9938         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
9939
9940 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
9941
9942         * message.el (message-send-mail-function): Require sendmail.
9943
9944 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
9945
9946         * message.el (message-send-mail-function): Check for smtpmail too.
9947
9948         * utf7.el (utf7-encode, utf7-decode): Use coding system
9949         `utf-7'/`utf-7-imap' from utf-7.el' if available.
9950
9951         * message.el (message-send-mail-function): New function.
9952         (message-send-mail-function): Set default using
9953         message-send-mail-function.  Adjust doc string.
9954         (message-send-mail-with-mailclient): New function.
9955
9956 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
9957
9958         * smime.el (from):
9959         * rfc2047.el (message-posting-charset):
9960         * qp.el (mm-use-ultra-safe-encoding):
9961         * pop3.el (parse-time-months):
9962         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
9963         * nnml.el (files):
9964         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
9965         (jka-compr-compression-info-list, ange-ftp-path-format)
9966         (efs-path-regexp):
9967         * nndiary.el (files):
9968         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
9969         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
9970         (epg-digest-algorithm-alist, inhibit-redisplay)
9971         (password-cache-expiry):
9972         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
9973         (pgg-output-buffer, password-cache-expiry):
9974         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
9975         (efs-path-regexp):
9976         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
9977         (inhibit-redisplay):
9978         * mm-uu.el (file-name, start-point, end-point, entry)
9979         (gnus-newsgroup-name, gnus-newsgroup-charset):
9980         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
9981         (latin-unity-ucs-list):
9982         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
9983         (mm-uu-binhex-decode-function):
9984         * message.el (gnus-message-group-art, gnus-list-identifiers)
9985         (rmail-enable-mime-composing, gnus-local-organization)
9986         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
9987         (gnus-read-active-file, facemenu-add-face-function)
9988         (facemenu-remove-face-function, gnus-article-decoded-p)
9989         (tool-bar-mode):
9990         * mail-source.el (display-time-mail-function):
9991         * gnus-util.el (nnmail-pathname-coding-system)
9992         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
9993         (gnus-original-article-buffer, gnus-user-agent)
9994         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
9995         (xemacs-codename, sxemacs-codename, emacs-program-version):
9996         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
9997         * gnus-start.el (gnus-agent-covered-methods)
9998         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
9999         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
10000         (gnus-newsgroup-headers, gnus-group-list-mode)
10001         (gnus-group-mark-positions, gnus-newsgroup-data)
10002         (gnus-newsgroup-unreads, nnoo-state-alist)
10003         (gnus-current-select-method, mail-sources)
10004         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
10005         (nnmail-spool-file, gnus-cache-active-hashtb):
10006         * gnus-mh.el (mh-lib-progs):
10007         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
10008         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
10009         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
10010         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
10011         (gnus-group-buffer):
10012         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
10013         (font-lock-set-defaults):
10014         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
10015         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
10016         (gnus-summary-post-menu, total-parts, type, condition, length):
10017         * gnus-agent.el (gnus-agent-read-agentview):
10018         * flow-fill.el (show-trailing-whitespace):
10019         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
10020         eval-and-compile wrappers for byte compiler pacifiers.
10021
10022         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
10023         (mm-display-inline-fontify): Check for featurep 'xemacs not
10024         extent-list.
10025
10026         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
10027         itimer-list.
10028         (mm-create-image-xemacs): Only do something for XEmacs.
10029         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
10030
10031         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
10032
10033         * gnus-registry.el (gnus-adaptive-word-syntax-table):
10034         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
10035
10036 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
10037
10038         * nnimap.el (nnimap-split-download-body):
10039         * gnus-demon.el (gnus-demon):
10040         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
10041
10042 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10043
10044         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
10045         New macros.
10046         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
10047         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
10048         copy data from unibyte buffer to multibyte current buffer.
10049         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
10050         to copy data from unibyte current buffer to multibyte buffer.
10051         (nntp-make-process-buffer): Make process buffer unibyte.
10052
10053         * pop3.el (pop3-open-server): Fix typo in Lisp code.
10054
10055 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
10056
10057         * pop3.el (pop3-open-server): Accept and process data more robustly at
10058         connexion start to avoid spurious "POP SSL connexion failed" errors.
10059
10060 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10061
10062         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
10063         read group names.
10064
10065 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
10066
10067         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
10068
10069 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10070
10071         * nnmail.el (nnmail-parse-active): Make group names unibyte.
10072         (nnmail-save-active): Use a unibyte buffer when saving active file,
10073         which may contain non-ASCII group names.
10074
10075         * nnml.el (nnml-request-group): Decode group names in messages.
10076
10077 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
10078
10079         * message.el (message-citation-line-function)
10080         (message-insert-formatted-citation-line): Fix spelling of
10081         `message-insert-formated-citation-line'.
10082
10083 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
10084
10085         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
10086
10087 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10088
10089         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
10090         nnmail-pathname-coding-system.
10091
10092         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
10093         that a user enters; decode group names in messages.
10094
10095         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
10096
10097 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
10098
10099         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
10100
10101         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
10102
10103         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
10104         risky local variable.
10105
10106         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
10107
10108 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
10109
10110         * encrypt.el: Improve documentation to fix function name typo.
10111         Reported by Daiki Ueno <ueno@unixuser.org>.
10112
10113 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10114
10115         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
10116         even if the point is not in the last page of an article.
10117         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
10118         back to the previous page.
10119
10120 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
10121
10122         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
10123
10124 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10125
10126         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
10127
10128 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10129
10130         * message.el (message-check-news-body-syntax):
10131         Avoid mm-string-as-multibyte.
10132         (message-hide-headers): Don't assume (point-min)==1.
10133
10134 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
10135
10136         * message.el (message-remove-blank-cited-lines): Fix if remove is
10137         given.
10138         (message-bogus-address-regexp): New variable.
10139         (message-bogus-recipient-p): New function.
10140         (message-check-recipients): New command.
10141         (message-syntax-checks): Add `bogus-recipient'.
10142         (message-fix-before-sending): Add `bogus-recipient'.
10143
10144         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
10145         (gnus-treat-body-boundary): Don't test window-system.
10146
10147 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
10148
10149         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
10150
10151 2007-10-28  Miles Bader  <miles@gnu.org>
10152
10153         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
10154         at compile-time too.
10155
10156 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
10157
10158         * gnus-msg.el (gnus-message-setup-hook):
10159         Add `message-remove-blank-cited-lines' to options.
10160
10161 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
10162
10163         * message.el (message-remove-blank-cited-lines): New function.
10164         Suggested by Karl Plästerer.
10165
10166 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10167
10168         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
10169         mapc.
10170
10171         * imap.el (imap-open): Replace mapcar called for effect with mapc.
10172         (top-level): Use mapc to set functions to be traced for debugging.
10173
10174         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
10175         called for effect with while loop.
10176
10177         * message.el (message-talkative-question): Replace mapcar called for
10178         effect with mapc.
10179
10180         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
10181         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
10182         called for effect with dolist.
10183
10184         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
10185
10186         * nndiary.el: Use dolist instead of mapcar to add diary headers to
10187         gnus-extra-headers and nnmail-extra-headers.
10188
10189         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
10190         called for effect with dolist.
10191         (top-level): Use mapc to set functions to be traced for debugging.
10192
10193         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
10194         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
10195         dolist.
10196
10197         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
10198         Replace mapcar called for effect with mapc.
10199         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
10200         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
10201         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
10202         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
10203
10204         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
10205         remove-if that's a cl function.
10206
10207         * webmail.el (webmail-debug): Replace mapcar called for effect with
10208         dolist.
10209
10210         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
10211         with mapc.
10212
10213 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10214
10215         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
10216         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
10217         with while loop.
10218
10219         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
10220         functions from article-* functions.
10221         (gnus-multi-decode-header): Replace mapcar called for effect with
10222         dolist.
10223
10224         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
10225         (gnus-bookmark-show-details): Replace mapcar called for effect with
10226         while loop.
10227
10228         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
10229         called for effect with while loop.
10230
10231         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
10232         with dolist.
10233
10234         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
10235         Replace mapcar called for effect with dolist.
10236
10237         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
10238
10239         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
10240         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
10241         Replace mapcar called for effect with dolist.
10242         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
10243         mapc.
10244
10245         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
10246         Replace mapcar called for effect with dolist.
10247         (gnus-topic-list): Replace mapcar called for effect with mapc.
10248
10249         * gnus.el: Use mapc instead of mapcar to add autoloads.
10250
10251 2007-10-23  Richard Stallman  <rms@gnu.org>
10252
10253         * gnus-group.el (gnus-group-highlight): Mark as risky.
10254
10255 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10256
10257         * gnus.el (gnus-server-to-method): Return method found first in
10258         gnus-newsrc-alist.
10259
10260         * gnus-art.el (gnus-article-highlight-signature)
10261         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
10262         button overlay without the front stickiness.
10263
10264 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
10265
10266         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
10267         overview buffer needed a catch to receive its throw.
10268         (gnus-agent-flush-cache): Declare as interactive to make this function
10269         easier to use.
10270
10271 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
10272
10273         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
10274         `next-line'.
10275
10276 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10277
10278         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
10279         exclude address matching message-dont-reply-to-names.
10280
10281 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10282
10283         * gnus-util.el (gnus-string<): New function.
10284
10285         * gnus-sum.el (gnus-article-sort-by-author)
10286         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
10287
10288 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10289
10290         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
10291         the frame-focus tag is set in gnus-buffer-configuration.
10292
10293 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10294
10295         * gnus-art.el (gnus-article-add-button): Make a button overlay without
10296         the front stickiness.
10297
10298 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10299
10300         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
10301         url pattern; remove duplicate one.
10302         (gnus-article-extend-url-button): New function.
10303         (gnus-article-add-buttons): Use it.
10304         (gnus-button-push): Use concatenated url that it makes.
10305
10306 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
10307
10308         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
10309
10310 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10311
10312         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
10313         Don't hardcode point-min==1.
10314
10315 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
10316
10317         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
10318         Fix comment about "iso8859-1".
10319
10320 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
10321
10322         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
10323         ones returned from the verify-function.
10324
10325         * mm-uu.el (mm-uu-pgp-signed-extract-1):
10326         Call mml2015-extract-cleartext-signature if extraction failed.
10327
10328 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
10329
10330         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
10331         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
10332         failed.
10333
10334 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
10335
10336         * Relicense "GPLv2 or later" files to "GPLv3 or later".
10337
10338 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
10339
10340         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
10341         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
10342         recommends to use EasyPG instead of PGG.
10343
10344         * pgg.el: Revert to revision 6.23.2.16.
10345
10346         * pgg-def.el: Revert to revision 6.6.2.14.
10347
10348         * pgg-gpg.el: Revert to revision 6.23.2.34.
10349
10350 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
10351
10352         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
10353         to mark a thread as expirable.  Add variable `hide' to handle hiding of
10354         thread for both the null and zero (kill/expire thread) universal prefix
10355         cases.
10356         (gnus-summary-expire-thread): Add new function to expire a thread,
10357         using gnus-summary-kill-thread.
10358         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
10359         shortcuts for gnus-summary-expire-thread.
10360         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
10361         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
10362
10363 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
10364
10365         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
10366         extras value, so an extras entry can be deleted.
10367         (gnus-registry-delete-extra-entry): Use it.
10368         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
10369         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
10370         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
10371         storage through the gnus-registry, and provide an appropriate API for
10372         it.
10373
10374 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10375
10376         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
10377         Suggested by Leo <sdl.web@gmail.com>.
10378
10379         * gnus.el: Do.
10380
10381 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10382
10383         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
10384         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
10385
10386         * gnus-agent.el (gnus-agent-fetch-headers): Do.
10387
10388         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
10389         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
10390
10391 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10392
10393         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
10394         newline.
10395         (nnmbox-request-accept-article): Don't change article in source buffer;
10396         narrow to header to use message-fetch-field rather than
10397         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
10398         (nnmbox-request-replace-article): Quote lines that'll be misidentified
10399         as delimiters; make sure article ends with newline.
10400         (nnmbox-delete-mail): Correct last position of article to be deleted;
10401         ignore X-Gnus-Newsgroup header in article body.
10402         (nnmbox-save-mail): Quote lines looking like delimiters at the right
10403         positions; make sure article ends with newline.
10404
10405         * message.el (message-display-abbrev): Don't infloop when a user
10406         inserts SPC in the beginning of header.
10407
10408         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
10409         coding-system-for-read and coding-system-for-write for XEmacs having no
10410         file-coding feature.
10411
10412         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
10413
10414 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
10415
10416         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
10417         list of groups not followed by default.  Fix type to be regexp.
10418         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
10419
10420 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
10421
10422         * hmac-def.el (define-hmac-function): Switch from old-style to
10423         new-style backquotes.
10424
10425         * md4.el (md4-make-step): Likewise.
10426
10427 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10428
10429         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
10430         raw-text coding system when saving .newsrc file, which may contain
10431         non-ASCII group names.
10432
10433 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10434
10435         * gnus-cus.el (gnus-score-extra): New widget.
10436         (gnus-score-extra-convert): New function.
10437         (gnus-score-customize): Use it for Extra.
10438
10439 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
10440
10441         * mml2015.el (mml2015-extract-cleartext-signature): New function.
10442         (mml2015-mailcrypt-clear-verify): Use it.
10443         (mml2015-gpg-clear-verify): Use it.
10444         (mml2015-pgg-clear-verify): Use it.
10445         (mml2015-epg-clear-verify): Replace the current part with the output
10446         from GnuPG; don't extract the plaintext by itself.
10447
10448         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
10449         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
10450         mml2015-clear-verify-function; don't touch the armor headers or
10451         dash-escaped text here.
10452
10453 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10454
10455         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
10456         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
10457         parts, or application/octet-stream as a last resort.
10458         (gnus-mime-view-part-as-type): Don't toggle display.
10459         (gnus-mime-view-part-as-charset): Don't turn off display before
10460         querying charset.
10461
10462         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
10463         stuff to undisplayer function in Emacs.
10464         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
10465
10466         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
10467         text/calendar parts.
10468
10469 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10470
10471         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
10472         decoding text/calendar parts.
10473
10474         * message.el (message-forward-make-body-mime): Always mark body as
10475         having no illegible text; remove signed-or-encrypted argument.
10476         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
10477
10478         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
10479         (mml-generate-mime-1): Don't encode body if it is specified to be in
10480         raw form; don't make buffer be unibyte when inserting multibyte string.
10481
10482 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10483
10484         * sha1.el: Fix up comment style.
10485         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
10486         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
10487
10488         * hex-util.el: Fix up comment style.
10489         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
10490
10491         * gnus-salt.el: Use with-current-buffer.
10492         (gnus-pick-setup-message): Fix long-standing typo.
10493
10494 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10495
10496         * imap.el (imap-logout-timeout): New variable.
10497         (imap-logout, imap-logout-wait): New functions.
10498         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
10499
10500         * nnimap.el (nnimap-logout-timeout): New server variable.
10501         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
10502         nnimap-logout-timeout.
10503
10504         * gnus-art.el (gnus-article-summary-command-nosave)
10505         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
10506
10507 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10508
10509         * gnus.el (gnus-maximum-newsgroup): New variable.
10510
10511         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
10512         according to gnus-maximum-newsgroup.
10513
10514         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
10515         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
10516         Limit the range of articles according to gnus-maximum-newsgroup.
10517
10518 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
10519
10520         * gnus-art.el (gnus-sticky-article): Fix problems described in
10521         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
10522         Don't perform gnus-configure-windows here; reuse existing sticky
10523         article buffer.
10524
10525         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
10526         it doesn't exist in gnus-article-mode.
10527
10528 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10529
10530         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
10531         (gnus-agent-decoded-group-name): New function.
10532         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
10533         (gnus-agent-expire-group-1): Use it; decode group name in messages.
10534
10535 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
10536
10537         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
10538         Add binding for gnus-sticky-article.
10539         (gnus-summary-exit): Don't kill sticky article buffers.
10540
10541         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
10542         article buffer.
10543         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
10544         (gnus-kill-sticky-article-buffers): New commands.
10545
10546 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10547
10548         * nntp.el (nntp-xref-number-is-evil): New server variable.
10549         (nntp-find-group-and-number): If it is non-nil, don't trust article
10550         numbers in the Xref header.
10551
10552 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10553
10554         * gnus-agent.el (gnus-agent-read-group): New function.
10555         (gnus-agent-flush-group, gnus-agent-expire-group)
10556         (gnus-agent-regenerate-group): Use it.
10557         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
10558         nnmail-pathname-coding-system.
10559
10560 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10561
10562         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
10563
10564         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
10565         that are unread as unread, and also as selected so that information of
10566         marks having been changed by a user may be updated when exiting group.
10567
10568 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10569
10570         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
10571
10572 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10573
10574         * gnus-art.el (gnus-mime-display-single): Pass part number that is
10575         calculated ignoring signature parts to gnus-treat-article.
10576
10577 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10578
10579         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
10580         a point here in order to keep the window start.
10581         (gnus-insert-mime-security-button): Make a button overlay without the
10582         front stickiness.
10583         (gnus-mime-display-security): Goto the end of a button.
10584
10585         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
10586
10587 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10588
10589         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
10590         group-name-at-point.
10591         (gnus-group-completing-read): New function that offers decoded
10592         non-ASCII group names for completion.
10593         (gnus-fetch-group, gnus-group-read-ephemeral-group)
10594         (gnus-group-jump-to-group, gnus-group-make-group-simple)
10595         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
10596         (gnus-group-fetch-control): Use it.
10597         (gnus-fetch-group): Use group-name-at-point for the initial value
10598         rather than the default value; use gnus-alive-p.
10599
10600         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
10601         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
10602         (gnus-summary-post-news): Use gnus-group-completing-read.
10603
10604         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
10605         (gnus-read-move-group-name): Decode group name for completion.
10606
10607 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
10608
10609         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
10610         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
10611         Yamaoka slightly modified the code).
10612
10613 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10614
10615         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
10616         (nnmail-split-incoming): Bind it.
10617
10618         * nnml.el (nnml-group-name-charset): New function.
10619         (nnml-decoded-group-name): Use it; don't decode group name if
10620         nnmail-group-names-not-encoded-p is non-nil.
10621         (nnml-encoded-group-name): New function.
10622         (nnml-group-pathname): Inline nnml-decoded-group-name.
10623         (nnml-request-expire-articles): Decode group name in message.
10624         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
10625         nnmail-pathname-coding-system.
10626         (nnml-save-mail, nnml-active-number): Work with decoded group names and
10627         not decoded ones according to nnmail-group-names-not-encoded-p.
10628         (nnml-generate-active-info): Use nnml-encoded-group-name.
10629
10630 2007-08-08  Glenn Morris  <rgm@gnu.org>
10631
10632         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
10633         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
10634         doc-strings and comments.
10635
10636 2007-07-25  Glenn Morris  <rgm@gnu.org>
10637
10638         * Relicense all FSF files to GPLv3 or later.
10639
10640 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10641
10642         * gnus-sum.el (gnus-summary-move-article):
10643         Make gnus-summary-respool-article work.
10644
10645 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
10646
10647         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
10648         string.
10649
10650 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
10651
10652         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
10653         that should be ignored when comparing distant RSS articles with local
10654         ones.
10655         (nnrss-make-hash-index): New function.  Create a hash index according
10656         to the ignored fields.
10657         (nnrss-check-group): Use it.
10658
10659 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10660
10661         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
10662
10663         * gnus-art.el (article-decode-group-name): Decode Xref header too.
10664
10665         * gnus-group.el (gnus-group-make-group): Encode group name here unless
10666         the new optional argument ENCODED is non-nil.
10667         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
10668         coding system for encoding group name.
10669         (gnus-group-make-rss-group): Pass un-encoded group name to
10670         gnus-group-make-group.
10671         (gnus-group-set-info): Tell gnus-group-make-group that group name is
10672         encoded.
10673
10674         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
10675         Encode group name to which articles are moved or copied.
10676         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
10677         coding system for encoding Newsgroup, Followup-To and Xref headers.
10678
10679         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
10680         marks; use nnheader-file-coding-system to write a file.
10681         (nnagent-retrieve-headers): Bind file-name-coding-system to
10682         nnmail-pathname-coding-system.
10683
10684         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
10685
10686         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
10687         (nnml-request-article, nnml-request-create-group)
10688         (nnml-request-rename-group, nnml-find-id)
10689         (nnml-possibly-change-directory, nnml-possibly-create-directory)
10690         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
10691         (nnml-save-marks): Use nnml-group-pathname instead of
10692         nnmail-group-pathname.
10693
10694         (nnml-request-create-group, nnml-request-expire-articles)
10695         (nnml-request-move-article, nnml-request-delete-group)
10696         (nnml-deletable-article-p, nnml-possibly-create-directory)
10697         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
10698         (nnml-open-marks): Bind file-name-coding-system to
10699         nnmail-pathname-coding-system.
10700
10701         (nnml-request-article): Pass server argument to nnml-find-group-number.
10702         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
10703         Pass server argument to nnml-possibly-create-directory.
10704         (nnml-request-accept-article): Pass server argument to
10705         nnml-active-number and nnml-save-mail.
10706         (nnml-find-group-number): Pass server argument to nnml-find-id.
10707         (nnml-request-update-info): Pass server argument to
10708         nnml-marks-changed-p.
10709
10710         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
10711         (nnml-save-mail, nnml-active-number): Add server argument.
10712
10713         (nnml-request-delete-group): Warn if group is missing.
10714         (nnml-get-nov-buffer): Decode group name.
10715         (nnml-generate-active-info): Encode group name.
10716         (nnml-open-marks): Decode group name in messages.
10717
10718 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10719
10720         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
10721         if it is not specified.
10722         (gnus-article-pipe-part, gnus-article-save-part)
10723         (gnus-article-interactively-view-part, gnus-article-copy-part)
10724         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
10725         (gnus-article-inline-part, gnus-article-save-part-and-strip)
10726         (gnus-article-replace-part, gnus-article-delete-part)
10727         (gnus-article-view-part-as-type): Pass raw prefix argument to
10728         gnus-article-part-wrapper.
10729
10730 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10731
10732         * gnus-agent.el (gnus-agent-save-active):
10733         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
10734
10735         * gnus-cache.el (gnus-cache-save-buffers)
10736         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
10737         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
10738         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
10739         (gnus-cache-braid-nov, gnus-cache-braid-heads)
10740         (gnus-cache-generate-active, gnus-cache-rename-group)
10741         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
10742         (gnus-cache-update-overview-total-fetched-for):
10743         Bind file-name-coding-system to nnmail-pathname-coding-system.
10744         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
10745         New variables.
10746         (gnus-cache-decoded-group-name): New function.
10747         (gnus-cache-file-name): Use it.
10748         (gnus-cache-generate-active): Use non-decoded group name for active.
10749
10750         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
10751         right place.
10752         (gnus-write-active-file): Don't break non-ASCII group names.
10753
10754         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
10755         nnmail-pathname-coding-system.
10756
10757         * lpath.el: Bind default-file-name-coding-system,
10758         file-name-coding-system and language-info-alist for XEmacs.
10759
10760         * gnus-uu.el (gnus-uu-decode-save): Typo.
10761
10762 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10763
10764         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
10765
10766 2007-07-14  David Kastrup  <dak@gnu.org>
10767
10768         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
10769         finishing actions if we did not edit the article.
10770
10771 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10772
10773         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
10774         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
10775         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
10776         (gnus-agent-flush-group, gnus-agent-flush-cache)
10777         (gnus-agent-fetch-headers, gnus-agent-load-alist)
10778         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
10779         (gnus-agent-retrieve-headers, gnus-agent-request-article)
10780         (gnus-agent-regenerate-group)
10781         (gnus-agent-update-files-total-fetched-for)
10782         (gnus-agent-update-view-total-fetched-for):
10783         Bind file-name-coding-system to nnmail-pathname-coding-system.
10784         (gnus-agent-group-pathname): Don't encode file names by
10785         nnmail-pathname-coding-system.
10786         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
10787         coding-system-for-write instead of buffer-file-coding-system to
10788         gnus-agent-file-coding-system.
10789
10790         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
10791         Decode group name.
10792
10793         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
10794
10795         * gnus-start.el (gnus-update-active-hashtb-from-killed)
10796         (gnus-read-newsrc-el-file): Make group names unibyte.
10797
10798         * nnmail.el (nnmail-group-pathname): Don't encode file names by
10799         nnmail-pathname-coding-system.
10800
10801         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
10802         (nnrss-request-delete-group): Bind file-name-coding-system to
10803         nnmail-pathname-coding-system.
10804         (nnrss-read-server-data, nnrss-read-group-data):
10805         Bind file-name-coding-system correctly.
10806         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
10807
10808         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
10809         (nntp-server-to-method-cache): New variable.
10810         (nntp-group-pathname): New function that decodes non-ASCII group names.
10811         (nntp-possibly-create-directory, nntp-marks-changed-p)
10812         (nntp-save-marks, nntp-open-marks): Use it.
10813         (nntp-possibly-create-directory, nntp-open-marks):
10814         Bind file-name-coding-system to nnmail-pathname-coding-system.
10815         (nntp-open-marks): Decode group names when bootstrapping marks.
10816
10817         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
10818         Newsgroups and Folowup-To headers.
10819
10820 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10821
10822         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
10823         (gnus-server-closed-face, gnus-server-denied-face)
10824         (gnus-server-offline-face): Remove variable.
10825         (gnus-server-font-lock-keywords): Use faces that are not aliases.
10826
10827         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
10828         of modifying message-stack directly for XEmacs.
10829
10830         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
10831         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
10832         if the coding-system argument is nil for XEmacs.
10833
10834         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
10835         mm-charset-override-alist.
10836
10837         * rfc2047.el: Don't require base64; require rfc2045 for the function
10838         rfc2045-encode-string.
10839         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
10840         to quote the parameter value.
10841
10842 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10843
10844         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
10845         form in gnus-group-name-charset-method-alist.
10846
10847         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
10848         overrides the default layout edit-form.
10849
10850         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
10851
10852         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
10853
10854 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10855
10856         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
10857         as unfetched articles.
10858
10859 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
10860
10861         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
10862
10863 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10864
10865         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
10866         original back end that keeps marks in the local system.
10867
10868 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10869
10870         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
10871         arg of pop-to-buffer for XEmacs.
10872         (gnus-article-read-summary-keys): Ditto; don't restore window
10873         configuration if summary command ends up with neither article buffer
10874         nor summary buffer; describe bindings if summary keys end with C-h.
10875
10876 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10877
10878         * message.el (message-fix-before-sending): Skip raw message part to be
10879         forwarded while checking illegible text.
10880         (message-forward-make-body-mime, message-forward-make-body):
10881         Mark signed or encrypted raw message as having no illegible text.
10882
10883 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10884
10885         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
10886         (gnus-message-with-timestamp-1): New macro.
10887         (gnus-message-with-timestamp): New function.
10888         (gnus-message): Use them.
10889
10890         * nnheader.el (nnheader-message): Use them.
10891
10892 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
10893
10894         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
10895         .newsrc.eld file.
10896
10897 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10898
10899         * gnus-agent.el (gnus-agent-fetch-headers)
10900         (gnus-agent-retrieve-headers):
10901         Bind gnus-decode-encoded-address-function to identity.
10902
10903         * nntp.el (nntp-send-xover-command): Recognize an xover command is
10904         available also when the server returns simply a dot.
10905
10906         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
10907
10908 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10909
10910         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
10911
10912 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10913
10914         * gnus-ems.el (gnus-x-splash): Make it work.
10915
10916         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
10917         from being used.
10918
10919         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
10920
10921 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10922
10923         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
10924         4th and the 5th arguments.
10925
10926         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
10927         the front stickiness.
10928         (gnus-article-summary-command-nosave): Correct the order of the
10929         arguments passed to pop-to-buffer.
10930         (gnus-article-read-summary-keys): Ditto; make it work properly when the
10931         summary command ends up with the article buffer.
10932
10933         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
10934         the same faces.
10935
10936 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
10937
10938         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
10939
10940 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
10941
10942         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
10943         * gnus-sum.el (gnus-summary-highlight):
10944         * pgg.el (pgg-sign-region, pgg-sign):
10945         * mail-source.el (mail-source-delete-old-incoming-confirm):
10946         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
10947
10948 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10949
10950         * gnus-art.el (gnus-mime-view-part-externally)
10951         (gnus-mime-view-part-internally): Fix predicate function passed to
10952         completing-read.
10953
10954         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
10955
10956         * gnus.el (gnus-update-message-archive-method): Add :version.
10957
10958 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10959
10960         * gnus.el (gnus-update-message-archive-method): New variable.
10961
10962         * gnus-start.el (gnus-setup-news): Update saved "archive" method
10963         according to gnus-message-archive-method if
10964         gnus-update-message-archive-method is non-nil.
10965
10966 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10967
10968         * gnus-sum.el (gnus-summary-limit-to-address): New function.
10969         Suggested by Loic Dachary <loic@dachary.org>.
10970         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
10971
10972 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10973
10974         * message.el (message-pop-to-buffer): Add switch-function argument.
10975         (message-mail): Pass switch-function argument to it.
10976
10977 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
10978
10979         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
10980         Improve doc string.
10981
10982 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10983
10984         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
10985         (gnus-header-content)
10986         * gnus-cite.el (gnus-cite-10)
10987         * gnus-srvr.el (gnus-server-closed)
10988         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
10989         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
10990         (gnus-group-mail-3-empty, gnus-group-mail-low)
10991         (gnus-group-mail-low-empty, gnus-splash)
10992         * message.el (message-header-to, message-header-cc)
10993         (message-header-subject, message-header-other, message-header-name)
10994         (message-header-xheader, message-separator, message-cited-text)
10995         (message-mml): Lighten colors of faces used for dark background.
10996
10997 2007-05-24  Simon Josefsson  <simon@josefsson.org>
10998
10999         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
11000         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
11001
11002 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11003
11004         * message.el (message-narrow-to-headers-or-head):
11005         Ignore mail-header-separator in the body.
11006
11007 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11008
11009         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
11010         same as window size.
11011
11012 2007-05-22  Kevin Ryde  <user42@zip.com.au>
11013
11014         * message.el (message-font-lock-keywords): Use message-header-xheader
11015         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
11016         ahead of the anything pattern, to get it recognised.
11017
11018 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11019
11020         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
11021         spam.el loads uses it in the compiled defadvice form.
11022
11023 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
11024
11025         * gnus-sum.el (gnus-articles-to-read)
11026         (gnus-summary-insert-old-articles): Don't truncate group name for
11027         `read-string'.
11028
11029         * gnus-util.el (gnus-limit-string): Delete this function.
11030
11031         * gnus-sum.el (gnus-simplify-subject-fully):
11032         Use `truncate-string-to-width' instead.
11033
11034 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
11035
11036         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
11037         Tell if, on summary exit, the next group has to be selected.
11038         (gnus-summary-exit): Use it.
11039
11040 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
11041
11042         * gnus-art.el (gnus-article-mode): Fix comment about displaying
11043         non-break space.
11044
11045 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11046
11047         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
11048         Check if group is not a directory.
11049         (nnfolder-request-expire-articles): Don't delete articles if the target
11050         group is not available.
11051
11052         * nnml.el (nnml-request-create-group): Properly check if group is not a
11053         file.
11054         (nnml-request-expire-articles): Don't delete articles if the target
11055         group is not available.
11056
11057         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
11058         Don't quote characters that are within parentheses.
11059
11060 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11061
11062         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
11063         (gnus-handle-ephemeral-exit): Select article according to it.
11064
11065 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
11066
11067         * message.el (message-insert-formated-citation-line): Remove newline.
11068         (message-citation-line-format): Add final \n here so that the user can
11069         avoid a blank line.
11070
11071 2007-05-03  Dan Christensen  <jdc@uwo.ca>
11072
11073         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
11074         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
11075         Update lanl/arXiv support.
11076
11077 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
11078
11079         * gnus.el: Bump version number.
11080
11081 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11082
11083         * gnus.el (gnus-version-number): Bump version.
11084
11085 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11086
11087         * gnus.el: No Gnus v0.6 is released.
11088
11089 2007-04-27  Didier Verna  <didier@xemacs.org>
11090
11091         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
11092         * gmm-utils.el (gmm-regexp-concat): ... here.
11093         * message.el: Don't require 'gnus-util.
11094         (message-dont-reply-to-names): Handle name change above.
11095         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
11096
11097 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11098
11099         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
11100         since the initial value varies according to the system.
11101
11102 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11103
11104         * mm-util.el (mm-charset-synonym-alist): Defcustom.
11105
11106 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
11107
11108         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
11109
11110 2007-04-24  Didier Verna  <didier@xemacs.org>
11111
11112         Improve the type of gnus-ignored-from-addresses.
11113         * gnus-util.el (gnus-orify-regexp): New function.
11114         * message.el (gnus-util): Require it.
11115         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
11116         * gnus-sum.el (gnus-ignored-from-addresses): New function.
11117         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
11118
11119 2007-04-24  Didier Verna  <didier@xemacs.org>
11120
11121         * gnus-sum.el:
11122         * gnus-utils.el: Fix some trailing whitespaces.
11123
11124 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11125
11126         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
11127         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
11128         article's Message-ID; refer parent article in summary buffer.
11129
11130         * message.el (message-bounce): Call mime-to-mml.
11131
11132         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
11133         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
11134         optimize and/or forms properly.
11135
11136 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
11137
11138         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
11139         URL.
11140
11141 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11142
11143         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
11144
11145 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11146
11147         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
11148         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
11149         displayed of multipart/alternative part if it is invoked from summary
11150         buffer.
11151
11152         * mm-view.el (mm-inline-text-html-render-with-w3m)
11153         (mm-inline-text-html-render-with-w3m-standalone)
11154         (mm-inline-render-with-function): Use mail-parse-charset by default.
11155
11156 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
11157
11158         * parse-time.el (parse-time-string-chars): Check if CHAR
11159         is less than the length of parse-time-syntax.
11160
11161 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11162
11163         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
11164         from gnus-newsgroup-processable.
11165
11166 2007-04-16  Didier Verna  <didier@xemacs.org>
11167
11168         * gnus-msg.el (gnus-configure-posting-styles):
11169         Handle message-signature-directory properly with :file syntax.
11170         Reported by "Leo".
11171
11172 2007-04-11  Didier Verna  <didier@xemacs.org>
11173
11174         New user option: message-signature-directory.
11175         * gnus-msg.el (gnus-configure-posting-styles): Support it.
11176         * message.el (message-insert-signature): Ditto.
11177         * message.el (message-signature-file): Doc update.
11178         * message.el (message-signature-directory): New.
11179
11180 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11181
11182         * gnus-msg.el (gnus-inews-yank-articles):
11183         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
11184
11185 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11186
11187         * message.el (message-yank-original): Make sure cited text ends with
11188         newline; don't exchange point and mark.
11189
11190 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
11191
11192         * tls.el (open-tls-stream): Properly handle case where there
11193         is no associated buffer.
11194
11195 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
11196
11197         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
11198         message-yank-original, make sure (< mark TEXT point).
11199
11200 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11201
11202         * message.el (message-fill-column): New variable.
11203         (message-mode): Use it.  Add comment on a possible new hook.
11204
11205         * nnmail.el (nnmail-spool-file): Mark as obsolete.
11206         (nnmail-get-new-mail): Reformat.
11207
11208         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
11209
11210         * gmm-utils.el: Fix Commentary.
11211         (gmm-tool-bar-from-list): Fix typo in doc string.
11212
11213 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
11214
11215         * message.el (message-yank-original): Don't switch point and mark
11216         unnecessarily to put point and mark as documented.
11217
11218 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11219
11220         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
11221         from the message heads.
11222
11223 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
11224
11225         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
11226         article buffer does not have a window.  This may not be the best
11227         solution but is certainly better than setting the start of the null,
11228         that is the current, window.
11229
11230 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
11231
11232         * gnus-draft.el (gnus-draft-setup-hook): New hook.
11233         (gnus-draft-setup): Run it.
11234
11235         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
11236         gnus-score-fast-scoring.  Allow regexp.
11237         (gnus-score-headers): Use it.
11238
11239         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
11240         XEmacs.
11241
11242         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
11243         string.
11244         (gnus-button-alist): Also catch `<f1> k ...'.
11245         (gnus-treat-display-x-face): Fix doc string.
11246
11247 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11248
11249         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
11250         evaluation of gnus-extended-version to ensure correct generation of the
11251         User-Agent header when message-generate-headers-first is used.
11252
11253 2007-03-24  Simon Josefsson  <simon@josefsson.org>
11254
11255         * hashcash.el (hashcash-generate-payment-async): Don't crash if
11256         hashcash-path is nil.  Don't call callback with incorrect number of
11257         parameters if val is 0.
11258
11259 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11260
11261         * message.el (message-required-news-headers):
11262         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
11263
11264 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
11265
11266         * tls.el (open-tls-stream): In handshake-waiting loop,
11267         don't wait more if there is output available to process.
11268
11269 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
11270
11271         * tls.el (tls-program): Doc fix.
11272
11273 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11274
11275         * message.el (message-generate-new-buffers): Change the meaning of the
11276         nil value; add `standard' to the choices; treat t as `unique'; improve
11277         doc string.
11278         (gnus-select-frame-set-input-focus): Autoload.
11279         (message-buffer-name): Search for the existing message buffer if
11280         message-generate-new-buffers is nil or `standard'; treat the value t of
11281         message-generate-new-buffers as `unique'.
11282         (message-pop-to-buffer): Raise the frame already displaying the message
11283         buffer; clear the echo area after querying.
11284         (message-setup): Pass the `continue' argument to compose-mail.
11285         (message-mail): Prefer `switch-function' if it is given; search for the
11286         existing message buffer if the `continue' argument is non-nil; pass
11287         continue and switch-function arguments to compose-mail by way of
11288         message-setup.
11289         (message-mail-other-window): Adjust argument of message-setup.
11290         (message-mail-other-frame): Ditto.
11291
11292 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11293
11294         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
11295         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
11296         to turn font-lock on when turning gnus-message-citation-mode on.
11297
11298 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
11299
11300         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
11301         (mml-smime-function-alist): New variable; add epg as the backend.
11302         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
11303         mml-smime- functions instead.
11304         * mm-view.el: Require smime.
11305
11306 2007-03-05  Didier Verna  <didier@xemacs.org>
11307
11308         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
11309         instead of just inheritance for posting styles.
11310         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
11311
11312 2007-02-24  Chris Moore  <dooglus@gmail.com>
11313
11314         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
11315         * pgg-pgp.el (pgg-pgp-encrypt-region):
11316         * pgg-gpg.el (pgg-gpg-encrypt-region):
11317         Check pgg-encrypt-for-me if no other recipients.
11318
11319 2007-02-24  John Paul Wallington  <jpw@pobox.com>
11320
11321         * tls.el (tls-certtool-program): Fix custom type.
11322
11323 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11324
11325         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
11326         and point-at-eol instead of line-(beginning|end)-position.
11327
11328         * assistant.el (assistant-parse-buffer): Ditto.
11329
11330         * netrc.el (netrc-parse-services): Ditto.
11331
11332 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
11333
11334         * mml2015.el (mml2015-epg-find-usable-key): New function.
11335         (mml2015-epg-sign): Use it.
11336         (mml2015-epg-encrypt): Use it.
11337
11338 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11339
11340         * message.el (message-make-in-reply-to): Quote name containing
11341         non-ASCII characters.  It will make the RFC2047 encoder cause an error
11342         if there are special characters.  Reported by NAKAJI Hiroyuki
11343         <nakaji@jp.freebsd.org>.
11344
11345 2007-02-27  Didier Verna  <didier@xemacs.org>
11346
11347         Include the group parameters as well as the topic ones in the
11348         inheritance filter process.
11349         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
11350         argument GROUP-PARAMS-LIST.
11351         * gnus-topic.el (gnus-group-topic-parameters): Use it.
11352
11353 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11354
11355         * nntp.el (nntp-never-echoes-commands)
11356         (nntp-open-connection-functions-never-echo-commands): New variables.
11357         (nntp-send-command): Use them.
11358
11359 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
11360
11361         * mml2015.el (mml2015-epg-verify): Simplify.
11362
11363 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11364
11365         * mml.el (mml-content-disposition-alist): New user option.
11366         (mml-content-disposition): New function.
11367         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
11368         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
11369
11370 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
11371
11372         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
11373         verification.
11374
11375 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11376
11377         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
11378         articles posted in the last 24 hours.
11379
11380 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
11381
11382         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
11383
11384 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
11385
11386         * nntp.el (nntp-send-command): Don't wait for echoes when
11387         nntp-open-ssl-stream is used.
11388
11389 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11390
11391         * gnus-cite.el (gnus-test-font-lock-add-keywords)
11392         (gnus-message-add-citation-keywords)
11393         (gnus-message-remove-citation-keywords): Remove.
11394         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
11395         directly, make the variables in font-lock-defaults buffer-local, add
11396         gnus-message-citation-keywords to them and then update the value of
11397         font-lock-keywords.
11398
11399 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11400
11401         * message.el (message-cite-original-1): Don't call
11402         gnus-article-highlight-citation.
11403
11404         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
11405         citations; fix line count.
11406
11407 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
11408
11409         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
11410         (gnus-message-add-citation-keywords)
11411         (gnus-message-remove-citation-keywords): Use it; fix the emulating
11412         versions of font-lock-add-keywords and font-lock-remove-keywords to
11413         work with XEmacs correctly.
11414
11415 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11416
11417         * gnus-cite.el (gnus-cite-face-list): Set the values of
11418         gnus-message-max-citation-depth and gnus-message-citation-keywords.
11419         (gnus-message-max-citation-depth): Use defvar rather than defconst.
11420         (gnus-message-cite-prefix-regexp): New variable.
11421         (gnus-message-search-citation-line): Use it; protect against long
11422         citation prefix; fill match data with nil rather than 0 for XEmacs; set
11423         the 0th match data for Emacs.
11424         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
11425         (gnus-message-add-citation-keywords): Append keywords rather than
11426         prepending; emulate font-lock-add-keywords if it is not available.
11427         (gnus-message-remove-citation-keywords):
11428         Emulate font-lock-remove-keywords if it is not available.
11429
11430         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
11431
11432         * message.el (message-cite-prefix-regexp): Set the value of
11433         gnus-message-cite-prefix-regexp.
11434
11435 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11436
11437         * nnweb.el (nnweb-google-parse-1): Update parser.
11438
11439 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
11440
11441         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
11442
11443 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11444
11445         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
11446         regexp.
11447
11448 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11449
11450         * uudecode.el (uudecode-string-to-multibyte): New function emulating
11451         string-to-multibyte.
11452         (uudecode-decode-region-internal): Use it.
11453
11454         * lpath.el: Fbind string-as-multibyte for XEmacs.
11455
11456 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
11457
11458         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
11459         Fix custom choice.
11460
11461         * gnus-art.el (gnus-signature-limit): Fix custom choice.
11462
11463 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
11464
11465         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
11466
11467         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
11468         `write-region' to respect `mm-inhibit-file-name-handlers'.
11469
11470 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
11471
11472         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
11473         Use gnus-home-directory instead of "~/" or "$HOME".
11474
11475 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
11476
11477         * encrypt.el (encrypt-insert-file-contents): Add better prompt
11478         to mention filename.
11479         Add comments at beginning regarding usage.
11480         (encrypt-write-file-contents): Change interactive so a string is
11481         acceptable.  If the file has no associated model, show an error instead
11482         of a nonsense prompt.
11483
11484 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11485
11486         * spam.el (spam-bsfilter-ham-switch): Fix typo.
11487         Thanks to Yoshihiko Yamada for kind notification of this typo.
11488
11489 2007-01-12  Kenichi Handa  <handa@m17n.org>
11490
11491         * uudecode.el (uudecode-decode-region-internal): Make it work in a
11492         multibyte buffer.
11493
11494 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
11495
11496         * gnus-score.el (gnus-score-fast-scoring): New variable.
11497         (gnus-score-headers): Use it.
11498
11499         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
11500
11501         * message.el (message-cite-original-1):
11502         Call gnus-article-highlight-citation if requested.
11503         (message-make-from): Allow name and address as optional arguments.
11504
11505         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
11506
11507         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
11508         bugs to doc string.
11509         (gnus-button-alist): Add mid\\|message-id.
11510         (gnus-button-fetch-group): Extend for use in
11511         `browse-url-browser-function'.
11512         (gnus-button-url-regexp): Try to catch paired parentheses like in
11513         Wikipedia URLs.
11514
11515         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
11516         Suggested by Simon Krahnke <overlord@gmx.li>.
11517
11518 2007-01-13  Romain Francoise  <romain@orebokech.com>
11519
11520         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
11521         Update copyright.
11522
11523 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
11524
11525         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
11526
11527 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
11528
11529         * gnus-registry.el (gnus-registry-unfollowed-groups)
11530         (gnus-registry-split-fancy-with-parent): Fix documentation.
11531
11532 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11533
11534         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
11535         from nnweb groups.
11536
11537 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11538
11539         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
11540         Xref urls.  Erase buffer before requesting head.
11541
11542         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
11543
11544 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
11545
11546         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
11547         customizable.
11548
11549 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
11550
11551         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
11552         no signing key is found.
11553         (mml2015-epg-encrypt): Ask user whether to skip or abort if
11554         no encrypting and/or signing key is found.
11555
11556 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11557
11558         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
11559
11560 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11561
11562         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
11563         headers read from disk with the ones newly found in the current search.
11564         This should no longer cause problems, because the article numbers in
11565         Gmane's `nov.php' output are ignored since the previous change.
11566
11567 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11568
11569         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
11570
11571 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11572
11573         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
11574         replace-regexp-in-string; bind url-version; fbind display-images-p and
11575         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
11576         find-face and set-itimer-function for Emacs; bind itimer-list for
11577         Emacs.
11578
11579         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
11580
11581 2007-01-01  Romain Francoise  <romain@orebokech.com>
11582
11583         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
11584
11585 2006-12-31  Steve Youngs  <steve@sxemacs.org>
11586
11587         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
11588         `define-minor-mode' macro definition expanded properly.
11589         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
11590         exclude it there.
11591
11592         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
11593         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
11594         `fboundp' test.
11595         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
11596         This is OK to autoload in (S)XEmacs now.
11597
11598 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11599
11600         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
11601         keystroke.
11602         (gnus-summary-limit-to-singletons): Fix typo.
11603
11604         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
11605         else fails.
11606
11607 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11608
11609         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
11610         docstring.
11611
11612         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
11613         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
11614         (gnus-summary-insert-dormant-articles): Fix typo in message.
11615
11616 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
11617
11618         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
11619         nil for XEmacs.
11620         (gnus-message-citation-mode): Don't autoload in XEmacs.
11621
11622         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
11623
11624 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
11625
11626         * nnimap.el (nnimap-expunge-search-string):
11627         Mention nnimap-search-uids-not-since-is-evil in docstring.
11628
11629 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
11630
11631         * spam.el: Revert to make-obsolete-variable because
11632         define-obsolete-variable-alias is not supported in Emacs 21.
11633
11634         * spam.el (spam-ifile-path, spam-ifile-database-path)
11635         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
11636         make-obsolete-variable.
11637         (spam-bsfilter-path, spam-bsfilter-program)
11638         (spam-spamassassin-path, spam-spamassassin-program)
11639         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
11640         Don't use "path" inappropriately.
11641         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
11642         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
11643         variable names.
11644
11645 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
11646
11647         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
11648         summary buffer.
11649
11650         * password.el (password-cache-remove): Use clear-string to burn
11651         password, if available.
11652
11653 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
11654
11655         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
11656
11657         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
11658
11659         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
11660         (gnus-message-highlight-citation): Move defcustom here from
11661         gnus-cite.el.
11662         (gnus-message-citation-mode): Autoload.
11663
11664         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
11665         checks to make it compile with XEmacs.
11666         (gnus-message-citation-mode): New minor mode.
11667         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
11668         (gnus-message-highlight-citation): New variables.
11669         (gnus-message-search-citation-line)
11670         (gnus-message-add-citation-keywords)
11671         (gnus-message-remove-citation-keywords)
11672         (turn-on-gnus-message-citation-mode)
11673         (turn-off-gnus-message-citation-mode): New functions.
11674
11675 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
11676
11677         * gnus-cite.el: Enable highlighting of different citation levels in
11678         message-mode.
11679
11680 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
11681
11682         * message.el (message-make-fqdn): Fix comment.
11683         (message-bogus-system-names): Add ".local".
11684
11685         * spam.el (spam-ifile-path, spam-ifile-program)
11686         (spam-ifile-database-path, spam-ifile-database)
11687         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
11688         Don't use "path" inappropriately.
11689         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
11690         strings.
11691         (spam-check-ifile, spam-ifile-register-with-ifile)
11692         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
11693         Use new variable names.
11694
11695         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
11696         (gnus-treat-display-smileys): Simplify using
11697         gnus-image-type-available-p.
11698
11699         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
11700         available.
11701
11702         * gnus-xmas.el (gnus-xmas-image-type-available-p):
11703         Use `display-images-p' if available.
11704
11705 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11706
11707         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
11708         one after turning on the buffer's multibyteness instead of decoding
11709         them directly in the unibyte buffer that causes unexpected conversion
11710         in Emacs 23 (unicode).
11711
11712 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11713
11714         * message.el (message-generate-hashcash): Fix custom type.
11715
11716 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
11717
11718         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
11719
11720 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
11721
11722         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
11723         disconnect icons.  Add help text.
11724
11725 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
11726
11727         * spam.el (spam-extra-header-to-number): CRM114 spam score is
11728         negated to be consistent with the others we handle.
11729
11730 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11731
11732         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
11733         version of gnus-summary-buffer to something, so that we can use two
11734         article buffers at the same time.
11735
11736 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
11737
11738         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
11739         trigger all the extra headers.
11740         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
11741         sorting.
11742
11743 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11744
11745         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
11746         solid groups.
11747
11748 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
11749
11750         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
11751
11752 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
11753
11754         * legacy-gnus-agent.el: Add Copyright notice.
11755
11756 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
11757
11758         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
11759
11760 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11761
11762         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
11763
11764         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
11765         to make it work reliably in CVS Emacs.
11766         (gnus-summary-limit-strange-charsets-predicate)
11767         (gnus-summary-limit-to-predicate): New functions.
11768
11769 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
11770
11771         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
11772         specifying array size.
11773         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
11774         array if it is too small.
11775         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
11776         (gnus-sort-threads-loop): New function.
11777
11778 2006-12-06  Chris Moore  <dooglus@gmail.com>
11779
11780         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
11781         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
11782
11783 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
11784
11785         * mm-url.el (mm-url-predefined-programs): Call curl with correct
11786         options.
11787
11788 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11789
11790         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
11791         DOS-ing the recipient.
11792
11793         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
11794         the headers when creating the mapping to avoid mismappings.
11795         (nnweb-gmane-create-mapping): Always nix out old mapping.
11796
11797 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11798
11799         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
11800         and mm-verify-option to never.
11801
11802 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11803
11804         * message.el (message-signed-or-encrypted-p): New function.
11805         (message-forward-make-body): Use it.
11806
11807         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
11808         Replace encode-coding-string with mm-encode-coding-string.
11809
11810 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11811
11812         * nneething.el (nneething-decode-file-name):
11813         Replace decode-coding-string with mm-decode-coding-string.
11814
11815         * gnus-int.el (gnus-open-server): Say failed server's name.
11816
11817 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11818
11819         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
11820         strings to a single string.  Quote `errors-file-name'.
11821         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
11822         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
11823         Adjust calls.  Use `shell-quote-argument'.
11824
11825 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
11826
11827         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
11828         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
11829
11830         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
11831         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
11832         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
11833         (gnus-group-make-directory-group, gnus-group-transpose-groups):
11834         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
11835         (gnus-subscribe-newsgroup, gnus-1):
11836         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
11837         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
11838         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
11839         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
11840
11841 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11842
11843         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
11844         keystroke.
11845         (gnus-summary-limit-to-bodies): Implement headersp.
11846
11847 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11848
11849         * dns.el (query-dns): Protect against "Process dns deleted" strings.
11850
11851 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11852
11853         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
11854
11855 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11856
11857         * message.el (message-generate-hashcash): Expand range of values to
11858         include `opportunistic'.
11859         (message-send-mail): Use it.
11860
11861 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11862
11863         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
11864         and comment it.
11865
11866         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
11867
11868 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
11869
11870         * gnus-util.el (gnus-extract-address-components): Improve comment.
11871
11872 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11873
11874         * gnus-util.el (gnus-extract-address-components): Work with address in
11875         which the name portion contains @.
11876
11877         * lpath.el: Fbind custom-autoload.
11878
11879 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
11880
11881         * gnus.el (gnus-start): Move custom group up.
11882         (gnus-select-method): Don't autoload, but make it available for
11883         `customize-variable'.
11884         (gnus-getenv-nntpserver): Don't autoload.
11885
11886 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
11887
11888         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
11889
11890 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
11891
11892         * message.el (message-sendmail-extra-arguments): New variable.
11893         (message-send-mail-with-sendmail): Use it.
11894
11895 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11896
11897         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
11898         mm-with-unibyte-current-buffer to make string unibyte.
11899
11900         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
11901         mm-string-as-multibyte.
11902
11903 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
11904
11905         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
11906         Reported by Werner Koch <wk@gnupg.org>.
11907
11908 2006-11-14  Daiki Ueno  <ueno@p360>
11909
11910         * mml2015.el: Autoload epa-select-keys when compiling.
11911
11912 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
11913
11914         * mml2015.el (mml2015-epg-sign): Save the signing keys in
11915         message-options.
11916         (mml2015-epg-encrypt): Save the recipient keys in message-options.
11917
11918 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
11919
11920         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
11921         EasyPG (< 0.0.6).
11922         (mml2015-always-trust): New user option.
11923         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
11924         prompt.
11925
11926 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11927
11928         * nntp.el (nntp-authinfo-force): New variable.
11929         (nntp-send-authinfo): Use it.
11930
11931 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
11932
11933         * message.el (message-strip-subject-encoded-words): Allow _not_ to
11934         decode encoded words.  Improve prompt.  Add comment about forwarding.
11935         (message-replacement-char): Move up.
11936
11937 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
11938
11939         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
11940         instead of gnus-intersection because arguments of gnus-sorted-nunion
11941         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
11942
11943 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
11944
11945         * message.el (message-strip-subject-encoded-words): Reformat prompt.
11946         (message-simplify-subject-functions):
11947         Enable message-strip-subject-encoded-words by default.
11948
11949 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
11950
11951         * message.el (message-strip-subject-encoded-words): New function.
11952         (message-simplify-subject-functions): New variable.
11953         (message-simplify-subject): Use it.  Fix typo in doc string.
11954         Support message-strip-subject-encoded-words.
11955
11956 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
11957
11958         * gnus-diary.el (gnus-diary-delay-format-function):
11959         * nndiary.el (nndiary-reminders):
11960         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
11961
11962 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
11963
11964         * gnus-art.el (article-hide-boring-headers): Fetch date from
11965         gnus-original-article-buffer to avoid problems with localized date
11966         strings.
11967
11968 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11969
11970         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
11971
11972 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
11973
11974         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
11975         New variables.
11976         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
11977         (mm-charset-synonym-alist): Move some entries to
11978         mm-codepage-iso-8859-list.
11979         (mm-charset-synonym-alist, mm-charset-override-alist):
11980         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
11981
11982 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11983
11984         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
11985
11986 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
11987
11988         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
11989         with Emacs 21 and XEmacs.
11990
11991 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
11992
11993         * spam.el (spam-parse-address): New function for better parsing,
11994         catching errors, etc.
11995         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
11996
11997 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
11998
11999         * mm-view.el: Add interactive arg to html2text autoload.
12000
12001 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12002
12003         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
12004
12005 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
12006
12007         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
12008         New variables.
12009         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
12010         (mm-charset-synonym-alist): Move some entries to
12011         mm-codepage-iso-8859-list.
12012
12013         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
12014
12015 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
12016
12017         * message.el (message-citation-line-format)
12018         (message-insert-formated-citation-line): Fix implementation of %E, %N
12019         and %n according to the doc string.
12020
12021 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
12022
12023         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
12024         Use car-safe to avoid bad parses.
12025
12026 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12027
12028         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
12029         names.
12030
12031         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
12032
12033 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12034
12035         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
12036         header.
12037
12038         * message.el (message-draft-headers): Add Date.
12039         (message-headers-to-generate): Fix typo in docstring.
12040
12041         * nndraft.el (nndraft-required-headers): New variable.
12042         (nndraft-generate-headers): Use it.
12043
12044         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
12045
12046 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
12047
12048         * gnus-registry.el (gnus-registry-wash-for-keywords)
12049         (gnus-registry-find-keywords): New functions to allow easy searching of
12050         articles that are in the registry.
12051
12052 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
12053
12054         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
12055         Use ietf-drums-parse-address instead of gnus-extract-address-components.
12056         Reported by Damien Elmes <damien@repose.cx>.
12057
12058 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
12059
12060         * gnus.el (gnus-mime): Remove unused custom group.
12061
12062 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12063
12064         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
12065         "blank line" when searching for end of armor headers.
12066
12067 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12068
12069         * gmm-utils.el (gmm-write-region): Fix variable name.
12070
12071 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12072
12073         * gmm-utils.el (gmm-write-region): New function based on compatibility
12074         code from `mm-make-temp-file'.
12075
12076         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
12077
12078         * nnmaildir.el (nnmaildir--update-nov)
12079         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
12080         Use `gmm-write-region'.
12081
12082 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
12083
12084         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
12085         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
12086
12087         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
12088
12089         * message.el (message-replacement-char): New variable.
12090         (message-fix-before-sending): Use it.
12091         (message-simplify-subject): New function to remove duplicate code.
12092         (message-reply, message-followup): Use it.
12093
12094         * gnus-sum.el (gnus-summary-make-menu-bar):
12095         Clarify gnus-summary-limit-to-articles.
12096
12097 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12098
12099         * gnus-util.el (gnus-with-local-quit): New macro.
12100
12101         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
12102
12103 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
12104
12105         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
12106         ignore non-string data.
12107
12108 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12109
12110         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
12111         non-string data (needs to be done in the registry too).
12112
12113 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12114
12115         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
12116         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
12117         (gnus-registry-split-fancy-with-parent)
12118         (gnus-registry-fetch-simplified-message-subject-fast)
12119         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
12120         Remove text properties on ingress into the registry and when it's saved.
12121         (gnus-registry-clean-empty-function): Fix bug with cleaning the
12122         registry from entries with no groups.
12123
12124 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12125
12126         * gnus-util.el (gnus-string-remove-all-properties): Add utility
12127         function to remove string properties.
12128
12129 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
12130
12131         * gmm-utils.el (gmm): Adjust custom version.
12132
12133         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
12134         Adjust custom version.
12135
12136         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
12137
12138 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
12139
12140         * gnus-art.el (gnus-insert-prev-page-button)
12141         (gnus-insert-next-page-button): Simplify.  Reformat.
12142
12143 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
12144
12145         * gnus-art.el (gnus-insert-prev-page-button)
12146         (gnus-insert-next-page-button): Apply gnus-article-button-face.
12147
12148 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
12149
12150         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
12151
12152 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
12153
12154         * gnus-art.el (gnus-insert-mime-button)
12155         (gnus-insert-mime-security-button):
12156         Apply gnus-article-button-face to MIME and security buttons.
12157
12158 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
12159
12160         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
12161         readable.
12162
12163 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12164
12165         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
12166
12167 2006-09-20  Steve Youngs  <steve@sxemacs.org>
12168
12169         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
12170         `browse-url-of-file' instead of `browse-url'.
12171
12172 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12173
12174         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
12175         regexp.  Articles containing quotation were cut prematurely.
12176
12177 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12178
12179         * message.el (message-cite-original-1): Use nobody by default for the
12180         value of From header.
12181         (message-reply): Ditto.
12182
12183 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
12184
12185         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
12186         to the gnus-info.  This fixes a bug of inline-PGP message verification.
12187         Reported by Michael Piotrowski <mxp@dynalabs.de>.
12188
12189 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
12190
12191         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
12192         mails in the doc string.  Add some URLs in comment.
12193         (pop3-movemail): Warn about pop3-leave-mail-on-server.
12194
12195 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12196
12197         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
12198         backslashes handling and the way to find boundaries of quoted strings.
12199
12200 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
12201
12202         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
12203         mml1991-encrypt-to-self is set and mml1991-signers is not set.
12204         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
12205         mml2015-encrypt-to-self is set and mml2015-signers is not set.
12206
12207 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
12208
12209         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
12210         doc string.
12211         (gnus-button-regexp, gnus-button-last): Remove unused variables.
12212
12213 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12214
12215         * lpath.el: Fbind epg-check-configuration.
12216
12217 2006-09-06  Simon Josefsson  <jas@extundo.com>
12218
12219         * mml2015.el (mml2015-use): Doc fix, mention epg.
12220
12221 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
12222
12223         * mml2015.el (mml2015-use): Default to epg, if available.
12224
12225 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
12226
12227         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
12228         message-sender.
12229         (mml1991-epg-encrypt): Ditto.
12230         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
12231         message-sender.
12232         (mml2015-epg-encrypt): Ditto.
12233
12234 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
12235
12236         * message.el (message-send-mail-with-sendmail): Look for sendmail in
12237         several common directories.
12238
12239 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
12240
12241         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
12242         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
12243
12244 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12245
12246         * gnus-art.el (article-decode-encoded-words): Make it fast.
12247
12248 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12249
12250         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
12251
12252         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
12253         in quoted string into `\'.
12254
12255 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12256
12257         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
12258         Use standard-syntax-table.
12259
12260 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12261
12262         * gnus-art.el (gnus-decode-address-function): New variable.
12263         (article-decode-encoded-words): Use it to decode headers which are
12264         assumed to contain addresses.
12265         (gnus-mime-delete-part): Remove useless `or'.
12266
12267         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
12268         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
12269         (gnus-nov-parse-line): Use it to decode From header.
12270         (gnus-get-newsgroup-headers): Ditto.
12271         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
12272
12273         * mail-parse.el (mail-decode-encoded-address-region): New alias.
12274         (mail-decode-encoded-address-string): New alias.
12275
12276         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
12277         New function.
12278         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
12279         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
12280         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
12281         (rfc2047-decode-string): Ditto.
12282         (rfc2047-decode-address-region): New function.
12283         (rfc2047-decode-address-string): New function.
12284
12285 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
12286
12287         * message.el (message-caesar-buffer-body): Allow rotating headers.
12288
12289         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
12290
12291         * message.el (message-insert-formated-citation-line): Fix %f.
12292         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
12293
12294 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12295
12296         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
12297         (gnus-bookmark-mouse-available-p): New macro.
12298         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
12299         (gnus-bookmark-bmenu-show-infos): Use it.
12300         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
12301         (gnus-bookmark-bmenu-hide-infos): Ditto.
12302         (gnus-bookmark-remove-properties): New function.
12303         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
12304         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
12305         (gnus-bookmark-write-file): Bind coding-system-for-write.
12306         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
12307         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
12308         group before selecting it.
12309         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
12310         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
12311         quit-window if it is not available; use gnus-mouse-2 and bind it to
12312         gnus-bookmark-bmenu-select-by-mouse.
12313         (gnus-bookmark-show-details): Remove unused variable `details-list'.
12314         (gnus-bookmark-bmenu-select-by-mouse): New function.
12315
12316 2006-08-13  Romain Francoise  <romain@orebokech.com>
12317
12318         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
12319         space.
12320
12321 2006-08-10  Romain Francoise  <romain@orebokech.com>
12322
12323         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
12324         (dns-mode-soa-auto-increment-serial): New user option.
12325         (dns-mode-soa-maybe-increment-serial): New function.
12326         (dns-mode): Add the latter to `write-contents-functions'.
12327
12328 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12329
12330         * compface.el (uncompface): Use binary rather than raw-text-unix.
12331
12332 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12333
12334         * compface.el (uncompface): Make sure the eol conversion doesn't take
12335         place when communicating with the external programs.
12336         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12337
12338 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12339
12340         * nnheader.el (nnheader-insert-head): Fix typo in comment.
12341
12342 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12343
12344         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
12345         Make it more robust by parsing author and date independently.
12346
12347 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12348
12349         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
12350
12351 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
12352
12353         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
12354         first matching secret key.
12355         (mml2015-epg-encrypt): Ditto.
12356
12357         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
12358         first matching secret key.
12359         (mml1991-epg-encrypt): Ditto.
12360
12361         * mml2015.el (mml2015-encrypt-to-self): New user option.
12362         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
12363         mml2015-epg-encrypt-to-self is set.
12364
12365         * mml1991.el (mml1991-encrypt-to-self): New variable.
12366         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
12367         mml1991-epg-encrypt-to-self is set.
12368
12369         * mml2015.el (mml2015-signers): New user option.
12370         (mml2015-epg-sign): Reflect the value of mml2015-signers.
12371         (mml2015-epg-encrypt): Allow to select signing keys.
12372
12373         * mml1991.el (mml1991-signers): New variable.
12374         (mml1991-epg-sign): Reflect the value of mml1991-signers.
12375         (mml1991-epg-encrypt): Allow to select signing keys.
12376
12377 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12378
12379         * nnheader.el (nnheader-insert-head): Make it work even if the file
12380         uses CRLF for the line-break code.
12381
12382 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
12383
12384         * mml2015.el: Require mml-sec instead of password.
12385         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
12386         (mml2015-cache-passphrase): Inherit the default value from
12387         mml-secure-cache-passphrase.
12388         (mml2015-passphrase-cache-expiry): Inherit the default value from
12389         mml-secure-passphrase-cache-expiry.
12390
12391         * mml1991.el: Require mml-sec instead of password.
12392         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
12393         (mml1991-cache-passphrase): Inherit the default value from
12394         mml-secure-cache-passphrase.
12395         (mml1991-passphrase-cache-expiry): Inherit the default value from
12396         mml-secure-passphrase-cache-expiry.
12397
12398         * mml-sec.el: Require password.
12399         (mml-secure-verbose): New user option.
12400         (mml-secure-cache-passphrase): New user option.
12401         (mml-secure-passphrase-cache-expiry): New user option.
12402
12403 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
12404
12405         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
12406         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
12407         andreas@altroot.de (Andreas Vögele).
12408
12409         FIXME: Use `tiny change'?
12410
12411 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12412
12413         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
12414         workaround for the url package included with Emacs.
12415
12416         * nnweb.el (nnweb-google-create-mapping): Update regexp.
12417
12418 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12419
12420         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
12421         correctly.  This fixes a bug caused by the 2006-05-12 change.
12422
12423 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
12424
12425         * nnmail.el (nnmail-article-group): If splitting raises an error, give
12426         some information about the error when saying that the `bogus' mail
12427         group will be used.
12428
12429 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
12430
12431         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
12432         string.
12433
12434 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
12435
12436         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
12437
12438 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12439
12440         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
12441
12442 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
12443
12444         * mml1991.el (mml1991-function-alist): Add epg.
12445         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
12446         (mml1991-epg-encrypt): New functions.
12447
12448 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
12449
12450         * mml2015.el (mml2015-verbose): New variable.
12451         (mml2015-cache-passphrase): Ditto.
12452         (mml2015-passphrase-cache-expiry): Ditto.
12453         (mml2015-function-alist): Add epg.
12454         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
12455         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
12456         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
12457         New functions.
12458
12459 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12460
12461         * message.el (message-cite-original-1): Preserve region when removing
12462         quoted text due to X-No-Archive in order to avoid bogus attribution
12463         when citing multiple messages.
12464
12465 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12466
12467         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
12468         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
12469
12470 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
12471
12472         * gnus-diary.el (gnus-user-format-function-d)
12473         (gnus-user-format-function-D): Autoload.
12474
12475         * imap.el (Commentary): Fix typo.
12476
12477         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
12478         2006-04-22 contribution.
12479
12480 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12481
12482         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
12483         It didn't really fix the bogosity I'm seeing with solid web groups.
12484
12485 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12486
12487         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
12488         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
12489         created using server names.  If we use the feature without declaring
12490         it, Gnus does not properly manage server and group state.
12491
12492         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
12493         bound.
12494
12495 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12496
12497         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
12498         looking up the method using GROUP's prefix before inventing a new one.
12499         It is used on killed/unknown groups in various places where returning
12500         an all-new method isn't expected by the caller.
12501
12502         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
12503         and match semantics of gnus-group-real-prefix.
12504
12505 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
12506
12507         * nnmail.el (nnmail-broken-references-mailers): New variable.
12508         (nnmail-ignore-broken-references): New function generalizing
12509         nnmail-fix-eudora-headers.
12510         (nnmail-fix-eudora-headers): Now obsolete.
12511
12512         * gnus-art.el (gnus-button-handle-custom):
12513         Support `customize-apropos*'.
12514
12515 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12516
12517         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
12518
12519         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
12520         articles.
12521
12522 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
12523
12524         * message.el (message-cite-reply-above): New variable.
12525         (message-yank-original): Use it.
12526
12527 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12528
12529         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
12530
12531 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
12532
12533         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
12534         as read.
12535
12536         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
12537
12538 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
12539
12540         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
12541         (gnus-bookmark-default-file): Use gnus-directory.
12542         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
12543         Remove "*" in doc string.
12544         (gnus-bookmark-write-file): Simplify.
12545         (gnus-bookmark-maybe-sort-alist): Use `when'.
12546         (gnus-bookmark-get-bookmark): Fix typo in doc string.
12547         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
12548         Add FIXME about Emacs 21 and XEmacs compatibility.
12549         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
12550         compatibility.
12551         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
12552         compatibility.
12553         (gnus-bookmark-menu-heading): Fix version.
12554
12555 2006-06-19  Bastien Guerry  <bzg@altern.org>
12556
12557         * gnus-bookmark.el: New file.
12558
12559 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12560
12561         * message.el (message-syntax-checks): Doc fix.
12562
12563 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12564
12565         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
12566         unsubscribed groups as if they were killed ones.  It causes duplicate
12567         entries in gnus-newsrc-alist.
12568
12569 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12570
12571         * message.el (message-syntax-checks): Doc fix.
12572         (message-send-mail): Add check for continuation headers.
12573         (message-check-news-header-syntax): Fix regexp used to check for
12574         continuation headers.
12575
12576 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12577
12578         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
12579
12580 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
12581
12582         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
12583
12584 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12585
12586         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
12587         default-truncate-lines.
12588
12589 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12590
12591         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
12592         to fill the utf-8 entry.
12593
12594         * lpath.el: Fbind unicode-precedence-list.
12595
12596 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12597
12598         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
12599
12600 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
12601
12602         * gnus-agent.el (directory-files-and-attributes): Move all the way
12603         forward (the third and final move).
12604         (gnus-agent-read-agentview): Trap reconstruction errors due to
12605         nonexistent directory.  Handle by returning nil.
12606
12607 2006-05-30  Didier Verna  <didier@xemacs.org>
12608
12609         * message.el (message-dont-reply-to-names): Update the custom type.
12610         * message.el (message-dont-reply-to-names): New defsubst: potentially
12611         convert a list of regexps into a single one.
12612         * message.el (message-get-reply-headers): Use it.
12613         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
12614
12615 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12616
12617         * gnus-agent.el (directory-files-and-attributes): Move forward.
12618
12619 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
12620
12621         * gnus-ml.el (gnus-mailing-list-subscribe)
12622         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
12623         (gnus-mailing-list-message): Fix doc strings.
12624
12625 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12626
12627         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
12628         of doing it manually.
12629
12630 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
12631
12632         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
12633         comment.
12634
12635 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
12636
12637         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
12638         (gnus-agent-read-agentview): Fix handling of end-of-file error.
12639         (gnus-agent-read-local): All symbols allocated in my-obarray.
12640         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
12641         (gnus-agent-regenerate-group): Check numeric names to see if they are
12642         messages or groups.
12643         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
12644         better way of do this...)
12645
12646         * gnus-cache.el (gnus-agent-total-fetched-for):
12647         Ignore 'dummy.group' (there should be a better way of do this...)
12648
12649 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12650
12651         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
12652         (gnus-saved-headers): Ditto.
12653         (gnus-default-article-saver): Mention functions may have properties.
12654         (gnus-article-save): Override gnus-save-all-headers and
12655         gnus-saved-headers by :headers property which saver function may have.
12656         (gnus-summary-save-in-file): Add :headers property.
12657         (gnus-summary-write-to-file): Ditto.
12658
12659         * gnus-sum.el (gnus-summary-save-article): Bind
12660         gnus-prompt-before-saving to t when saving many articles in a file;
12661         always show all headers.
12662
12663         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
12664
12665 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
12666
12667         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
12668         marks.
12669
12670         * message.el (message-indent-citation): Add optional arguments to allow
12671         using it outside of message buffers.
12672
12673         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
12674         (gnus-article-treat-unfold-headers): Use it.
12675         (gnus-article-truncate-lines): New variable.
12676         (gnus-article-mode): Use it.
12677         (gnus-article-toggle-truncate-lines): New function.
12678
12679         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
12680         Add gnus-article-toggle-truncate-lines.
12681
12682         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
12683         coding system in XEmacs, use binary.
12684
12685 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12686
12687         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
12688         after-load-alist.
12689
12690         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
12691         this function should save decoded articles.
12692         (gnus-summary-write-to-file): Use property to specify this function
12693         should save decoded articles and specify gnus-summary-save-in-file
12694         should be used to save articles other than the first one when saving
12695         many articles.
12696         (gnus-summary-save-body-in-file): Use property to specify this
12697         function should save decoded articles.
12698         (gnus-summary-write-body-to-file): Use property to specify this
12699         function should save decoded articles and specify
12700         gnus-summary-save-body-in-file should be used to save articles other
12701         than the first one when saving many articles.
12702
12703         * gnus-sum.el (gnus-summary-save-article): Simplify.
12704
12705 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12706
12707         * gnus-art.el (gnus-default-article-saver):
12708         Add gnus-summary-write-body-to-file.
12709         (gnus-article-save-coding-system): Don't use coding system object
12710         in XEmacs.
12711         (gnus-read-save-file-name): Add optional `dir-var' argument which
12712         specifies directory in which files are saved; work even if optional
12713         `variable' argument is not specified.
12714         (gnus-summary-write-to-file): Read file name.
12715         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
12716         (gnus-summary-write-body-to-file): New function.
12717
12718         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
12719         (gnus-summary-local-variables): Add it.
12720         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
12721         (gnus-summary-save-article): Remove optional `decode' argument;
12722         determine whether to decode articles by the value of
12723         gnus-default-article-saver; when saving many files using
12724         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
12725         it first and use gnus-summary-save-in-file or
12726         gnus-summary-save-body-in-file thereafter unless
12727         gnus-prompt-before-saving is always; move point to article which
12728         will be saved.
12729         (gnus-summary-save-article-file): Revert.
12730         (gnus-summary-write-article-file): Revert.
12731         (gnus-summary-save-article-body-file): Revert.
12732         (gnus-summary-write-article-body-file): New function.
12733
12734 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12735
12736         * gnus-art.el (gnus-default-article-saver): Doc fix.
12737         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
12738         from gnus-summary-save-article-coding-system, and default to a
12739         certain coding system.
12740         (gnus-output-to-file): Add coding cookie and encode text according
12741         to gnus-article-save-coding-system; don't use mm-append-to-file.
12742
12743         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
12744         gnus-art.el and rename to gnus-article-save-coding-system.
12745         (gnus-summary-save-article): Require gnus-art; don't show all
12746         headers if it decodes articles; don't add coding cookie here;
12747         don't bind mm-text-coding-system-for-write.
12748         (gnus-summary-save-article-file): Save decoded articles.
12749         (gnus-summary-write-article-file): When saving many files, use
12750         gnus-summary-write-to-file first and gnus-summary-save-in-file
12751         thereafter unless gnus-prompt-before-saving is always.
12752         (gnus-summary-save-article-body-file): Save decoded articles.
12753
12754         * lpath.el: Fbind select-safe-coding-system for XEmacs.
12755
12756 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
12757
12758         * nnrss.el (nnrss-check-group): Bind hash-index.
12759
12760 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
12761
12762         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
12763         its hash index.  Store this hash in `nnrss-group-data'.
12764         (nnrss-read-group-data): Update accordingly.
12765
12766 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
12767
12768         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
12769         entry.
12770
12771         * gnus-sum.el (gnus-summary-make-menu-bar):
12772         Add gnus-article-browse-html-article.
12773
12774 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
12775
12776         * gnus-sum.el (gnus-summary-mime-map):
12777         Add gnus-article-browse-html-article.
12778
12779         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
12780
12781 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
12782
12783         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
12784         suitable coding systems in customize.
12785
12786 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
12787
12788         * mail-source.el (mail-sources): Fix custom type.
12789
12790 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
12791
12792         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
12793         (gnus-summary-expire-articles-now): Shorten prompt.
12794
12795         * gmm-utils.el (wid-edit): Require.
12796         (defun-gmm): Rename from `gmm-defun-compat'.
12797         (gmm-image-search-load-path): Use it.
12798         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
12799
12800 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12801
12802         * gnus-sum.el (gnus-summary-save-article-coding-system):
12803         New variable.
12804         (gnus-summary-save-article): Add optional `decode' argument.
12805         If it is set and gnus-summary-save-article-coding-system is non-nil,
12806         save decoded article.
12807         (gnus-summary-write-article-file): Save decoded article if
12808         gnus-summary-save-article-coding-system is non-nil.
12809
12810         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
12811         type.
12812
12813 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12814
12815         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
12816
12817 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12818
12819         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
12820         first to test gnus-single-article-buffer which may be buffer-local.
12821
12822         * gnus-sum.el (gnus-summary-setup-buffer):
12823         Make gnus-single-article-buffer buffer-local and nil in ephemeral
12824         group; make gnus-article-buffer, gnus-article-current, and
12825         gnus-original-article-buffer always buffer-local.
12826         (gnus-summary-exit): Kill article buffer belonging to ephemeral
12827         group.
12828         (gnus-handle-ephemeral-exit): Don't move to next summary line.
12829
12830 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
12831
12832         * nnml.el (nnml-request-compact-group): Compressed files might not
12833         have .gz extension.
12834
12835 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12836
12837         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
12838         (mm-copy-to-buffer): Use with-current-buffer.
12839         (mm-display-part): Simplify.
12840         (mm-inlinable-p): Add optional arg `type'.
12841
12842 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12843
12844         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
12845         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
12846         Try harder to show the attachment internally or externally using
12847         gnus-mime-view-part-as-type.
12848
12849 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
12850
12851         * message.el (message-from-style, message-signature-separator)
12852         (message-user-organization-file, message-send-mail-function)
12853         (message-citation-line-function, message-yank-prefix)
12854         (message-indent-citation-function, message-signature)
12855         (message-signature-file, message-signature-insert-empty-line):
12856         Remove autoloads.
12857
12858         * gnus-art.el (gnus-buttonized-mime-types):
12859         Remove "multipart/signed".  Revert 2006-04-26 change.
12860
12861 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12862
12863         * gnus.el (gnus-version-number): Bump version.
12864
12865 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
12866
12867         * gnus.el: No Gnus v0.5 is released.
12868
12869 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12870
12871         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
12872         fetching articles by message-id.
12873
12874 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12875
12876         * message.el (hashcash): Require hashcash as normal.
12877
12878         * ecomplete.el (ecomplete-highlight-match-line):
12879         Use point-at-eol.
12880         (ecomplete-highlight-match-line): Use `highlight', because that
12881         face exists in both Emacs and XEmacs.
12882
12883         * message.el (message-display-abbrev): Use point-at-bol.
12884
12885         * mail-source.el: Don't require timer/timer-funcs.
12886
12887         * gnus-async.el: Ditto.
12888
12889         * password.el: Ditto.
12890
12891         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
12892
12893         * mm-url.el: Ditto.
12894
12895         * gnus-xmas.el: Don't require timer-funcs.
12896
12897         * mm-util.el: Require timer/timer-funcs.
12898
12899 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12900
12901         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
12902         Close.
12903
12904 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12905
12906         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
12907         unibyte after clear-decrypt function runs.
12908
12909         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
12910         returns as a unibyte string.
12911
12912 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12913
12914         * lpath.el: Revert.
12915
12916         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
12917         (pgg-gpg-process-sentinel): Revert.
12918
12919         * pgg-pgp.el (pgg-pgp-process-region): Revert.
12920         (pgg-pgp-lookup-key): Revert.
12921
12922         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
12923         (pgg-pgp5-lookup-key): Revert.
12924
12925         * pgg.el (pgg-fetch-key): Revert.
12926
12927 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12928
12929         * lpath.el: Fbind string-as-multibyte for XEmacs.
12930
12931         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
12932         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
12933         (mml1991-pgg-encrypt): Ditto.
12934
12935         * pgg-gpg.el (pgg-string-to-multibyte): New function.
12936         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
12937         a multibyte buffer.
12938
12939         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
12940         (pgg-pgp-lookup-key): Ditto.
12941
12942         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
12943         (pgg-pgp5-lookup-key): Ditto.
12944
12945         * pgg.el (pgg-fetch-key): Ditto.
12946
12947 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
12948
12949         * message.el (message-user-organization-file): Check several
12950         locations of the organization file.
12951
12952         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
12953         Add gnus-article-view-part-as-type.
12954
12955         * gnus-art.el (gnus-article-view-part-as-type): New function.
12956
12957         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
12958         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
12959
12960         * mml.el: Simplify autoload.
12961         (mml-mode): defvar dnd-protocol-alist instead of using
12962         symbol-value.
12963         (mml-default-directory): New variable.
12964         (mml-minibuffer-read-file): Use it.
12965         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
12966
12967         * message.el (message-citation-line-format): New variable.
12968         (message-insert-formated-citation-line): New function.
12969         (message-citation-line-function):
12970         Add `message-insert-formated-citation-line' to custom type.
12971
12972         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
12973         to doc string.
12974
12975         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
12976         depending on mm-verify-option.
12977
12978 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12979
12980         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
12981         binding pgg-* variables; reimplement the section which prevents
12982         MIME header from being signed.
12983         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
12984         pgg-text-mode; remove a blank line at the top of body.
12985
12986         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
12987         lines at the top of body; use gnus-newsgroup-charset if there's no
12988         Charset header.
12989
12990 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12991
12992         * message.el (message-self-insert-commands): Doc fix.
12993
12994         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
12995         (mm-uu-pgp-encrypted-test): Ditto.
12996         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
12997         between header and body; return application/pgp-encrypted handle
12998         if decryption failed; decode decrypted body by charset.
12999
13000         * mm-decode.el (mm-automatic-display): Don't make application/pgp
13001         element match to application/pgp-*.
13002
13003 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
13004
13005         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
13006         HTML.
13007
13008 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13009
13010         * mail-source.el (mail-source-call-script): Message the error
13011         string.
13012
13013 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13014
13015         * gnus-util.el (gnus-byte-compile): Use it.
13016
13017 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
13018
13019         * gnus-util.el (kill-empty-logs): New function.
13020
13021 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13022
13023         * message.el (message-mail-alias-type): Doc fix.
13024         (message-mail-alias-type-p): New function.
13025         (message-send): Use it.
13026         (message-mode): Ditto.
13027         (message-strip-forbidden-properties): Ditto.
13028
13029         * ecomplete.el (ecomplete-database-file-coding-system):
13030         New variable.
13031         (ecomplete-save): Use it.
13032         (ecomplete-setup): Use it.
13033
13034 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13035
13036         * message.el (message-self-insert-commands): New variable.
13037         (message-strip-forbidden-properties): Use it.
13038
13039 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13040
13041         * message.el (message-put-addresses-in-ecomplete): Use a regexp
13042         that doesn't make XEmacs choke.
13043
13044 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
13045
13046         * gnus-util.el (gnus-replace-in-string):
13047         Prefer replace-regexp-in-string over of replace-in-string.
13048
13049 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13050
13051         * gnus-util.el (gnus-select-frame-set-input-focus):
13052         Use select-frame-set-input-focus if it is available in XEmacs; use
13053         definition defined in Emacs 22 for old Emacsen.
13054
13055         * dgnushack.el: Autoload unmorse-region for XEmacs.
13056
13057         * lpath.el: Bind cursor-in-non-selected-windows and
13058         select-frame-set-input-focus for XEmacs.
13059
13060 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13061
13062         * mm-view.el (mm-inline-text): Use equal instead of equalp.
13063
13064 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
13065
13066         * gnus-registry.el (gnus-registry-cache-save): Remove text
13067         properties when saving via the temp buffer.
13068
13069 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
13070
13071         * message.el (message-generate-hashcash): Honor custom type.
13072
13073 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13074
13075         * message.el (message-generate-hashcash): Default to non-nil when
13076         hashcash is found.
13077
13078         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
13079         (gnus-refer-thread-limit): Increase default to 500.
13080
13081         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
13082
13083         * flow-fill.el (fill-flowed): Allow delete-space.
13084
13085 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
13086
13087         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13088         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
13089         Remove autoloads.
13090
13091 2006-04-18  Simon Josefsson  <jas@extundo.com>
13092
13093         * message.el (message-generate-hashcash): Default to.
13094
13095 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13096
13097         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
13098         concatenating segments rather than before concatenating them.
13099
13100 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
13101
13102         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
13103
13104 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13105
13106         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
13107
13108         * message.el (message-forward-make-body-plain):
13109         Allow message-forward-ignored-headers to be a list.
13110         (message-remove-ignored-headers): Factor out into function.
13111         (message-forward-make-body-mml): Use it.
13112
13113         * imap.el (imap-quote-specials): New function.
13114         (imap-login-auth): Quote specials.
13115
13116         * rfc2231.el (rfc2231-parse-string): Remove dead code.
13117         (rfc2231-parse-string): Allow concatanation of parameters that
13118         aren't contiguous.  The test case is
13119           (mail-header-parse-content-type "message/external-body;
13120             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
13121             access-type=LOCAL-FILE;
13122             name*1*=plugh%2fhello-sailor%2fbing.pdf")
13123
13124 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13125
13126         * nntp.el (nntp-accept-process-output): Return the value of
13127         `nnheader-accept-process-output'.
13128
13129 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13130
13131         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
13132         (gnus-button-alist): Recognize more diff formats.
13133         (gnus-button-patch): Strip directory.
13134
13135 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
13136
13137         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
13138         Emacs 22 when setting focus.
13139
13140 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13141
13142         * gnus-art.el (gnus-article-treat-types): Do treatment of
13143         text/x-verbatim parts.
13144         (gnus-button-patch): New command.
13145
13146         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
13147         addresses that contain invalid characters.
13148
13149 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13150
13151         * message.el (message-put-addresses-in-ecomplete):
13152         Use gnus-replace-in-string.
13153         (message-is-yours-p): Use the more correct
13154         mail-header-parse-address instead of
13155         mail-extract-address-components.
13156         (message-put-addresses-in-ecomplete): Fix typo.
13157
13158         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
13159         keystroke.
13160
13161         * gnus-art.el (gnus-treatment-function-alist): Change order of
13162         newsgroups/generic header folding to avoid double-folding.
13163
13164         * message.el (message-hidden-headers): Add X-Draft-From.
13165
13166         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
13167         New command.
13168         (gnus-summary-repeat-search-article-backward): New command.
13169
13170         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
13171         groups in the parent topic.
13172
13173 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
13174
13175         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
13176         (spam-extra-header-to-number): Return the CRM114 number as a
13177         number instead of a string.
13178
13179 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13180
13181         * gnus-art.el (gnus-face-properties-alist): Move here from
13182         gnus-fun.
13183
13184         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
13185
13186 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13187
13188         * message.el (message-strip-forbidden-properties): Only display on
13189         self-insert-command.
13190
13191         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
13192         reindent.
13193         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
13194
13195 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
13196
13197         * smiley.el (smiley-style): Fix typo.
13198
13199 2006-03-23  Kenichi Handa  <handa@m17n.org>
13200
13201         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
13202         instead of set-buffer-multibyte.
13203
13204 2006-03-23  Kenichi Handa  <handa@m17n.org>
13205
13206         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
13207         buffer and then decode the buffer text if necessary.
13208         (rfc2231-encode-string): Be sure to work on multibyte buffer at
13209         first, and after mm-encode-body, change the buffer to unibyte.
13210
13211 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13212
13213         * hashcash.el (hashcash-insert-payment-async-2):
13214         Use message-goto-eoh instead of doing it manually.
13215         (mail-add-payment): Use message-narrow-to-header instead of trying
13216         to do the same itself.
13217
13218         * message.el (message-hidden-headers): Add Face.
13219
13220         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
13221         reparenting code.
13222         (gnus-summary-reparent-children): Refactored out code.
13223         (gnus-summary-thread-map): New keystroke.
13224         (gnus-summary-reparent-children): Make into command.
13225
13226         * smiley.el (smiley-style): Default to `medium' if using a large
13227         font.
13228
13229         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
13230         does it itself.
13231
13232         * message.el (message-point-in-header-p): Simplify definition.
13233
13234 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13235
13236         * nnagent.el (nnagent-request-set-mark): Silence log file
13237         writing.
13238         (nnagent-request-set-mark): Use write-region instead of
13239         append-to-file.
13240
13241         * gnus-sum.el (gnus-read-header): Fudge article number if using a
13242         strange select method.
13243
13244         * ecomplete.el (ecomplete-display-matches): Get highlightling
13245         right.
13246         (ecomplete-display-matches): Use literals.
13247         (ecomplete-display-matches): Disable message logging.
13248
13249         * message.el (message-display-abbrev): Small optimization.
13250
13251         * ecomplete.el (ecomplete-display-matches): Allow automatic
13252         display.
13253
13254         * message.el (message-strip-forbidden-properties):
13255         Display abbrevs.
13256         (message-display-abbrev): Get automatic display right.
13257
13258         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
13259         keystrokes.
13260
13261 2006-04-13  Romain Francoise  <romain@orebokech.com>
13262
13263         TODO: Backport to v5-10!
13264
13265         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
13266         Move here (and rename) from gnus-registry.el.
13267
13268         * gnus-registry.el: Require gnus-util.
13269         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
13270
13271 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13272
13273         * gnus-group.el (gnus-group-catchup-current):
13274         Change if-then-else-if-then-else into cond.
13275         (gnus-group-catchup): Indent.
13276         (group-name-at-point): New function.
13277         (gnus-fetch-group): Provide default from thing at point.
13278
13279 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13280
13281         * message.el (message-display-abbrev): Fix regexp.
13282
13283         * ecomplete.el (ecomplete-highlight-match-line):
13284         Reimplement choosing.
13285         (ecomplete-highlight-match-line): Fix up code rewrite, remove
13286         dead variables.
13287
13288         * message.el (message-newline-and-indent): Remove debugging.
13289         (message-display-abbrev): Use new implementation.
13290
13291 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
13292
13293         * gnus-art.el (gnus-article-mode):
13294         Set cursor-in-non-selected-windows to nil.
13295
13296         * smiley.el: Revert previous change.
13297         (smiley-data-directory): defvar it before using it in the
13298         defcustom of `smiley-style'.
13299
13300 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13301
13302         * message.el (message-newline-and-indent): New function.
13303
13304         * ecomplete.el: Implement more bits.
13305
13306         * message.el (message-put-addresses-in-ecomplete): Clean up the
13307         string.
13308
13309         * ecomplete.el (ecomplete-add-item): Chop off decimals.
13310
13311         * gnus-sum.el (gnus-summary-save-parts):
13312         Bind gnus-summary-save-parts-counter and use it to make unique file
13313         names.
13314
13315         * gnus-art.el (gnus-ignored-headers): Add some more headers.
13316
13317         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
13318         parameter to say whether to actually parse the individual
13319         addresses.
13320
13321         * message.el (message-put-addresses-in-ecomplete): New function.
13322         (ecomplete): Require.
13323         (message-mail-alias-type): Add ecomplete as an option.
13324
13325 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
13326
13327         * flow-fill.el (fill-flowed): Remove trailing space from blank
13328         quoted lines.
13329
13330 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13331
13332         * smiley.el (smiley-style): Move definition later to avoid a
13333         compilation warning.
13334
13335 2006-04-12  Kenichi Handa  <handa@m17n.org>
13336
13337         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
13338         buffer and then decode the buffer text if necessary.
13339         (rfc2231-encode-string): Be sure to work on multibyte buffer at
13340         first, and after mm-encode-body, change the buffer to unibyte.
13341         Use mm-disable-multibyte instead of set-buffer-multibyte.
13342
13343 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13344
13345         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
13346         Content-Type header instead of Content-Disposition header.
13347         (gnus-mime-inline-part): Ditto.
13348         (gnus-mime-view-part-as-charset): Ignore charset that the part
13349         specifies.
13350
13351         * mm-decode.el (mm-display-part): Work with external parts and
13352         usual parts similarly.
13353
13354         * mm-extern.el (mm-inline-external-body): Use mm-display-part
13355         instead of gnus-display-mime.
13356
13357         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
13358         instead of with-temp-buffer.
13359
13360         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
13361         tag to summarized topics part in order to encode non-ASCII text.
13362
13363 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
13364
13365         * smiley.el (smiley-style): New variable.
13366         (smiley-directory): New function.
13367         (smiley-data-directory): Derive from `smiley-style' using
13368         `smiley-directory'.
13369         (smiley-regexp-alist): Add new entries.
13370
13371         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
13372         (gnus-article-browse-delete-temp): Add :version.
13373
13374 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
13375
13376         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
13377         the sieve region.
13378
13379 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13380
13381         * gnus.el (gnus-version-number): Bump version.
13382
13383 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
13384
13385         * gnus.el: No Gnus v0.4 is released.
13386
13387 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13388
13389         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
13390         layout.
13391
13392         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
13393         unknown charset.
13394
13395         * message.el (message-header-synonyms): Add Original-To to the
13396         default.
13397
13398         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
13399         optional parameter.
13400
13401 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
13402
13403         * gnus-fun.el (gnus): Require it for gnus-directory.
13404
13405 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13406
13407         * gnus-fun.el (gnus-face-properties-alist): Add :version.
13408
13409 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
13410
13411         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
13412
13413 2006-04-05  Simon Josefsson  <jas@extundo.com>
13414
13415         * password.el (password-reset): New function.
13416
13417 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
13418
13419         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
13420         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
13421
13422 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
13423
13424         * nnweb.el (nnweb-google-create-mapping): Update regexp.
13425         Some whitespace was matched into the url, which broke browsing hits
13426         > 100 when mm-url-use-external was nil.
13427
13428 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
13429
13430         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
13431         Check gnus-extra-headers for 'Newsgroups.
13432
13433         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
13434         bound.
13435
13436 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
13437
13438         * pgg-gpg.el: Clean up process buffers every time gpg processes
13439         complete.
13440
13441 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
13442
13443         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
13444         doc string.
13445
13446 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
13447
13448         * pgg-gpg.el (pgg-gpg-process-filter)
13449         (pgg-gpg-wait-for-completion): Check if buffer is alive.
13450
13451         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
13452         lines, temporary fix.
13453
13454 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
13455
13456         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
13457
13458 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
13459
13460         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
13461         default-enable-multibyte-characters.  This reverts the change from
13462         revision 6.17 which is no longer necessary because the passphrase
13463         is sent separately now.  GnuPG messages are unreadable under
13464         multibyte locales with default-enable-multibyte-characters set to
13465         nil.
13466
13467 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
13468
13469         * message.el (message-tool-bar-gnome): Move "spell".
13470
13471 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
13472
13473         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
13474         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
13475         instead.
13476
13477 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
13478
13479         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
13480         Improve newsgroups handling for NNTP overviews which don't include
13481         Newsgroups.
13482
13483 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
13484
13485         * message.el (message-resend): Bind message-generate-hashcash to nil.
13486
13487 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
13488
13489         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
13490         when searching for already-paid recipients.
13491
13492 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
13493
13494         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
13495         passphrases when it is not needed.
13496         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
13497         passphrase stuff from gpg, should only be necessary when you use
13498         gpg with a smartcard.
13499
13500 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13501
13502         * mml.el (mml-insert-mime): Ignore cached contents of
13503         message/external-body part.
13504
13505         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
13506         (mm-insert-part): Ditto.
13507
13508 2006-03-23  Simon Josefsson  <jas@extundo.com>
13509
13510         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
13511         Reiner.
13512         (pgg-gpg-use-agent-p): Use it again.
13513
13514 2006-03-23  Simon Josefsson  <jas@extundo.com>
13515
13516         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
13517         older emacsen.
13518         (pgg-gpg-use-agent-p): Don't use it.
13519
13520 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
13521
13522         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
13523         if we can.
13524
13525 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
13526
13527         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
13528         (pgg-gpg-update-agent): New function.
13529         (pgg-gpg-use-agent-p): New function.
13530         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
13531         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
13532         (pgg-gpg-sign-region): Use it.
13533
13534 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13535
13536         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
13537         Reported by Ralf Wachinger <rwachinger@gmx.de>.
13538
13539 2006-03-21  Simon Josefsson  <jas@extundo.com>
13540
13541         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
13542         <wilde@sha-bang.de>.
13543         (pgg-gpg-use-agent): New variable.
13544         (pgg-gpg-process-region): Use it.
13545         (pgg-gpg-encrypt-region): Likewise.
13546         (pgg-gpg-encrypt-symmetric-region): Likewise.
13547         (pgg-gpg-decrypt-region): Likewise.
13548         (pgg-gpg-sign-region): Likewise.
13549         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
13550
13551 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
13552
13553         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
13554
13555         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
13556         Add comment on version.
13557
13558 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
13559
13560         * smiley.el: Add missing test smiley.
13561
13562 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13563
13564         * mm-decode.el (mm-with-part): New macro.
13565         (mm-get-part): Use it; work with message/external-body as well.
13566         (mm-save-part): Treat name and filename equally.
13567
13568         * mm-extern.el (mm-extern-cache-contents): New function.
13569         (mm-inline-external-body): Use it; force the part to be displayed;
13570         move undisplayer added to the cached handle to the parent.
13571
13572         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
13573         (gnus-mime-view-part-as-type): Work with message/external-body.
13574
13575         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
13576
13577 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
13578
13579         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
13580         images in image-load-path.  [Sync with image.el, revision 1.60, in
13581         Emacs.]
13582
13583 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
13584
13585         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
13586         path rather than symbol.  Always return list of directories.
13587         Guarantee that image directory comes first.  [Sync with image.el,
13588         revision 1.59, in Emacs.]
13589
13590         * message.el (message-make-tool-bar): Adjust to new API of
13591         `gmm-image-load-path-for-library'.
13592
13593         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
13594
13595         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
13596
13597 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
13598
13599         * gnus-art.el (gnus-article-only-boring-p):
13600         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
13601         intangible text.
13602         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
13603
13604 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
13605
13606         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
13607         Use `defun' instead of `gmm-defun-compat'.
13608
13609 2006-03-14  Simon Josefsson  <jas@extundo.com>
13610
13611         * message.el (message-unique-id): Don't use message-number-base36
13612         if (user-uid) is a float.
13613         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
13614
13615 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13616
13617         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
13618
13619         * gnus-art.el (gnus-mime-display-single): Make sure there is an
13620         empty line between a part and a message part.
13621
13622 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
13623
13624         * smiley.el: Add more test smileys.
13625         (smiley-data-directory, smiley-regexp-alist)
13626         (gnus-smiley-file-types): Fix doc strings.
13627         (smiley-update-cache): Clear smiley-cached-regexp-alist before
13628         adding new elements.
13629         (smiley-mouse-map): Unused code.  Make it a comment.
13630
13631 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13632
13633         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
13634         scan latest NoCeM messages instead of old ones.
13635         (gnus-nocem-check-article): Fix regexps so as to match to PGP
13636         delimiters that are recently used.
13637         (gnus-nocem-load-cache): Add autoload cookie.
13638
13639         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
13640
13641         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
13642         level which is larger than gnus-use-nocem is specified.
13643
13644         * gnus-group.el (gnus-group-get-new-news): Ditto.
13645
13646 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
13647
13648         * gnus-util.el (gnus-tool-bar-update): New function.
13649
13650         * gnus-group.el (gnus-group-update-tool-bar): New variable.
13651         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
13652
13653         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
13654
13655         * gnus-group.el (gnus-group-redraw-when-idle)
13656         (gnus-group-redraw-check): Remove.
13657         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
13658
13659 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13660
13661         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
13662         if optional last element is specified in splits (FIELD VALUE...).
13663
13664 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
13665
13666         * message.el (message-make-tool-bar): Rename gmm-image-load-path
13667         to gmm-image-load-path-for-library.  Call with no-error argument.
13668         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
13669
13670         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
13671
13672         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
13673
13674         * gmm-utils.el (gmm-image-load-path): Remove alias.
13675
13676 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
13677
13678         * gmm-utils.el (gmm-image-load-path): Add alias.
13679
13680         * nnml.el (nnml-generate-nov-databases-directory): Rename from
13681         nnml-generate-nov-databases-1.
13682         (nnml-generate-nov-databases): Use it.
13683         (nnml-generate-nov-databases-directory): Document no-active
13684         argument.
13685
13686         * gmm-utils.el (gmm-image-load-path-for-library): Return single
13687         directory if path is t.  Add no-error.
13688
13689         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
13690         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
13691
13692         * gnus-art.el (gnus-article-browse-delete-temp-files):
13693         Simplify resetting gnus-article-browse-html-temp-list.
13694
13695         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
13696         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
13697         Add example to docstring.  Rename local variables.  Move error
13698         checks to default case in cond and simplify.
13699
13700 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13701
13702         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
13703         handle is multipart when calling it recursively.
13704         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
13705
13706 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
13707
13708         * nnimap.el (nnimap-request-update-info-internal): Optimize.
13709         Don't `gnus-uncompress-range' to avoid excessive memory usage.
13710
13711 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13712
13713         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
13714         is loaded.
13715
13716         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
13717         loaded.
13718
13719 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
13720
13721         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
13722         to "Emacs 23 (unicode)" in doc string.
13723
13724         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
13725         "Emacs 23 (unicode)" in comment.
13726
13727 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13728
13729         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
13730
13731         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
13732         characters 160 through 255 in Emacs 23.
13733
13734 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
13735
13736         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
13737         gnus-article-browse-html-temp.
13738         (gnus-article-browse-delete-temp): Make it customizable.
13739         Add `file'.  Adjust doc string.
13740         (gnus-article-browse-delete-temp-files): Add argument.
13741         Allow query for each file.  Adjust doc string.
13742         (gnus-article-browse-html-parts):
13743         Add `gnus-article-browse-delete-temp-files' to
13744         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
13745
13746 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
13747
13748         * gnus-art.el (gnus-article-browse-html-temp)
13749         (gnus-article-browse-delete-temp): New variables.
13750         (gnus-article-browse-delete-temp-files): New function.
13751         (gnus-article-browse-html-parts): Use it.
13752
13753 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
13754
13755         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
13756
13757         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
13758         string.
13759
13760         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
13761         gnus-summary-insert-new-articles when unplugged.
13762         Remove gnus-summary-search-article-forward.
13763
13764         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
13765         display-visual-class instead of display-color-cells.
13766
13767 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13768
13769         * dgnushack.el: Autoload customize-group for XEmacs.
13770
13771         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
13772         message/* containing non-ASCII text properly.
13773
13774 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13775
13776         * message.el: Require gmm-utils, remove autoloads.
13777         (message-tool-bar): Set default based on
13778         gmm-tool-bar-style.
13779         (message-tool-bar-gnome): Add gmm-customize-mode.
13780
13781         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
13782         gmm-tool-bar-style.
13783         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
13784
13785         * gnus-group.el (gnus-group-tool-bar): Set default based on
13786         gmm-tool-bar-style.
13787         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
13788
13789         * gmm-utils.el (gmm-image-directory): Rename variable from
13790         gmm-image-load-path.
13791         (gmm-image-load-path): Use gmm-image-directory.
13792         (gmm-customize-mode): New function.
13793         (gmm-tool-bar-style): New variable.
13794
13795         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
13796         gnus-group-redraw-line-number.
13797         (gnus-group-redraw-check): Simplify.
13798         (gnus-group-tool-bar-update): Remove redraw check.
13799         (gnus-group-make-tool-bar): Add redraw check.
13800
13801 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
13802
13803         * gnus-art.el (gnus-button): Add missing parentheses.
13804
13805 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13806
13807         * lpath.el: Fbind line-number-at-pos.
13808
13809 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13810
13811         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
13812
13813 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
13814
13815         * gnus-art.el (gnus-button): New face.
13816         (gnus-article-button-face): Use it.
13817
13818         * gnus-sum.el (gnus-summary-tool-bar-gnome):
13819         Add gnus-summary-next-page.  Re-order.
13820
13821         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
13822         next-node are now included.
13823         (gnus-group-redraw-line-number): New internal variable.
13824         (gnus-group-redraw-check): Helper function for updating the tool
13825         bar.
13826         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
13827
13828         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
13829
13830         * spam.el (spam-spamassassin-score-regexp): New internal variable.
13831         (spam-extra-header-to-number, spam-check-spamassassin-headers):
13832         Use it to match format of Spamassassin 3.0 and later.
13833         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
13834         (spam-check-bogofilter)
13835         (spam-bogofilter-register-with-bogofilter): Fix args of
13836         `gnus-error' calls.
13837
13838 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
13839
13840         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
13841         unnecessary interaction when sending queued mails.
13842         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
13843
13844 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
13845
13846         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
13847         first or last are nil.
13848
13849 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
13850
13851         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
13852
13853 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13854
13855         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
13856
13857 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13858
13859         * dns.el (query-dns): Protect more against buggy tcp output.
13860
13861 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
13862
13863         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
13864         nov.php.
13865
13866 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13867
13868         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
13869         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
13870         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
13871         output on the server side.
13872         (nnweb-google-create-mapping): Update regexps and add some
13873         progress indication.
13874
13875 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
13876
13877         * gnus-group.el (gnus-group-tool-bar-gnome):
13878         Fix gnus-agent-toggle-plugged.  Re-order icons.
13879         (gnus-group-tool-bar-gnome):
13880         Add gnus-group-{prev,next}-unread-group.
13881         (gnus-group-tool-bar-gnome): Re-order icons.
13882
13883         * gnus-sum.el (gnus-summary-tool-bar-gnome):
13884         Move gnus-summary-insert-new-articles.
13885
13886         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
13887         Fix comments.
13888
13889         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
13890         also available in Emacs 21.3.
13891
13892         * message.el (message-fix-before-sending): Change "Emacs 22" to
13893         "Emacs 23 (unicode)" in comment.
13894
13895         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
13896         "Emacs 23 (unicode)" in comment.
13897
13898         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
13899         comment.
13900         (mm-coding-system-p): Add comment about no-MULE XEmacs.
13901
13902         * mm-view.el (mm-fill-flowed): Add :version.
13903
13904 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13905
13906         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
13907         and load-path.
13908
13909 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
13910
13911         * message.el: Autoload gmm-image-load-path.
13912         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
13913         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
13914         consitency.
13915
13916         * gmm-utils.el (gmm-image-load-path): Also search in
13917         "../etc/images".  Don't set gmm-image-load-path if we don't find
13918         the image.
13919
13920 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13921
13922         * gmm-utils.el (gmm-image-load-path): Don't make
13923         `gmm-image-load-path' include subdirectories which the second arg
13924         `image' might specify.
13925
13926         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
13927         subdirectory to icon file names.
13928
13929         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
13930
13931 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
13932
13933         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
13934         gmm-image-load-path calls.
13935
13936         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
13937
13938         * message.el (message-make-tool-bar): Ditto.
13939
13940         * mml.el (mml-preview): Add comment concerning tool bar icons.
13941
13942         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
13943         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
13944
13945         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
13946         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
13947
13948         * message.el (message-tool-bar-gnome): Use new icon names.
13949         (message-make-tool-bar): Use `gmm-image-load-path'.
13950
13951         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
13952         New functions from MH-E.
13953         (gmm-image-load-path): New variable from MH-E.
13954         (gmm-image-load-path): New function from MH-E.  Add arguments
13955         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
13956         *-image-load-path-called-flag.
13957
13958 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
13959
13960         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
13961
13962 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
13963
13964         * nnimap.el (nnimap-request-move-article): Change folder back to
13965         source group before deleting.
13966
13967 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
13968
13969         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
13970
13971         * gnus-art.el (mm-url-insert-file-contents-external):
13972         Autoload mm-url.
13973
13974         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
13975
13976 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13977
13978         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
13979         coding system which mm-charset-to-coding-system returns for a
13980         given charset is valid.
13981
13982 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
13983
13984         * html2text.el (html2text-remove-tag-list):
13985         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
13986
13987 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
13988
13989         * gnus-cus.el: Revert 2005-10-17 change.
13990
13991 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13992
13993         * gnus-art.el (article-strip-banner):
13994         Call article-really-strip-banner only when the regexp match is made.
13995
13996 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13997
13998         * gnus-art.el (article-strip-banner):
13999         Use gnus-extract-address-components instead of
14000         mail-header-parse-addresses to make it work with non-ASCII text;
14001         remove mail-encode-encoded-word-string.
14002
14003         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
14004         values which are surrounded with \"...\"; make it never cause a
14005         Lisp error; give up parsing of parameters if it failed in
14006         extracting type.
14007
14008 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
14009
14010         * smime.el (smime-cert-by-ldap-1): Fix bug where
14011         `smime-ldap-search' returns results without userCertificates.
14012
14013 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14014
14015         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
14016
14017 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
14018
14019         * spam.el (spam-check-spamassassin-headers): Adapt format for
14020         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
14021         <ari@mbf.ocn.ne.jp>.
14022         (spam-list-of-processors): Add spam-use-gmane.
14023
14024 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14025
14026         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
14027         make-temp-file; make it work with XEmacs as well.
14028
14029         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
14030         mm-make-temp-file.
14031
14032         * mm-decode.el (mm-display-external): Use the 3rd arg of
14033         mm-make-temp-file.
14034         (mm-create-image-xemacs): Ditto.
14035
14036 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14037
14038         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
14039         with message-narrow-to-headers.
14040         (gnus-draft-setup): Narrow to header to run message-fetch-field.
14041         (gnus-draft-check-draft-articles): New function.
14042         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
14043
14044 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
14045
14046         * gnus-art.el (gnus-article-browse-html-parts):
14047         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
14048         Don't use suffix argument for mm-make-temp-file for Emacs 21
14049         compatibility.  Remove useless `format'.
14050
14051 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
14052
14053         * nnweb.el (nnweb-google-wash-article): Update regexps.
14054         (nnweb-group-alist): Use defvoo instead of defvar.
14055
14056 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14057
14058         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
14059         re-loading nn* modules.
14060
14061 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
14062
14063         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
14064         for `tool-bar-mode' and don't check it's default-value.
14065
14066         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
14067
14068         * message.el (message-make-tool-bar): Ditto.
14069
14070         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
14071         `substring'.  Shorten tmp-file name.
14072
14073         * gnus.el: Remove bogus comment.
14074
14075 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
14076
14077         * gnus-art.el (gnus-article-browse-html-parts): New function.
14078         (gnus-article-browse-html-article): New function for viewing html
14079         articles with a browser.
14080
14081 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
14082
14083         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
14084         in elisp.
14085         (pgg-gpg-encrypt-symmetric-region): Ditto.
14086         (pgg-gpg-sign-region): Ditto.
14087
14088         * pgg-def.el (pgg-text-mode): New variable.
14089
14090         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
14091         (mml2015-pgg-encrypt): Ditto.
14092
14093         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
14094         (mml1991-pgg-encrypt): Ditto.
14095
14096 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14097
14098         * nnfolder.el (nnfolder-insert-newsgroup-line):
14099         Use message-make-date instead of current-time-string.
14100
14101         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
14102         to gnus-decoded which mm-uu might set.
14103
14104 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14105
14106         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
14107         don't decode quoted parameters; remove misimported Emacs code.
14108         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
14109         (rfc2231-decode-encoded-string): Don't use split-string which
14110         behaves differently according to Emacs version; use
14111         mm-decode-coding-region to convert charset to coding-system.
14112         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
14113         (rfc2231-encode-string): Remove misimported Emacs code.
14114
14115 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14116
14117         * gnus-art.el (article-decode-charset): Don't use ignore-errors
14118         when calling mail-header-parse-content-type.
14119         (article-de-quoted-unreadable): Ditto.
14120         (article-de-base64-unreadable): Ditto.
14121         (article-wash-html): Ditto.
14122
14123         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
14124         calling mail-header-parse-content-type and
14125         mail-header-parse-content-disposition.
14126         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
14127         mail-header-parse-content-type.
14128
14129         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
14130         insert charset and format parameters; encode description after
14131         inserting it to buffer.
14132         (mml-insert-parameter): Fold lines properly even if a parameter is
14133         segmented into two or more lines; change the max column to 76.
14134
14135         * rfc1843.el (rfc1843-decode-article-body): Don't use
14136         ignore-errors when calling mail-header-parse-content-type.
14137
14138         * rfc2231.el (rfc2231-parse-string): Return at least type if
14139         possible; don't cause an error even if it fails in parsing of
14140         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
14141         (rfc2231-encode-string): Don't break lines at the beginning, leave
14142         it to mml-insert-parameter.
14143
14144         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
14145         calling mail-header-parse-content-type.
14146
14147 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
14148
14149         * spam-report.el (spam-report-gmane-use-article-number):
14150         Improve doc string.
14151         (spam-report-gmane-internal): Check if a suitable header was found
14152         in the article.
14153
14154 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14155
14156         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
14157         (rfc2231-encode-string): Make param*=value always begin with LWSP.
14158
14159 2006-02-05  Romain Francoise  <romain@orebokech.com>
14160
14161         Update copyright notices of all files in the gnus directory.
14162
14163 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
14164
14165         * nnweb.el (nnweb-request-group): Avoid growing overview files.
14166
14167 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14168
14169         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
14170         segmented lines of parameter value to cope with Thunderbird 1.5
14171         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
14172         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
14173         (rfc2231-encode-string): Don't make lines exceeding 76 column.
14174
14175 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
14176
14177         * mml.el (mml-generate-mime-1): Correct the order of inline signed
14178         parts.
14179
14180 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
14181
14182         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
14183         there's only one active file for all servers.
14184         (nnweb-request-scan): Make sure nnweb-articles is initialized on
14185         solid groups.  Gnus might have used a FAST request to select the group.
14186         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
14187         and nnweb-search redundantly in the active file.
14188         (nnweb-request-list): Don't list bogus groups.  There can only be one.
14189         (nnweb-request-create-group): Don't use ARGS.
14190         (nnweb-possibly-change-server, nnweb-request-group): Remove some
14191         initialisations.  Let nnoo do the work.
14192
14193 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14194
14195         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
14196         Say the part has been decoded.
14197
14198         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
14199
14200 2006-01-31  Kevin Ryde  <user42@zip.com.au>
14201
14202         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
14203         mailcap-viewer-test-cache when there's no 'test clause, since that
14204         will invert the meaning of a "nil" test previously determined by
14205         mailcap-mailcap-entry-passes-test.
14206
14207 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14208
14209         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
14210         compiling.
14211
14212         * gnus-sum.el: Ditto.
14213
14214         * message.el: Don't bind tool-bar-map when compiling.
14215
14216 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
14217
14218         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
14219
14220 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
14221
14222         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
14223         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
14224         current Google Groups.
14225
14226 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
14227
14228         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
14229         and tool-bar-mode.
14230
14231         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
14232         and tool-bar-mode.
14233
14234         * message.el (message-tool-bar-update): Simplify.
14235         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
14236
14237         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
14238         gnus-summary-buffer.
14239         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
14240         gnus-summary-reply.
14241
14242         * gmm-utils.el (gmm): Add :version.
14243
14244 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14245
14246         * Makefile.in (clean): New rule.
14247         (distclean): Use it.
14248
14249 2006-01-26  Steve Youngs  <steve@sxemacs.org>
14250
14251         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
14252         Don't autoload.
14253
14254 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14255
14256         * gmm-utils.el (gmm-verbose): Add :group.
14257
14258 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
14259
14260         * message.el: Change some comments WRT tool-bars.
14261
14262         * gnus-sum.el (gnus-summary-tool-bar)
14263         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
14264         (gnus-summary-tool-bar-zap-list): New variables.
14265         (gnus-summary-make-tool-bar): Complete rewrite using
14266         `gmm-tool-bar-from-list'.
14267
14268         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
14269         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
14270         New variables.
14271         (gnus-group-make-tool-bar): Complete rewrite using
14272         `gmm-tool-bar-from-list'.
14273         (gnus-group-tool-bar-update): New function.
14274
14275         * message.el (message-mode-field-menu): Add "Show hidden Headers".
14276
14277 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14278
14279         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
14280         is dissected into a single part of which the type is the same as
14281         the given one; decode charset.
14282
14283 2006-01-21  Kevin Ryde  <user42@zip.com.au>
14284
14285         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
14286         into alists as symbol not string, since that's what
14287         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
14288         look for.
14289
14290 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
14291
14292         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
14293         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
14294
14295         * message.el (message-tool-bar-gnome): Use gmm-ignore.
14296
14297 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14298
14299         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
14300         (gnus-xmas-mime-security-button-menu): New function.
14301
14302         * gnus-art.el (gnus-mime-security-button-commands): New variable.
14303         (gnus-mime-security-button-menu): New definition.
14304         (gnus-mime-security-button-map): Use them.
14305         (gnus-mime-security-button-menu): New function.
14306         (gnus-insert-mime-security-button): Addition to help echo.
14307         (gnus-mime-security-run-function, gnus-mime-security-save-part)
14308         (gnus-mime-security-pipe-part): New functions.
14309
14310         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
14311         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
14312
14313         * mm-decode.el (mm-handle-set-disposition): Remove.
14314         (mm-handle-set-description): Remove.
14315
14316 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14317
14318         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
14319         (mm-w3m-standalone-supports-m17n-p): New function.
14320         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
14321         w3m usage.
14322
14323         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
14324         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
14325
14326 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
14327
14328         * message.el (message-tool-bar-zap-list):
14329         Use gmm-tool-bar-zap-list as custom type.
14330         (message-tool-bar-update): New function.
14331         (message-tool-bar, message-tool-bar-gnome)
14332         (message-tool-bar-retro): Add message-tool-bar-update.
14333         (message-tool-bar-gnome): Add flyspell-buffer.
14334
14335         * gnus-util.el (gnus-error): Describe `args'.
14336
14337         * gmm-utils.el (gmm-error): Describe `args'.
14338         (gmm-tool-bar-zap-list): New widget.
14339         (gmm-tool-bar-from-list): Improve description of `zap-list'.
14340
14341 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14342
14343         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
14344         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
14345         the number of recursive calls.
14346
14347         * mm-decode.el (mm-handle-set-disposition): New macro.
14348         (mm-handle-set-description): New macro.
14349
14350 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14351
14352         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
14353         encoding.
14354
14355 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
14356
14357         * message.el (message-tool-bar-zap-list, message-tool-bar)
14358         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
14359         (message-tool-bar-local-item-from-menu): Remove.
14360         (message-tool-bar-map): Replace by `message-make-tool-bar'.
14361         (message-make-tool-bar): New function.
14362         (message-mode): Use `message-make-tool-bar'.
14363
14364         * gmm-utils.el: New file.
14365         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
14366         (gmm-lazy): New widget copied from `nnmail.el'.
14367         (gmm-tool-bar-from-list): New function for creating customizable
14368         tool bars.
14369         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
14370         output.
14371         (gmm): Add :prefix to defgroup.
14372
14373 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
14374
14375         * gmm-utils.el (gmm-widget-p): New function.
14376
14377 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
14378
14379         * mml.el (mml-attach-file): Describe `description' in doc string.
14380         (mml-menu): Add Emacs MIME manual and PGG manual.
14381
14382 2006-01-20  Richard M. Stallman  <rms@gnu.org>
14383
14384         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
14385
14386 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
14387
14388         * nntp.el (nntp-end-of-line): Doc fix.
14389
14390 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
14391
14392         * imap.el (imap-open): Handle case where buffer is a buffer
14393         object.
14394
14395 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14396
14397         * gnus-delay.el (gnus-delay): Don't autoload.
14398         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
14399         to be re-loaded when customizing the `gnus-delay' group.
14400
14401 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
14402
14403         * message.el (message-insert-citation-line): Use newlines.
14404
14405 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
14406
14407         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
14408         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
14409         these routines, so the passphrase can be managed externally and
14410         passed in to the system.
14411         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
14412         pgg-add-passphrase-to-cache function.
14413
14414         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
14415         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
14416         these routines, so the passphrase can be managed externally and
14417         passed in to the system.
14418         (pgg-pgp5-sign-region): Use new name of
14419         pgg-add-passphrase-to-cache function.
14420
14421 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
14422
14423         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
14424         part of the decoded armor to find the key-identifier.
14425         (pgg-gpg-lookup-key-owner): New function to return the
14426         human-readable identifier of a key owner.
14427         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
14428         itself.
14429         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
14430         the key value) if we have a key and can match it against a secret
14431         key.  Also, added a note pointing out fact that the prompt only
14432         indicates the first matching key.
14433
14434         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
14435         pgg-decrypt-region.
14436         (pgg-add-passphrase-to-cache): Rename from
14437         `pgg-add-passphrase-cache' to reduce confusion (all callers
14438         changed).
14439         (pgg-remove-passphrase-from-cache): Rename from
14440         `pgg-remove-passphrase-cache' to reduce confusion (all callers
14441         changed).
14442         (pgg-read-passphrase, pgg-add-passphrase-cache)
14443         (pgg-remove-passphrase-cache): Add informative docstrings.
14444         (pgg-decrypt): Convey provided passphrase in subordinate call to
14445         pgg-decrypt-region.
14446
14447 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
14448
14449         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
14450         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
14451         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
14452         'passphrase' argument, so the passphrase can be managed externally
14453         and then passed in to the system.
14454
14455         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
14456         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
14457         so the passphrase cache can be used reliably with identifiers
14458         besides a pgp packet's key id.
14459
14460         * pgg-gpg.el (pgg-gpg-encrypt-region)
14461         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
14462         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
14463         these routines, so the passphrase can be managed externally and
14464         passed in to the system.
14465
14466         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
14467         'notruncate' argument, so the passphrase cache can be used
14468         reliably with identifiers besides a pgp packet's key id.
14469
14470 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
14471
14472         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
14473         symmetric encryption.
14474         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
14475         encrypted session key.
14476         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
14477         message ask for the passphrase in a proper way.
14478
14479         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
14480         New user commands for symmetric encryption.
14481
14482 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14483
14484         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
14485
14486         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
14487
14488 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
14489
14490         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
14491
14492 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14493
14494         * mm-decode.el (mm-inlined-types): Add application/pgp.
14495         (mm-automatic-display): Ditto.
14496
14497         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
14498         part as text.
14499
14500 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14501
14502         * nnrss.el: Update copyright.
14503         (nnrss-opml-import): Query whether to subscribe to each entry.
14504
14505         * gnus-art.el:
14506         * gnus-sum.el:
14507         * gnus-xmas.el:
14508         * messagexmas.el:
14509         * mm-uu.el:
14510         * mm-view.el: Update copyright.
14511
14512 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
14513
14514         * message.el (message-info): New function.
14515         (message-mode-menu): Add it.
14516         Update copyright.
14517
14518         * ChangeLog: Fix and update copyright.
14519
14520 2006-01-13  Romain Francoise  <romain@orebokech.com>
14521
14522         * message.el (message-forward-subject-name-subject): Prefer the
14523         address to 'nowhere' if the sender has no name.
14524         Fix typo.  Update copyright year.
14525
14526 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14527
14528         * gnus-art.el (article-wash-html):
14529         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
14530         (gnus-article-wash-html-with-w3m-standalone): New function.
14531
14532         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
14533         mm-inline-text-html-render-with-w3m-standalone.
14534         (mm-text-html-washer-alist): Map w3m-standalone to
14535         gnus-article-wash-html-with-w3m-standalone.
14536         (mm-inline-text-html-render-with-w3m-standalone): New function.
14537
14538 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
14539
14540         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
14541         Improve LaTeX.
14542
14543 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14544
14545         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
14546         (nnrss-request-article): Render text/plain parts as HTML.
14547
14548         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
14549         the buffer.
14550
14551 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
14552
14553         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
14554         custom definition of `gnus-posting-styles'.
14555
14556         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
14557         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
14558
14559 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
14560
14561         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
14562         Use nntp for bug archive.
14563
14564 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14565
14566         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
14567         parts.
14568         (nnrss-normalize-date): New function converts ISO 8601 date into
14569         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
14570         (nnrss-check-group): Use it.
14571
14572 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14573
14574         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
14575
14576         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
14577         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
14578         (nnrss-insert-w3): Ditto.
14579
14580 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14581
14582         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
14583         the articles to be forwarded including the case where neither a
14584         number of articles nor a region is specified.
14585
14586 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14587
14588         * nnrss.el (nnrss-request-article): Fix last change; fill
14589         text/plain parts.
14590
14591 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14592
14593         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
14594         in text/plain part.
14595         (nnrss-check-group): Don't add excessive newline to dc:subject.
14596
14597 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
14598
14599         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
14600         article.
14601
14602 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14603
14604         * nnml.el: Don't require gnus-bcklg.  Autoload it.
14605         (nnml-use-compressed-files, nnml-save-mail): Support other
14606         comression programs such as bzip2.
14607
14608 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14609
14610         * dns.el (query-dns): Make sure we check the buffer size before
14611         removing tcp headers.
14612
14613 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14614
14615         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
14616         remove MIME buttons associated with multipart/alternative parts.
14617         (gnus-mime-display-alternative): Tag buttons using `article-type'
14618         text property.
14619
14620         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
14621         associated with multipart/alternative parts.
14622
14623         * gnus-art.el (gnus-signature-separator): Fix custom type.
14624
14625         * mm-decode.el (mm-inlined-types): Fix custom type.
14626         (mm-keep-viewer-alive-types): Ditto.
14627         (mm-automatic-display): Ditto.
14628         (mm-attachment-override-types): Ditto.
14629         (mm-inline-override-types): Ditto.
14630         (mm-automatic-external-display): Ditto.
14631
14632 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
14633
14634         * spam-report.el (spam-report-user-mail-address)
14635         (spam-report-user-agent): New variables.
14636         (spam-report-url-ping-plain): Use spam-report-user-agent.
14637
14638 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
14639
14640         * gnus-art.el (gnus-button-handle-custom): Do not just use
14641         `customize-apropos' for any "M-x customize-*" button but the
14642         function called for.  Accept both the function name and its
14643         argument in order to achieve this.
14644         (gnus-button-alist): Remove support for "custom:" URL's.
14645         Pass function name to `gnus-button-handle-custom' in case of "M-x
14646         customize-*" buttons.
14647
14648 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14649
14650         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
14651         multipart/alternative and add xref to mm-discouraged-alternatives
14652         in doc string.
14653
14654         * mm-decode.el (mm-discouraged-alternatives): Add xref to
14655         gnus-buttonized-mime-types in doc string.
14656
14657 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
14658
14659         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
14660         Suggest image/.* in the doc string.
14661
14662 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
14663
14664         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
14665         message-marks (Debian bug #342521).
14666
14667 2005-12-12  Simon Josefsson  <jas@extundo.com>
14668
14669         * password.el (password-read-from-cache): Add.
14670         (password-read): Use it.
14671
14672 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14673
14674         * rfc2047.el (rfc2047-charset-to-coding-system):
14675         Recognize us-ascii as a MIME charset.
14676
14677         * mm-bodies.el (mm-decode-content-transfer-encoding):
14678         Protect against the case where the 2nd arg TYPE is nil.
14679
14680 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14681
14682         * pop3.el (pop3-stream-type): Fix custom version.
14683
14684         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
14685
14686 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
14687
14688         * mm-decode.el (mm-display-external): Add missing cdr.
14689
14690 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14691
14692         * mm-decode.el (mm-display-external): Use nametemplate (defined in
14693         RFC1524) if it is in mailcap or add a suffix according to
14694         mailcap-mime-extensions when generating a temp filename; postpone
14695         deleting a temp file for 2 seconds for some wrappers, shell
14696         scripts, and so on, which might exit right after having started a
14697         viewer command as a background job.
14698
14699 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14700
14701         * nntp.el (nntp-marks-directory): Fix custom group.
14702
14703         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
14704         steps when < 10.
14705
14706         * gnus-start.el (gnus-no-server-1):
14707         Mention `gnus-level-default-subscribed' in doc string.
14708
14709 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
14710
14711         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
14712         parens.
14713
14714 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14715
14716         * gnus-xmas.el (gnus-use-toolbar): Revert.
14717         (gnus-xmas-setup-toolbar): Use global default-toolbar if
14718         gnus-use-toolbar is default.
14719
14720         * messagexmas.el (message-use-toolbar): Revert.
14721         (message-setup-toolbar): Use global default-toolbar if
14722         message-use-toolbar is default.
14723
14724 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14725
14726         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
14727         according to default-toolbar-visible-p.
14728
14729         * messagexmas.el (message-use-toolbar): Ditto.
14730
14731 2005-11-26  Dave Love  <fx@gnu.org>
14732
14733         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
14734         (tls-program, tls-success): Provide openssl alternative.
14735
14736         * starttls.el: Doc fixes.
14737         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
14738         SERVICE to PORT.
14739
14740         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
14741         port null or service name.
14742         (starttls-negotiate): Autoload.
14743
14744 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14745
14746         * message.el (message-kill-to-signature): Fix interactive spec.
14747
14748 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14749
14750         * pop3.el (pop3-open-server): Recognize a string as a service name.
14751
14752 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
14753
14754         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
14755
14756 2005-11-23  Dave Love  <fx@gnu.org>
14757
14758         Add pop3s, pop3/starttls.
14759
14760         * pop3.el (pop3-authentication-scheme): Clarify doc.
14761         (open-tls-stream, starttls-open-stream): Autoload.
14762         (pop3-stream-type): New.
14763         (pop3-open-server): Use it.
14764
14765         * mail-source.el (mail-sources): Fix some :types.  Add stream type
14766         for POP.
14767         (mail-source-keyword-map): Add :stream for POP.
14768         (mail-source-fetch-pop): Use pop3-stream-type.
14769
14770 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14771
14772         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
14773         of current-time-string.
14774
14775 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
14776
14777         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
14778         date header.
14779
14780 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
14781
14782         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
14783         it can seriously impact performance as it bypasses the agent's
14784         local caches.
14785
14786 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
14787
14788         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
14789         must be explicitly online rather than "not explicitly offline" for
14790         its flags to be synchronized.
14791
14792         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
14793         that gnus-uu-unmark-thread will function correctly.
14794
14795         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
14796         1024K is instead displayed as 1M.
14797
14798 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14799
14800         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
14801
14802 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
14803
14804         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
14805
14806 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
14807
14808         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
14809         error message to display actual error condition.
14810         (gnus-agent-save-local): Avoid saving symbols that are bound to
14811         nil as they simply result in a warning message in
14812         gnus-agent-read-local.
14813
14814 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14815
14816         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
14817         rather than make-variable-buffer-local for file-precious-flag.
14818
14819 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
14820
14821         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
14822         for duplicates which are removed.  The invalid sort check then
14823         triggers a rescan after the sort as sorting may have moved
14824         duplicate entries such that they can be cheaply detected.
14825
14826 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14827
14828         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
14829
14830 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
14831
14832         * gnus-agent.el (gnus-agent-article-alist-save-format):
14833         Change internal variable to a custom variable.  Change default value
14834         from compressed(2) to uncompressed(1).
14835         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
14836         support for uncompressed agentview files.  Taken together, reading
14837         the agentview file should now be 6-7 times faster.
14838
14839 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
14840
14841         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
14842         as a buffer-local variable.  This avoids creating truncated
14843         dribble files as a result of a hang up, eg.
14844
14845 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
14846
14847         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
14848         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
14849         XEmacs.
14850
14851 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14852
14853         * gnus-start.el (gnus-start-draft-setup):
14854         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
14855
14856         * gnus.el (gnus-splash): Change custom group.
14857         (gnus-group-get-parameter, gnus-group-parameter-value):
14858         Describe allow-list argument.
14859
14860         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
14861         string.
14862
14863 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14864
14865         * gnus-art.el (gnus-default-article-saver): Add user-defined
14866         `function' to custom type.
14867
14868 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
14869
14870         * imap.el (imap-open): Handle case where buffer is a buffer
14871         object.
14872
14873 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
14874
14875         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
14876         long lines.
14877         (gnus-cache-delete-group): Wrap doc strings.
14878
14879         * gnus-agent.el (gnus-agent-rename-group)
14880         (gnus-agent-delete-group): Wrap doc strings.
14881
14882 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14883
14884         * messagexmas.el (message-use-toolbar): Change the valid values
14885         into default, top, bottom, left, and right.
14886         (message-toolbar-thickness): New variable.
14887         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
14888         well.
14889         (message-setup-toolbar): Make it work.
14890
14891         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
14892         (gnus-use-toolbar): Change the valid values into default, top,
14893         bottom, left, and right.
14894         (gnus-toolbar-thickness): New variable.
14895         (gnus-xmas-setup-toolbar): New function.
14896         (gnus-xmas-setup-group-toolbar): Use it.
14897         (gnus-xmas-setup-summary-toolbar): Use it.
14898
14899 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14900
14901         * gnus-start.el (gnus-1): Add "native" to
14902         gnus-predefined-server-alist.
14903
14904         * gnus.el (gnus-method-to-server): Don't add "native" to the
14905         lists here, because that leads to problems when
14906         gnus-select-method is bound.
14907
14908 2005-11-09  Simon Josefsson  <jas@extundo.com>
14909
14910         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
14911         use (not sort-by-date) instead.
14912
14913 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14914
14915         * gnus-delay.el (gnus-delay-group): Don't autoload.
14916         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
14917         to be re-loaded when customizing the `gnus-delay' group.
14918
14919 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
14920
14921         * message.el: Revert last changes.
14922         (message-insert-citation-line): Use newlines.
14923
14924 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
14925
14926         * message.el (message-courtesy-message)
14927         (message-mark-insert-begin, message-mark-insert-end)
14928         (message-elide-ellipsis, message-cancel-message)
14929         (message-add-header, message-change-subject)
14930         (message-cross-post-followup-to-header)
14931         (message-cross-post-insert-note, message-reduce-to-to-cc)
14932         (message-widen-reply, message-delete-not-region)
14933         (message-kill-to-signature, message-insert-signature)
14934         (message-insert-importance-high, message-insert-importance-low)
14935         (message-insert-or-toggle-importance)
14936         (message-insert-disposition-notification-to)
14937         (message-indent-citation, message-yank-original)
14938         (message-cite-original-without-signature, message-cite-original)
14939         (message-insert-citation-line, message-position-on-field)
14940         (message-fix-before-sending, message-send-mail-partially)
14941         (message-send-mail, message-send-mail-with-sendmail)
14942         (message-send-mail-with-qmail, message-send-news)
14943         (message-check-news-header-syntax, message-generate-headers)
14944         (message-insert-courtesy-copy, message-fill-address)
14945         (message-fill-header, message-shorten-references)
14946         (message-setup-1, message-cancel-news)
14947         (message-forward-make-body-plain, message-forward-make-body-mime)
14948         (message-forward-make-body-mml, message-encode-message-body)
14949         (message-forward-make-body-digest-plain)
14950         (message-forward-make-body-digest-mime)
14951         (message-use-alternative-email-as-from): Insert `hard-newline'
14952         instead of ordinary newlines.
14953
14954 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14955
14956         * message.el (message-generate-headers): Downcase the argument
14957         given to message-check-element.
14958
14959 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
14960
14961         * nntp.el (nntp-authinfo-rejected): New error condition.
14962         (nntp-wait-for): Use new error condition to signal authentication
14963         error.
14964         (nntp-retrieve-data): Rethrow new error condition to break out of
14965         recursive call to nntp-send-authinfo.
14966
14967 2005-11-08  Romain Francoise  <romain@orebokech.com>
14968
14969         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
14970         (gnus-summary-exit-map): Bind to `Z p'.
14971         (gnus-summary-make-menu-bar): Add menu item.
14972
14973 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
14974
14975         * gnus-art.el (gnus-article-treat-custom): Add `first'.
14976         (gnus-treat-*): Add `first' in all doc strings.
14977
14978         * gnus-group.el (gnus-group-compact-group): Fix typo.
14979
14980 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14981
14982         * gnus.el (gnus-parameters-case-fold-search): New variable.
14983         (gnus-parameters-get-parameter): Use it.
14984
14985         * gnus-score.el (gnus-home-score-file): Doc fix.
14986
14987 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
14988
14989         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
14990
14991 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14992
14993         * mm-util.el (mm-special-display-p): New function.
14994
14995         * mml.el (mml-preview): Use it; doc fix.
14996
14997 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
14998
14999         * imap.el (imap-open): Handle case where buffer is a buffer object.
15000
15001 2005-10-29  Romain Francoise  <romain@orebokech.com>
15002
15003         * message.el (message-fix-before-sending): Fix comment.
15004
15005 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
15006
15007         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
15008
15009 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
15010
15011         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
15012         Used in gnus-score.el.
15013
15014 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
15015
15016         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
15017
15018 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
15019
15020         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
15021         whitespace removed in revision 7.8.  Use concatenated string to
15022         protect trailing whitespace.
15023
15024 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
15025
15026         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
15027         (nnimap-request-expire-articles): Use it to avoid sending 'UID
15028         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
15029         Courier IMAP ("some version from 2004").  Mostly based on similar
15030         code in the same function.
15031
15032 2005-10-26  Didier Verna  <didier@xemacs.org>
15033
15034         * gnus-group.el (gnus-group-compact-group): Invalidate original
15035         article buffer.
15036         * gnus-srvr.el (gnus-server-compact-server): Ditto.
15037         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
15038         NOV database and in article itself.
15039         Invalidate article backlog.
15040
15041 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
15042
15043         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
15044
15045 2005-10-26  Simon Josefsson  <jas@extundo.com>
15046
15047         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
15048         part of 2004-07-25 change.
15049
15050 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15051
15052         * message.el (message-display-completion-list): New function.
15053         (message-expand-group): Use it; make sure the Completions buffer
15054         is modifiable.
15055 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
15056
15057         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
15058         user-mail-name is an empty string.
15059
15060 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
15061
15062         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
15063         depending on gnus-score-decay-constant.
15064
15065         * encrypt.el (encrypt-insert-file-contents)
15066         (encrypt-write-file-contents): Don't use `gnus-message'.
15067
15068         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
15069         arguments.
15070         (mm-uu-type-alist): Add message-marks and insert-marks.
15071         Pass arguments to mm-uu-verbatim-marks-extract.
15072         (mm-uu-hide-markers): New variable.
15073         (mm-uu-extract): Use face similar to `gnus-cite-3'.
15074
15075         * gnus-fun.el (gnus-convert-image-to-x-face-command)
15076         (gnus-convert-image-to-face-command): Use "convert" by default to
15077         allow other input image formats.
15078         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
15079         accordingly.
15080
15081 2005-10-23  Simon Josefsson  <jas@extundo.com>
15082
15083         * imap.el (imap-gssapi-program): Align command line parameters
15084         with latest GNU SASL.
15085         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
15086
15087 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15088
15089         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
15090         HTML.
15091         (nnslashdot-request-article): Ditto.
15092
15093         * lpath.el (featurep): Add nobreak-char-display.
15094
15095 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
15096
15097         * mail-source.el (mail-source-fetch-pop): Require pop3.
15098         (mail-source-check-pop): Ditto.
15099
15100 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15101
15102         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
15103         errors.
15104
15105 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
15106
15107         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
15108         (gnus-treat-strip-leading-blank-lines): Improve doc string.
15109
15110         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
15111
15112         * mm-bodies.el (mm-decode-string):
15113         Call `mm-charset-to-coding-system' with allow-override argument.
15114
15115 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15116
15117         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
15118         (rfc2047-charset-to-coding-system): New function.
15119         (rfc2047-decode-encoded-words): New function.
15120         (rfc2047-decode-region): Use them.
15121         (rfc2047-decode-cte): Remove.
15122         (rfc2047-parse-and-decode): Remove.
15123         (rfc2047-decode): Remove.
15124
15125 2005-10-15  Kenichi Handa  <handa@m17n.org>
15126
15127         * rfc2047.el (rfc2047-decode-cte): New function.
15128         (rfc2047-decode-region): Change the way to decode successive
15129         encoded-words: decode B- or Q-encoding in each encoded-word,
15130         concatenate them, and decode it as charset.
15131
15132 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15133
15134         * lpath.el: Fbind codepage-setup for XEmacs.
15135
15136 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
15137
15138         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
15139         widget-move-and-invoke.
15140         (gnus-custom-mode): Use gnus-custom-map.
15141
15142 2005-10-15  Bill Wohler  <wohler@newt.com>
15143
15144         * message.el (message-tool-bar-map): Rename image file from
15145         mail_send to mail/send.
15146
15147 2005-10-16  Masatake YAMATO  <jet@gyve.org>
15148
15149         * message.el (message-expand-group): Pass the common
15150         prefix substring of completion to `display-completion-list'.
15151
15152 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
15153
15154         * mml-sec.el (mml-secure-method): New internal variable.
15155         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
15156         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
15157         New functions using mml-secure-method.
15158
15159         * mml.el (mml-mode-map): Add key bindings for those functions.
15160         (mml-menu): Simplify security menu entries.  Suggested by Jesper
15161         Harder <harder@myrealbox.com>.
15162         (mml-attach-file, mml-attach-buffer, mml-attach-external):
15163         Goto end of message if point is the headers of the message.
15164
15165         * message.el (message-in-body-p): New function.
15166
15167         * assistant.el: Autoload gnus-util and netrc.
15168
15169         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
15170         Use `mm-charset-override-alist' only when decoding.
15171
15172         * mm-bodies.el (mm-decode-body):
15173         Call `mm-charset-to-coding-system' with allow-override argument.
15174
15175         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
15176         `filename' from Content-Disposition if Content-Type doesn't
15177         provide `name'.
15178         (gnus-mime-view-part-as-type): Set default instead of
15179         initial-input.
15180
15181 2005-10-09  Daniel Brockman  <daniel@brockman.se>
15182
15183         * format-spec.el (format-spec): Propagate text properties of % spec.
15184
15185 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
15186
15187         * gnus-art.el (gnus-treat-predicate): Add `first'.
15188
15189 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
15190
15191         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
15192         (mm-charset-override-alist): New variable.
15193         (mm-charset-to-coding-system): Use it.
15194         (mm-codepage-setup): New helper function.
15195         (mm-charset-eval-alist): New variable.
15196         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
15197         Warn about unknown charsets.
15198
15199         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
15200
15201 2005-10-04  David Hansen  <david.hansen@gmx.net>
15202
15203         * nnrss.el (nnrss-request-article): Add support for the comments tag.
15204         (nnrss-check-group): Ditto.
15205
15206 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
15207
15208         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
15209         Rename x-gnus-verbatim to x-verbatim.
15210         (mm-uu-type-alist): Fix regexp for verbatim-marks.
15211
15212         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
15213         x-verbatim.
15214
15215         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
15216
15217         * gnus-util.el (gnus-remove-duplicates): Remove.
15218
15219         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
15220         instead of gnus-remove-duplicates.
15221
15222         * message.el (message-remove-duplicates): Remove.
15223         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
15224         message-remove-duplicates.
15225
15226         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
15227         available, else use implementation from `delete-dups'.
15228
15229         * message.el (message-insert-expires): New function.
15230         (message-mode-map): Add key binding.
15231         (message-mode-field-menu): Add menu entry.
15232         (message-mode): Document it.
15233         (message-make-expires-date): Use `message-make-date'.
15234
15235 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
15236
15237         * message.el (message-make-expires-date): New function.
15238
15239 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15240
15241         * Makefile.in (list-installed-shadows): New entry.
15242         (install): Use it.
15243         (remove-installed-shadows): New entry.
15244
15245         * dgnushack.el (dgnushack-default-load-path): New variable.
15246         (dgnushack-find-lisp-shadows): New function.
15247         (dgnushack-remove-lisp-shadows): New function.
15248
15249 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15250
15251         * Makefile.in (install-el-elc): New entry.
15252         (install): Use it so that .el files are necessarily installed.
15253
15254 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15255
15256         * time-date.el: Autoload parse-time-string, XEmacs needs it.
15257
15258 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15259
15260         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
15261         function rather than the diff-mode.el package.
15262         (mm-display-external): Use with-current-buffer.
15263         (mm-viewer-completion-map, mm-viewer-completion-map):
15264         Move initialization inside declaration.
15265
15266 2005-09-29  Simon Josefsson  <jas@extundo.com>
15267
15268         * spam.el: Load hashcash when compiling, to avoid warnings.
15269         Don't autoload mail-check-payment.
15270         (spam-check-hashcash): Define unconditionally, since hashcash.el
15271         is part of Gnus now.  Ignore errors from payment checking.
15272
15273 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
15274
15275         * message.el (message-bold-region, message-unbold-region):
15276         Rename from `bold-region' and `unbold-region'.
15277
15278         * message.el: Remove useless autoloads.
15279
15280 2005-09-28  Simon Josefsson  <jas@extundo.com>
15281
15282         * message.el (message-use-idna): Default to t.
15283         (message-use-idna): Test whether encoding works too.  Doc fix.
15284
15285 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15286
15287         * nntp.el (nntp-warn-about-losing-connection): Remove.
15288
15289 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
15290
15291         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
15292         customizable.  Change default value.
15293         (mm-uu-diff-groups-regexp): Change default value.
15294         (mm-uu-type-alist): Add doc string.
15295         (mm-uu-configure): Add doc string.  Make it interactive.
15296         (mm-uu-tex-groups-regexp): New variable.
15297         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
15298         (mm-uu-type-alist): Add LaTeX documents.
15299         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
15300         of "text/verbatim".
15301         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
15302
15303         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
15304         instead of "text/verbatim".
15305
15306         * message.el (message-mark-inserted-region)
15307         (message-mark-insert-file): Use slrn style marks when called with
15308         prefix argument.
15309
15310 2005-09-27  Simon Josefsson  <jas@extundo.com>
15311
15312         * message.el (message-idna-to-ascii-rhs-1): Reformat.
15313
15314 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
15315
15316         * message.el (message-remove-duplicates): New function.
15317         Implementation borrowed from `gnus-remove-duplicates'.
15318         (message-idna-to-ascii-rhs): Also encode idna addresses in
15319         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
15320         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
15321         only ask about the same idna domain once per header and also tell
15322         in what header to replace the idna domain.
15323
15324         * gnus-art.el (article-decode-idna-rhs): Also decode idna
15325         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
15326         (article-decode-idna-rhs): Fix regexp so that all idna-address in
15327         a header is decoded and not just the last one.
15328
15329 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15330
15331         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
15332         has been decoded.
15333
15334         * mm-decode.el (mm-automatic-display): Add text/verbatim.
15335         (mm-insert-part): Don't modify text if it has been decoded.
15336
15337         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
15338         decoded.
15339
15340         * mm-view.el (mm-inline-text): Don't strip text props unless
15341         decoding enriched or richtext parts.
15342
15343 2005-09-25  Romain Francoise  <romain@orebokech.com>
15344
15345         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
15346         * gnus-start.el (gnus-subscribe-interactively):
15347         * gnus-uu.el (gnus-uu-grab-articles):
15348         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
15349         space.
15350
15351 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
15352
15353         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
15354         * mm-view.el (mm-view-pkcs7-decrypt):
15355         * gnus-sum.el (gnus-summary-limit-to-extra)
15356         (gnus-summary-respool-article, gnus-read-move-group-name):
15357         * gnus-score.el (gnus-summary-increase-score):
15358         * gnus-util.el (gnus-completing-read-with-default):
15359         * gnus-art.el (gnus-read-save-file-name)
15360         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
15361         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
15362         * message.el (message-check-news-header-syntax):
15363         Follow convention for reading with the minibuffer.
15364
15365 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
15366
15367         * spam-report.el (spam-report-url-ping-plain):
15368         Use gnus-extended-version as User-Agent.
15369
15370         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
15371         default value is nil.
15372
15373         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
15374         (mm-uu-verbatim-marks-extract): New function.
15375         (mm-uu-extract): New face.
15376         (mm-uu-copy-to-buffer): Use it.
15377
15378         * spam-report.el (spam-report-gmane-ham): Rename from
15379         `spam-report-gmane-unspam'.
15380         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
15381         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
15382
15383         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
15384         Autoload.
15385         (spam-report-gmane-unregister-routine):
15386         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
15387
15388 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
15389
15390         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
15391         (spam-report-gmane-unregister-routine): Add support for gmane
15392         unregistration.
15393
15394         * spam-report.el (spam-report-gmane-unspam)
15395         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
15396         (spam-report-gmane): Change to take a single article and do unspam
15397         registration.
15398
15399 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
15400
15401         * mm-url.el (mm-url-decode-entities): Fix regexp.
15402
15403 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15404
15405         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
15406         default to nil, to be able to use Gnus at all.  If the default
15407         switches to something else, then the function should be fixed not
15408         be exceedingly slow.
15409
15410 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
15411
15412         * gnus-start.el (gnus-activate-group): If the server is nil, don't
15413         fail hard.
15414
15415         * spam-report.el: Add better Keywords line.
15416
15417         * spam.el: Add Maintainer and better Keywords line.
15418
15419 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
15420
15421         * gnus-art.el (gnus-article-replace-part)
15422         (gnus-mime-replace-part): New functions.
15423         (gnus-mime-action-alist, gnus-mime-button-commands)
15424         (gnus-mime-save-part-and-strip): Add file argument.
15425         (gnus-article-part-wrapper): Add interactive argument.
15426
15427         * gnus-sum.el (gnus-summary-mime-map):
15428         Add `gnus-article-replace-part'.
15429
15430 2005-09-19  Didier Verna  <didier@xemacs.org>
15431
15432         The nnml compaction feature:
15433         * nnml.el (nnml-request-compact-group): New function.
15434         * nnml.el (nnml-request-compact): New function.
15435         * gnus-int.el (gnus-request-compact-group): New function.
15436         * gnus-int.el (gnus-request-compact): New function.
15437         * gnus-group.el (gnus-group-compact-group): New function.
15438         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
15439         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
15440         * gnus-srvr.el (gnus-server-compact-server): New function.
15441         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
15442         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
15443
15444 2005-09-18  Deepak Goel  <deego@gnufans.org>
15445
15446         * sieve.el (sieve-help): Fix `message' call: first arg should be a
15447         format spec.
15448
15449 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15450
15451         * gnus.el (gnus-group-startup-message): Bind image-load-path.
15452
15453 2005-09-15  Romain Francoise  <romain@orebokech.com>
15454
15455         * message.el (message-fill-paragraph): Clarify docstring.
15456
15457 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15458
15459         * gnus-art.el (gnus-mime-display-part): Protect against broken
15460         MIME messages.
15461
15462 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15463
15464         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
15465         before parsing header.
15466
15467 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
15468
15469         * html2text.el (html2text-replace-list): Add new entities.
15470
15471 2005-09-11  Romain Francoise  <romain@orebokech.com>
15472
15473         * message.el (message-alternative-emails): Improve docstring.
15474         (message-setup-1): Call `message-use-alternative-email-as-from'
15475         after `message-setup-hook' to give it precedence over posting
15476         styles, etc.
15477         (message-use-alternative-email-as-from): Add docstring.
15478         Remove the original From header if present.
15479
15480         * nnml.el (nnml-compressed-files-size-threshold): New variable.
15481         (nnml-save-mail): Use it.
15482
15483         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
15484         articles.  Add new argument `silent'.
15485         (gnus-uu-mark-all): Report the total number of marked articles.
15486
15487 2005-09-10  Romain Francoise  <romain@orebokech.com>
15488
15489         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
15490         (gnus-uu-mark-series): Likewise.
15491
15492 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
15493
15494         * spam-report.el (spam-report-gmane): Fix generation of spam
15495         report URL.
15496
15497 2005-09-10  Simon Josefsson  <jas@extundo.com>
15498
15499         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
15500         t, based on discussion on the ding list with Robert Epprecht
15501         <epprecht@solnet.ch>.
15502
15503 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
15504
15505         * spam-report.el (spam-report-gmane): Make it work without
15506         X-Report-Spam header.  Gmane now only provides Archived-At.
15507         This is only used if `spam-report-gmane-use-article-number' is nil.
15508         (spam-report-gmane-spam-header): Remove.  Not used anymore.
15509
15510         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
15511         make `gnus-summary-sort-by-recipient' work with threading.
15512
15513         * nnweb.el (nnweb-google-wash-article): Print a message if article
15514         is not available.
15515
15516 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
15517
15518         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
15519         change.  Decode text/* parts content before displaying.
15520
15521 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
15522
15523         * mml-smime.el: Remove defvar of gnus-extract-address-components.
15524
15525 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15526
15527         * mm-view.el (mm-display-inline-fontify): Disable support modes.
15528
15529         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
15530         url-package-name, url-package-version,
15531         w3m-cid-retrieve-function-alist, w3m-current-buffer,
15532         w3m-display-inline-images, and w3m-minor-mode-map.
15533
15534 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
15535
15536         * message.el (message-tab-body-function): Fix mismatched custom type.
15537
15538         * gnus.el (gnus-group-change-level-function): Ditto.
15539
15540         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
15541
15542         * gnus-art.el (gnus-signature-limit)
15543         (gnus-article-mime-part-function): Ditto.
15544
15545 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15546
15547         * mml.el (mml-mode): Silence the byte compiler.
15548
15549         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
15550         using `(sit-for 0)' before moving the point to the specified part;
15551         skip unbuttonized parts.
15552         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
15553         return to the summary window if gnus-auto-select-part is non-nil.
15554
15555 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
15556
15557         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
15558         New variables.
15559         (mml-dnd-attach-file, mml-mode): Use them.
15560
15561         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
15562         Make fetching article by MID work again for Google Groups.
15563         Add FIXME concerning gnus-group-make-web-group.
15564
15565         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
15566         Don't depend on Gnus by using mail-extract-address-components if
15567         gnus-extract-address-components is not bound.
15568
15569 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15570
15571         * gnus-art.el (gnus-mime-display-security): Don't display the
15572         signature, but only the signed part.
15573
15574 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15575
15576         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
15577
15578         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
15579         list, not listp.
15580
15581 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
15582
15583         * mm-encode.el (mm-encode-content-transfer-encoding):
15584         Likewise when encoding.
15585
15586         * mm-bodies.el (mm-decode-content-transfer-encoding):
15587         De-canonicalize CRLF for all text content types, not just
15588         text/plain.
15589
15590 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15591
15592         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
15593         valid article; point arrow and cursor at the MIME button.
15594
15595 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15596
15597         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
15598         Suggested by Dan Christensen <jdc@uwo.ca>.
15599
15600         * mm-decode.el (mm-save-part): Enable change of prompt.
15601
15602 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
15603
15604         * gnus-msg.el (gnus-inews-add-send-actions):
15605         Make `message-post-method' lambda parameter ARG `&optional'.
15606
15607 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
15608
15609         * gnus-sum.el (gnus-summary-mime-map):
15610         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
15611         gnus-article-jump-to-part.
15612
15613         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
15614         (gnus-article-edit-part): Use it.
15615         (gnus-article-part-wrapper): Add no-handle argument.
15616         (gnus-article-save-part-and-strip, gnus-article-delete-part):
15617         New functions.
15618
15619 2005-08-29  Romain Francoise  <romain@orebokech.com>
15620
15621         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
15622         docstring.
15623         (gnus-face-from-file): Likewise.
15624
15625 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
15626
15627         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
15628         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
15629         non-nil.
15630         (gnus-auto-select-part): New variable.
15631         (gnus-article-jump-to-part): New function.
15632         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
15633         (gnus-mime-delete-part): Allow selecting specified part after
15634         deleting or stripping parts.
15635         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
15636         part if argument is bogus.
15637
15638 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
15639
15640         * gnus-art.el (w3m-minor-mode-map):
15641         * gnus-spec.el (gnus-newsrc-file-version):
15642         * gnus-util.el (nnmail-active-file-coding-system)
15643         (gnus-original-article-buffer, gnus-user-agent):
15644         * gnus.el (gnus-ham-process-destinations)
15645         (gnus-parameter-ham-marks-alist)
15646         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
15647         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
15648         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
15649         * mm-decode.el (gnus-current-window-configuration):
15650         * mm-extern.el (gnus-article-mime-handles):
15651         * mm-url.el (url-current-object, url-package-name)
15652         (url-package-version):
15653         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
15654         (smime-keys, w3m-cid-retrieve-function-alist)
15655         (w3m-current-buffer, w3m-display-inline-images)
15656         (w3m-minor-mode-map):
15657         * mml-smime.el (gnus-extract-address-components):
15658         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
15659         (gnus-newsrc-hashtb, message-default-charset)
15660         (message-deletable-headers, message-options)
15661         (message-posting-charset, message-required-mail-headers)
15662         (message-required-news-headers):
15663         * mml1991.el (mc-pgp-always-sign):
15664         * mml2015.el (mc-pgp-always-sign):
15665         * nnheader.el (nnmail-extra-headers):
15666         * rfc1843.el (gnus-decode-encoded-word-function)
15667         (gnus-decode-header-function, gnus-newsgroup-name):
15668         * spam-stat.el (gnus-original-article-buffer): Add defvars.
15669
15670 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
15671
15672         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
15673         the end of the date treatments.
15674
15675 2005-08-15  Simon Josefsson  <jas@extundo.com>
15676
15677         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
15678         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
15679         Capello and Romain Francoise.
15680         (pgg-fetch-key-function): Remove, not used?
15681         (pgg-insert-url-with-w3): Require url, to get
15682         url-insert-file-contents regardless of where it is defined.
15683
15684 2005-08-13  Romain Francoise  <romain@orebokech.com>
15685
15686         * message.el (message-cite-original-1): New function.
15687         (message-cite-original): Use it.
15688         (message-cite-original-without-signature): Ditto.
15689
15690 2005-08-08  Romain Francoise  <romain@orebokech.com>
15691
15692         * message.el (message-yank-empty-prefix): New variable.
15693         (message-indent-citation): Use it.
15694         (message-cite-original-without-signature): Respect X-No-Archive.
15695
15696 2005-08-08  Simon Josefsson  <jas@extundo.com>
15697
15698         * pgg.el: Autoload url-insert-file-contents instead of loading
15699         w3/url.
15700         (pgg-insert-url-with-w3): Don't load url here.
15701
15702 2005-08-07  Jesper Harder  <harder@phys.au.dk>
15703
15704         * message.el (message-kill-to-signature): Don't insert newline at
15705         bol.
15706         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
15707
15708 2005-08-06  Romain Francoise  <romain@orebokech.com>
15709
15710         * message.el (message-user-fqdn): Fix typo in docstring.
15711
15712 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
15713
15714         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
15715
15716         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
15717
15718 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15719
15720         * mm-bodies.el (mm-encode-body): Use coding system rather than
15721         charset to encode text.
15722
15723         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
15724         number of charsets if utf-8 is available (XEmacs).
15725
15726 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
15727
15728         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
15729         taken from `gnus-button-mid-or-mail-regexp'.
15730         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
15731         (gnus-button-alist): Improve regexp for domain part of the MIDs
15732         for news:localpart@domain buttons.
15733         (gnus-button-ctan-directory-regexp): Update.
15734
15735 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15736
15737         * sieve-manage.el (sieve-manage-interactive-login):
15738         Use make-local-variable rather than make-variable-buffer-local.
15739         (sieve-manage-open): Ditto.
15740         (sieve-manage-authenticate): Ditto.
15741
15742         * mml.el (mml-generate-mime-1): Make the content type default to
15743         text/plain if the filename is not specified.
15744
15745 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15746
15747         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
15748         instead of insert-buffer.
15749
15750         * message.el (message-yank-original): Ditto; set the mark at the
15751         end of the yanked message.
15752
15753 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15754
15755         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
15756         lines to scroll rather than to stop it.
15757
15758         * mml.el (mml-generate-default-type): Add doc string.
15759         (mml-generate-mime-1): Use mm-default-file-encoding or make it
15760         default to application/octet-stream when determining the content
15761         type if it is not specified for the part or the mml contents; add
15762         a comment about mml-generate-default-type.
15763
15764 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
15765
15766         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
15767         make it default to application/octet-stream when determining the
15768         content type if it is not specified for the external contents.
15769
15770 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15771
15772         * rfc2231.el (rfc2231-parse-string): Take care that not only a
15773         segmented parameter but also other parameters might be there.
15774
15775 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15776
15777         * mm-decode.el (mm-display-external): Delete temp file, directory
15778         and buffer immediately if the external process is exited.
15779
15780 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15781
15782         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
15783         fewer lines than that of scroll-margin.
15784         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
15785
15786 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15787
15788         * gnus-art.el (gnus-article-next-page): Revert.
15789         (gnus-article-beginning-of-window): New macro.
15790         (gnus-article-next-page-1): Use it.
15791         (gnus-article-prev-page): Ditto.
15792         (gnus-article-edit-part): Use insert-buffer-substring instead of
15793         insert-buffer.
15794         (gnus-article-edit-exit): Ditto.
15795
15796         * gnus-util.el (gnus-beginning-of-window): Remove.
15797         (gnus-end-of-window): Remove.
15798
15799         * lpath.el: Don't bind header-line-format and scroll-margin.
15800
15801 2005-07-25  Simon Josefsson  <jas@extundo.com>
15802
15803         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
15804         to have the url package without w3.  Reported by Daiki Ueno
15805         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
15806
15807 2005-07-20  Didier Verna  <didier@xemacs.org>
15808
15809         * gnus-diary.el: Remove the description comment (nndiary is now
15810         properly documented in the Gnus manual).
15811         Fix the spelling of "Back End".
15812         * nndiary.el: Ditto.
15813         Fix the copyright notice.
15814
15815 2005-07-18  Romain Francoise  <romain@orebokech.com>
15816
15817         * gnus-sum.el (gnus-summary-to-prefix)
15818         (gnus-summary-newsgroup-prefix): New variables.
15819         (gnus-summary-from-or-to-or-newsgroups): Use them.
15820
15821 2005-07-17  Romain Francoise  <romain@orebokech.com>
15822
15823         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
15824         space as it's generally not especially interesting to the user.
15825
15826 2005-07-16  Romain Francoise  <romain@orebokech.com>
15827
15828         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
15829         nil to avoid prompting and file modification if one of the
15830         messages at the top of the nnfolder file contains a copyright
15831         notice.
15832         Update copyright notice.
15833
15834         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
15835         instead of `current-time-string' as the latter creates a time
15836         string that is not RFC 2822 compliant (it lacks the zone).
15837         Update copyright notice.
15838
15839 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15840
15841         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
15842         for text/rtf.  Display default in prompt.  Pass default for M-n.
15843
15844         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
15845
15846 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15847
15848         * gnus-msg.el (gnus-button-mailto):
15849         Remove save-selected-window-window hackery because it relies on
15850         save-selected-window internals.
15851
15852 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15853
15854         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
15855         (gnus-article-next-page-1): Use gnus-beginning-of-window.
15856         (gnus-article-prev-page): Ditto.
15857
15858         * gnus-util.el (gnus-beginning-of-window): New function.
15859         (gnus-end-of-window): New function.
15860
15861         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
15862
15863 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
15864
15865         * gnus-score.el (gnus-score-edit-all-score):
15866         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
15867         gnus-message.
15868
15869 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15870
15871         * gnus-msg.el (gnus-button-mailto):
15872         Remove save-selected-window-window hackery because it relies on
15873         save-selected-window internals.
15874
15875 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15876
15877         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
15878         add-minor-mode.
15879         (gnus-binary-mode): Ditto.
15880
15881         * gnus-topic.el (gnus-topic-mode): Ditto.
15882
15883 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
15884
15885         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
15886         (gnus-article-prev-page): Take scroll-margin into consideration.
15887
15888 2005-07-04  Lute Kamstra  <lute@gnu.org>
15889
15890         Update FSF's address in GPL notices.
15891
15892 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
15893
15894         * gnus.el (gnus-exit):
15895         * gnus-group.el (gnus-group-icons):
15896         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
15897
15898         * gnus-nocem.el (gnus-nocem):
15899         * message.el (message-various, message-buffers, message-sending)
15900         (message-interface, message-forwarding, message-insertion)
15901         (message-headers, message-news, message-mail):
15902         * pgg-gpg.el (pgg-gpg):
15903         * pgg-parse.el (pgg-parse):
15904         * pgg-pgp.el (pgg-pgp):
15905         * pgg-pgp5.el (pgg-pgp5):
15906         * pop3.el (pop3): Finish `defgroup' description with period.
15907
15908 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15909
15910         * gnus-art.el (article-display-face): Improve the efficiency.
15911         (article-display-x-face): Ditto; remove grey x-face stuff.
15912
15913 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15914
15915         * gnus-art.el (article-display-face): Correct the position in
15916         which Faces are inserted.
15917
15918 2005-06-29  Didier Verna  <didier@xemacs.org>
15919
15920         * gnus-art.el (article-display-face): Display faces in correct
15921         order.
15922
15923 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15924
15925         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
15926         (gnus-fill-real-hashtb): Use hash table instead of obarray.
15927         (gnus-nocem-check-article): Fetch the Type header.
15928         (gnus-nocem-message-wanted-p): Fix the way to examine types.
15929         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
15930         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
15931         make sure gnus-nocem-hashtb is initialized.
15932         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
15933         (gnus-nocem-unwanted-article-p): Ditto.
15934
15935         * pgg.el (pgg-verify): Return the verification result.
15936
15937 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15938
15939         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
15940         is ascii.
15941
15942 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
15943
15944         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
15945         `show-nonbreak-escape'.
15946
15947 2005-06-23  Lute Kamstra  <lute@gnu.org>
15948
15949         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
15950
15951         * dig.el (dig-mode):
15952         * smime.el (smime-mode): Use gnus-run-mode-hooks.
15953
15954 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
15955
15956         * nnimap.el (nnimap-split-download-body): Fix spellings.
15957
15958 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
15959
15960         * gnus-art.el (gnus-article-encrypt-body):
15961         * gnus-cus.el (gnus-score-customize):
15962         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
15963         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
15964
15965 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
15966
15967         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
15968         header by looking for magic "MII" at the beginnig.
15969
15970 2005-06-16  Miles Bader  <miles@gnu.org>
15971
15972         * gnus-xmas.el (gnus-xmas-group-startup-message):
15973         Use renamed gnus-splash face.
15974
15975         * assistant.el (assistant-field): Remove "-face" suffix from face name.
15976         (assistant-field-face): New backward-compatibility alias for renamed
15977         face.
15978         (assistant-render-text): Use renamed assistant-field face.
15979
15980         * spam.el (spam): Remove "-face" suffix from face name.
15981         (spam-face): New backward-compatibility alias for renamed face.
15982         (spam-face, spam-initialize): Use renamed spam face.
15983
15984         * message.el (message-header-to, message-header-cc)
15985         (message-header-subject, message-header-newsgroups)
15986         (message-header-other, message-header-name)
15987         (message-header-xheader, message-separator, message-cited-text)
15988         (message-mml): Remove "-face" suffix from face names.
15989         (message-header-to-face, message-header-cc-face)
15990         (message-header-subject-face, message-header-newsgroups-face)
15991         (message-header-other-face, message-header-name-face)
15992         (message-header-xheader-face, message-separator-face)
15993         (message-cited-text-face, message-mml-face):
15994         New backward-compatibility aliases for renamed faces.
15995         (message-font-lock-keywords): Use renamed message faces.
15996
15997         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
15998         (sieve-test-commands, sieve-tagged-arguments):
15999         Remove "-face" suffix from face names.
16000         (sieve-control-commands-face, sieve-action-commands-face)
16001         (sieve-test-commands-face, sieve-tagged-arguments-face):
16002         New backward-compatibility aliases for renamed faces.
16003         (sieve-control-commands-face, sieve-action-commands-face)
16004         (sieve-test-commands-face, sieve-tagged-arguments-face):
16005         Use renamed sieve faces.
16006
16007         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
16008         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
16009         (gnus-group-news-3-empty, gnus-group-news-4)
16010         (gnus-group-news-4-empty, gnus-group-news-5)
16011         (gnus-group-news-5-empty, gnus-group-news-6)
16012         (gnus-group-news-6-empty, gnus-group-news-low)
16013         (gnus-group-news-low-empty, gnus-group-mail-1)
16014         (gnus-group-mail-1-empty, gnus-group-mail-2)
16015         (gnus-group-mail-2-empty, gnus-group-mail-3)
16016         (gnus-group-mail-3-empty, gnus-group-mail-low)
16017         (gnus-group-mail-low-empty, gnus-summary-selected)
16018         (gnus-summary-cancelled, gnus-summary-high-ticked)
16019         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
16020         (gnus-summary-high-ancient, gnus-summary-low-ancient)
16021         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
16022         (gnus-summary-low-undownloaded)
16023         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
16024         (gnus-summary-low-unread, gnus-summary-normal-unread)
16025         (gnus-summary-high-read, gnus-summary-low-read)
16026         (gnus-summary-normal-read, gnus-splash):
16027         Remove "-face" suffix from face names.
16028         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
16029         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
16030         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
16031         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
16032         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
16033         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
16034         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
16035         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
16036         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
16037         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
16038         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
16039         (gnus-summary-selected-face, gnus-summary-cancelled-face)
16040         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
16041         (gnus-summary-normal-ticked-face)
16042         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
16043         (gnus-summary-normal-ancient-face)
16044         (gnus-summary-high-undownloaded-face)
16045         (gnus-summary-low-undownloaded-face)
16046         (gnus-summary-normal-undownloaded-face)
16047         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
16048         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
16049         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
16050         (gnus-splash-face):
16051         New backward-compatibility aliases for renamed faces.
16052         (gnus-group-startup-message): Use renamed gnus faces.
16053
16054         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
16055         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
16056         (gnus-server-agent): Remove "-face" suffix from face names.
16057         (gnus-server-agent-face, gnus-server-opened-face)
16058         (gnus-server-closed-face, gnus-server-denied-face)
16059         (gnus-server-offline-face):
16060         New backward-compatibility aliases for renamed faces.
16061         (gnus-server-agent-face, gnus-server-opened-face)
16062         (gnus-server-closed-face, gnus-server-denied-face)
16063         (gnus-server-offline-face): Use renamed gnus faces.
16064
16065         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
16066         Remove "-face" suffix from face names.
16067         (gnus-picon-xbm-face, gnus-picon-face):
16068         New backward-compatibility aliases for renamed faces.
16069
16070         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
16071         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
16072         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
16073         (gnus-cite-11): Remove "-face" suffix from face names.
16074         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
16075         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
16076         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
16077         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
16078         New backward-compatibility aliases for renamed faces.
16079         (gnus-cite-attribution-face, gnus-cite-face-list)
16080         (gnus-article-boring-faces): Use renamed gnus faces.
16081
16082         * gnus-art.el (gnus-signature, gnus-header-from)
16083         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
16084         (gnus-header-content): Remove "-face" suffix from face names.
16085         (gnus-signature-face, gnus-header-from-face)
16086         (gnus-header-subject-face, gnus-header-newsgroups-face)
16087         (gnus-header-name-face, gnus-header-content-face):
16088         New backward-compatibility aliases for renamed faces.
16089         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
16090
16091         * gnus-sum.el (gnus-summary-selected-face)
16092         (gnus-summary-highlight): Use renamed gnus faces.
16093         * gnus-group.el (gnus-group-highlight): Likewise.
16094
16095 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
16096
16097         * gnus-sieve.el (gnus-sieve-article-add-rule):
16098         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
16099         * spam-stat.el (spam-stat-buffer-change-to-spam)
16100         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
16101
16102         * message.el (message-is-yours-p):
16103         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
16104
16105 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16106
16107         * mm-view.el (mm-inline-text): Withdraw the last change.
16108
16109 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16110
16111         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
16112         executing enriched-decode.
16113
16114 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16115
16116         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
16117         charset of tar files.
16118
16119 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
16120
16121         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
16122
16123 2005-06-04  Lute Kamstra  <lute@gnu.org>
16124
16125         * nnfolder.el (nnfolder-read-folder): Make sure that undo
16126         information is never recorded.
16127
16128 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16129
16130         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
16131
16132 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16133
16134         * pop3.el (pop3-apop): Run md5 in the binary mode.
16135
16136         * starttls.el (starttls-set-process-query-on-exit-flag):
16137         Use eval-and-compile.
16138
16139 2005-05-31  Simon Josefsson  <jas@extundo.com>
16140
16141         * smime.el (smime-replace-in-string): Define.
16142         (smime-cert-by-ldap-1): Use it.
16143
16144 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
16145
16146         * gnus-art.el (article-display-x-face): Replace
16147         process-kill-without-query by gnus-set-process-query-on-exit-flag.
16148
16149         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
16150         set-process-query-on-exit-flag or process-kill-without-query.
16151
16152         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
16153         loop instead of replace-regexp.
16154
16155         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
16156         instead of process-kill-without-query if it is available.
16157
16158         * lpath.el: Fbind ldap-search-entries.
16159
16160         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
16161         instead of find-file-hooks if it is available.
16162
16163         * mml1991.el: Bind pgg-default-user-id when compiling.
16164
16165         * mml2015.el: Bind pgg-default-user-id when compiling.
16166
16167         * nndraft.el (nndraft-request-associate-buffer):
16168         Use write-contents-functions instead of write-contents-hooks if it is
16169         available.
16170
16171         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
16172         instead of find-file-hooks if it is available.
16173
16174         * nntp.el (nntp-open-connection): Replace
16175         process-kill-without-query by gnus-set-process-query-on-exit-flag.
16176         (nntp-open-ssl-stream): Ditto.
16177         (nntp-open-tls-stream): Ditto.
16178
16179         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
16180         set-process-query-on-exit-flag or process-kill-without-query.
16181         (starttls-open-stream-gnutls): Use it instead of
16182         process-kill-without-query.
16183         (starttls-open-stream): Ditto.
16184
16185 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
16186
16187         * smime.el (smime-cert-by-ldap-1): Don't use
16188         replace-regexp-in-string.
16189
16190 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
16191
16192         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
16193
16194         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
16195         in PEM format.  Adjust to the XEmacs compability.
16196
16197 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
16198
16199         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
16200         by `string-to-number'.
16201         * gnus-agent.el (gnus-agent-regenerate-group)
16202         (gnus-agent-fetch-articles): Ditto.
16203         * gnus-art.el (gnus-button-fetch-group): Ditto.
16204         * gnus-cache.el (gnus-cache-generate-active)
16205         (gnus-cache-articles-in-group): Ditto.
16206         * gnus-group.el (gnus-group-set-current-level)
16207         (gnus-group-insert-group-line): Ditto.
16208         * gnus-score.el (gnus-score-set-expunge-below)
16209         (gnus-score-set-mark-below, gnus-summary-score-effect)
16210         (gnus-summary-score-entry): Ditto.
16211         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
16212         (gnus-soup-pack): Ditto.
16213         * gnus-spec.el (gnus-xmas-format): Ditto.
16214         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
16215         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
16216         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
16217         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
16218         * nndb.el (nndb-get-remote-expire-response): Ditto.
16219         * nndiary.el (nndiary-parse-schedule-value)
16220         (nndiary-string-to-number, nndiary-request-replace-article)
16221         (nndiary-request-article): Ditto.
16222         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
16223         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
16224         * nneething.el (nneething-make-head): Ditto.
16225         * nnfolder.el (nnfolder-request-article)
16226         (nnfolder-retrieve-headers): Ditto.
16227         * nnheader.el (nnheader-file-to-number): Ditto.
16228         * nnkiboze.el (nnkiboze-request-article): Ditto.
16229         * nnmail.el (nnmail-process-unix-mail-format)
16230         (nnmail-process-babyl-mail-format): Ditto.
16231         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
16232         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
16233         (nnmh-request-create-group, nnmh-request-list-1)
16234         (nnmh-request-group, nnmh-request-article): Ditto.
16235         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
16236         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
16237         * nnsoup.el (nnsoup-make-active): Ditto.
16238         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
16239         * nntp.el (nntp-find-group-and-number)
16240         (nntp-retrieve-headers-with-xover): Ditto.
16241         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
16242         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
16243         (pgg-format-key-identifier): Ditto.
16244         * pop3.el (pop3-last, pop3-stat): Ditto.
16245         * qp.el (quoted-printable-decode-region): Ditto.
16246
16247         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
16248         of concat.
16249
16250 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16251
16252         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
16253
16254         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
16255
16256         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
16257
16258         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
16259
16260         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
16261
16262         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
16263
16264         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
16265         (gnus-carpal-mode): Ditto.
16266
16267         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
16268         (gnus-browse-mode): Ditto.
16269
16270         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
16271
16272         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
16273
16274 2005-05-29  Richard M. Stallman  <rms@gnu.org>
16275
16276         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
16277
16278 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16279
16280         * gnus-util.el (gnus-run-mode-hooks): New function.
16281
16282         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
16283
16284         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
16285         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
16286
16287 2005-05-27  Lute Kamstra  <lute@gnu.org>
16288
16289         * dns-mode.el (dns-mode): Specify customization group.
16290
16291 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
16292
16293         * gnus-agent.el (gnus-agent-make-mode-line-string):
16294         Use mode-line-highlight as mouse-face.
16295
16296 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16297
16298         * canlock.el (canlock): Change the parent group to news.
16299
16300         * deuglify.el (gnus-outlook-deuglify): Add :group.
16301
16302         * dig.el (dig): Add :group.
16303
16304         * dns-mode.el (dns-mode): Add :group.
16305
16306         * encrypt.el (encrypt): Add :group.
16307
16308         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
16309         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
16310         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
16311         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
16312         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
16313
16314         * gnus-diary.el (gnus-diary): Add :group.
16315
16316         * gnus.el (gnus-group-news-1-face): Add :group.
16317         (gnus-group-news-1-empty-face): Ditto.
16318         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
16319         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
16320         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
16321         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
16322         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
16323         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
16324         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
16325         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
16326         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
16327         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
16328         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
16329         (gnus-summary-high-ticked-face): Ditto.
16330         (gnus-summary-low-ticked-face): Ditto.
16331         (gnus-summary-normal-ticked-face): Ditto.
16332         (gnus-summary-high-ancient-face): Ditto.
16333         (gnus-summary-low-ancient-face): Ditto.
16334         (gnus-summary-normal-ancient-face): Ditto.
16335         (gnus-summary-high-undownloaded-face): Ditto.
16336         (gnus-summary-low-undownloaded-face): Ditto.
16337         (gnus-summary-normal-undownloaded-face): Ditto.
16338         (gnus-summary-high-unread-face): Ditto.
16339         (gnus-summary-low-unread-face): Ditto.
16340         (gnus-summary-normal-unread-face): Ditto.
16341         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
16342         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
16343
16344         * hashcash.el (hashcash): New custom group.
16345         (hashcash-default-payment): Add :group.
16346         (hashcash-payment-alist): Ditto.
16347         (hashcash-default-accept-payment): Ditto.
16348         (hashcash-accept-resources): Ditto.
16349         (hashcash-path): Ditto.
16350         (hashcash-extra-generate-parameters): Ditto.
16351         (hashcash-double-spend-database): Ditto.
16352         (hashcash-in-news): Ditto.
16353
16354         * message.el (message-minibuffer-local-map): Add :group.
16355
16356         * netrc.el (netrc): Add :group.
16357
16358         * sieve-manage.el (sieve-manage-log): Add :group.
16359         (sieve-manage-default-user): Diito.
16360         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
16361         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
16362         (sieve-manage-authenticators): Ditto.
16363         (sieve-manage-authenticator-alist): Ditto.
16364         (sieve-manage-default-port): Ditto.
16365
16366         * sieve-mode.el (sieve-control-commands-face): Add :group.
16367         (sieve-action-commands-face): Ditto.
16368         (sieve-test-commands-face): Ditto.
16369         (sieve-tagged-arguments-face): Ditto.
16370
16371         * smime.el (smime): Add :group.
16372
16373         * spam-report.el (spam-report): Add :group.
16374
16375         * spam.el (spam, spam-face): Add :group.
16376
16377 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16378
16379         * nntp.el (nntp-next-result-arrived-p): Some news servers may
16380         return \n.\n.\n at the end of articles.  Protect against that.
16381         (nntp-with-open-group): Allow debugging.
16382
16383         * nnheader.el (mail-header-set-extra): Make into a function
16384         because I just could't understand how to quote the list properly.
16385
16386         * dns.el (query-dns-cached): New function.
16387
16388 2005-05-26  Lute Kamstra  <lute@gnu.org>
16389
16390         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
16391
16392 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16393
16394         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
16395
16396         * gnus-art.el: Don't autoload mail-extract-address-components.
16397
16398         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
16399         eval-and-compile to evaluate it.
16400
16401         * hashcash.el: Don't autoload executable-find.
16402
16403         * nndb.el: Don't declare the nndb back end two or more times; don't
16404         autoload news-reply-mode, news-setup, cancel-timer and telnet.
16405
16406         * nntp.el: Autoload format-spec instead of format; use
16407         eval-and-compile to evaluate autoload forms.
16408
16409 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
16410
16411         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
16412
16413 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16414
16415         * gnus.el (gnus-version-number): Bump version.
16416
16417 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16418
16419         * gnus.el: No Gnus v0.3 is released.
16420
16421 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16422
16423         * lpath.el (featurep): Bind show-nonbreak-escape.
16424
16425 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16426
16427         * gnus-art.el (gnus-article-edit-part): Disable undo.
16428
16429 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16430
16431         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
16432         gnus-article-date-lapsed-new-header is t if date timer is active;
16433         skip headers in which the original date value is empty.
16434         (gnus-article-save-original-date): Redefine it as a macro.
16435         (gnus-display-mime): Use it.
16436
16437 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16438
16439         * gnus-art.el (article-date-ut): Support converting date in
16440         forwarded parts as well.
16441         (gnus-article-save-original-date): New function.
16442         (gnus-display-mime): Use it.
16443
16444 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
16445
16446         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
16447         enclosure element of <item>.
16448
16449 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
16450
16451         * message.el (message-kill-buffer-query): Rename from
16452         `message-kill-buffer-query-if-modified'.  Add :version.
16453
16454 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16455
16456         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
16457         window layout.
16458
16459 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16460
16461         * mml.el: Autoload dnd when compiling.
16462
16463 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
16464
16465         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
16466         x-dnd-*.
16467
16468 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16469
16470         * qp.el (quoted-printable-encode-region): Save excursion.
16471
16472 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
16473
16474         * message.el (message-kill-buffer-query-if-modified): Add new variable
16475         so the user can kill a modified message buffer quickly.
16476         (message-kill-buffer): Use it.
16477
16478 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16479
16480         * lpath.el: Fbind display-time-event-handler; don't fbind
16481         string-to-multibyte.
16482
16483         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
16484
16485 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16486
16487         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
16488         contained in text because xml.el decodes entities) with LFs.
16489
16490 2005-04-11  Lute Kamstra  <lute@gnu.org>
16491
16492         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
16493         differently.
16494
16495 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
16496
16497         * mm-util.el (mm-detect-coding-region): Typo.
16498
16499 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16500
16501         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
16502
16503 2005-04-06  Deepak Goel  <deego@gnufans.org>
16504
16505         * spam-stat.el (spam-stat-score-buffer): Add a call to a
16506         user-function allow user modifications of the scores.
16507         (spam-stat-score-buffer-user): New function, to allow
16508         user-computed modifications to the score.
16509         (spam-stat-score-buffer-user-functions): List of additional
16510         scoring functions.
16511         (spam-stat-error-holder): Global temporary error holder.
16512         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
16513         variable.
16514
16515 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
16516
16517         * gnus-registry.el (gnus-registry-clean-empty-function)
16518         (gnus-registry-trim, gnus-registry-fetch-groups)
16519         (gnus-registry-delete-group): Groups that match
16520         `gnus-registry-ignored-groups' are removed from the registry
16521         entries, not just ignored for splitting.  This helps clean up the
16522         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
16523         to get all the groups a message ID is in.
16524
16525         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
16526         (spam-stat-split-fancy): Change "threshhold" to "threshold".
16527         (spam-stat-score-buffer-user-functions): Add :number custom type.
16528
16529 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16530
16531         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
16532         argument in XEmacs.
16533
16534         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
16535         (nnrss-request-group): Decode group name first.
16536         (nnrss-request-article): Make a text/plain article if mml-to-mime
16537         failed.
16538         (nnrss-get-encoding): Return a compatible encoding according to
16539         nnrss-compatible-encoding-alist.
16540         (nnrss-find-el): Use consp instead of listp.
16541         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
16542
16543 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16544
16545         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
16546         which Emacs 20 doesn't support.
16547         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
16548
16549 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
16550
16551         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
16552         silence the byte compiler inside the defun.
16553
16554         * gnus-demon.el (parse-time-string): Add autoload.
16555
16556         * gnus-delay.el (parse-time-string): Add autoload.
16557
16558         * gnus-art.el (parse-time-string): Add autoload.
16559
16560         * nnultimate.el (parse-time): Require for `parse-time-string'.
16561
16562 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
16563
16564         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
16565
16566         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
16567
16568         * smime.el (smime-ldap-host-list): Add :version.
16569
16570 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
16571
16572         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
16573         pass it to `gnus-browse-read-group'.
16574         (gnus-browse-read-group): Add NUMBER argument and pass it to
16575         `gnus-group-read-ephemeral-group'.
16576
16577         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
16578         argument and pass it to `gnus-group-read-group'.
16579
16580 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
16581
16582         * mm-util.el (mm-xemacs-find-mime-charset): Only call
16583         mm-xemacs-find-mime-charset-1 if we have the mule feature
16584         available at runtime.
16585
16586 2005-03-25  Werner Lemberg  <wl@gnu.org>
16587
16588         * nnmaildir.el: Replace `illegal' with `invalid'.
16589
16590 2005-03-23  Lute Kamstra  <lute@gnu.org>
16591
16592         * time-date.el: Add comment on time value formats.
16593         Don't require parse-time.
16594         (with-decoded-time-value): New macro.
16595         (encode-time-value): New function.
16596         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
16597         (days-to-time): Return a valid time value when arg is huge.
16598         (time-since): Use time-subtract.
16599         (time-to-number-of-days): Use time-to-seconds.
16600
16601 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16602
16603         * gnus-start.el (gnus-display-time-event-handler):
16604         Check display-time-timer at runtime rather than only at load time
16605         in case display-time-mode is turned off in the mean time.
16606
16607 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
16608
16609         * nnimap.el (nnimap-open-connection): Print which authinfo file is
16610         used.
16611
16612         * nneething.el (nneething-map-file-directory): Derive from
16613         `gnus-directory'.
16614
16615         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
16616         the To/Cc button.
16617
16618 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
16619
16620         * nnmaildir.el (nnmaildir-request-accept-article):
16621         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
16622
16623 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
16624
16625         * gnus-async.el: Require timer-funcs at compile time when in
16626         XEmacs for `run-with-idle-timer'.
16627
16628 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
16629
16630         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
16631         autoloaded function.
16632
16633 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
16634
16635         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
16636
16637 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
16638
16639         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
16640
16641 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16642
16643         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
16644         Add gnus-expert-user to default.
16645
16646 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
16647
16648         * nnimap.el (nnimap-open-server): Ditto.
16649
16650         * imap.el (imap-authenticate): Fix typo.
16651
16652 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
16653
16654         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
16655         buffer (since IMAP server might return FETCH response out of
16656         order, and the nntp buffer must be sorted).
16657
16658 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
16659
16660         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
16661         comparison on string.
16662
16663         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
16664         (gnus-agent-score): Rename category keywords to match gnus-cus.
16665         (gnus-agent-summary-fetch-series): Modify to protect against
16666         gnus-agent-summary-fetch-group clearing processable flags.
16667         (gnus-agent-synchronize-group-flags): Update live group buffer as
16668         synchronization may occur due to the user toggle the plugged
16669         status.
16670         (gnus-agent-fetch-group-1): Clear downloadable flag when article
16671         successfully downloaded.
16672         (gnus-agent-expire-group-1): Avoid using markers when the overview
16673         is in ascending order; greatly improves performance.
16674         (gnus-agent-regenerate-group):
16675         Use gnus-agent-synchronize-group-flags to reset read status in both
16676         gnus and server.
16677         (gnus-agent-update-files-total-fetched-for): Fix initial size.
16678
16679 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
16680
16681         * message.el: Don't autoload former message-utils variables.
16682         (message-strip-subject-trailing-was): Change doc string.
16683
16684         * nnweb.el: Fixes for `gnus-group-make-web-group'.
16685         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
16686         (nnweb-google-search): Add "hl=en" here.
16687         (nnweb-google-parse-1, nnweb-google-create-mapping):
16688         Don't hardcode URL.
16689
16690 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
16691
16692         * message.el (message-get-reply-headers, message-followup):
16693         Mention related variables `message-use-followup-to' and
16694         `message-use-mail-followup-to', in the information buffer.
16695
16696         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
16697         of broken groups(-beta).google.com.
16698
16699 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
16700
16701         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
16702         parameter to invoked gnus-request-move-article; remove the
16703         redundant gnus-sum-hint-move-is-internal variable; apply the marks
16704         all at once instead of once per article.
16705         (gnus-summary-remove-process-mark): Accept a list of articles as
16706         well as a single article for processing.
16707
16708         * gnus-int.el (gnus-request-move-article): Add move-is-internal
16709         parameter.
16710
16711         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
16712
16713         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
16714
16715         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
16716         parameter.
16717
16718         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
16719         parameter.
16720
16721         * nnimap.el (nnimap-request-move-article): Add move-is-internal
16722         parameter and remove the gnus-sum-hint-move-is-internal variable.
16723
16724         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
16725         parameter.
16726
16727         * nndraft.el (nndraft-request-move-article): Add move-is-internal
16728         parameter.
16729
16730         * nndiary.el (nndiary-request-move-article): Add move-is-internal
16731         parameter.
16732
16733         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
16734
16735         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
16736         parameter.
16737
16738         * nnagent.el (nnagent-request-move-article): Add move-is-internal
16739         parameter.
16740
16741 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
16742
16743         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
16744         a more conservative way.
16745
16746 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
16747
16748         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
16749         buffer, so it moves the window's cursor.
16750
16751 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
16752
16753         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
16754         `mm-dissect-multipart' and receive the from field as an (optional)
16755         argument from `mm-dissect-multipart'.
16756         (mm-dissect-multipart): Receive the from field as an argument and
16757         pass it on when we call `mm-dissect-buffer' on MIME parts.
16758         Fixes verification/decryption of signed/encrypted MIME parts.
16759
16760 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
16761
16762         * gnus-sum.el (gnus-summary-move-article):
16763         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
16764         whatever it calls (right now, only nnimap-request-move article
16765         respects it).
16766
16767         * nnimap.el (nnimap-request-move-article):
16768         When gnus-sum-hint-move-is-internal is set, don't do the extra
16769         nnimap-request-article.
16770
16771 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
16772
16773         * nnheader.el (nnheader-find-file-noselect): Add doc string.
16774
16775         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
16776         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
16777
16778         * gnus-sum.el (gnus-summary-caesar-message):
16779         Apply `gnus-treat-article' after rotation.
16780
16781         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
16782         doc string.
16783
16784 2005-02-22  Simon Josefsson  <jas@extundo.com>
16785
16786         * encrypt.el (encrypt-password-cache-expiry): Remove (use
16787         `password-cache-expiry' instead).  Reported by Arne Jørgensen
16788         <arne@arnested.dk>.
16789         (encrypt): Add password-cache and password-cache-expiry as group
16790         members.
16791
16792 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
16793
16794         * smime.el (smime-ldap-host-list): Doc fix.
16795         (smime-ask-passphrase): Use `password-read-and-add' to read (and
16796         cache) password.
16797         (smime-sign-region): Use it.
16798         (smime-decrypt-region): Use it.
16799         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
16800         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
16801         fails.
16802         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
16803         certificate from DER to PEM format rather than calling openssl.
16804
16805         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
16806
16807         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
16808         for signing/encryption.
16809
16810         * mml.el (mml-parse-1): Use them.
16811
16812 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
16813
16814         * nnrss.el (nnrss-verbose): Remove.
16815         (nnrss-request-group): Use `nnheader-message' instead.
16816
16817 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
16818
16819         * nnrss.el (nnrss-verbose): New variable.
16820         (nnrss-request-group): Make it say nnrss is requesting a group.
16821
16822 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
16823
16824         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
16825         Handle news URL with given port correctly.
16826
16827 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16828
16829         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
16830         containing special characters.
16831
16832         * gnus-sum.el (gnus-summary-edit-article): Ditto.
16833
16834         * mml.el (mime-to-mml): Ditto.
16835
16836         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
16837         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
16838         (rfc2047-decode-region): Quote decoded words containing special
16839         characters when rfc2047-quote-decoded-words-containing-tspecials
16840         is non-nil.
16841
16842 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
16843
16844         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
16845
16846         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
16847
16848 2005-02-15  Simon Josefsson  <jas@extundo.com>
16849
16850         * nnimap.el (nnimap-debug): Doc fix.
16851
16852         * imap.el (imap-debug): Doc fix.
16853
16854 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16855
16856         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
16857
16858 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
16859
16860         * gnus.el (spam-contents): Improve docs for spam-contents
16861         parameter in its variable incarnation.
16862
16863 2005-02-14  Simon Josefsson  <jas@extundo.com>
16864
16865         * smime-ldap.el: Use require instead of load-library for ldap.
16866         (smime-ldap-search): Indent.
16867         (smime-ldap-search-internal): Shorten line.
16868
16869         * smime.el (smime-cert-by-dns): Add doc-string.
16870         (smime-cert-by-ldap-1): Indent.
16871
16872         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
16873         mml-smime-get-dns-ldap.
16874         (mml-smime-encrypt-query): Use new function.  Default to ldap.
16875
16876 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
16877
16878         * smime.el: Require smime-ldap.
16879         (smime-ldap-host-list): New variable.
16880         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
16881
16882         * mml-smime.el (mml-smime-encrypt-query): New function.
16883         (mml-smime-encrypt-query): Use it.
16884
16885         * smime-ldap.el: New file.
16886
16887 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16888
16889         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
16890
16891 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
16892
16893         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
16894         argument in doc string.  Make query for type more clear.
16895
16896 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
16897
16898         * gnus.el (gnus-group-startup-message): Search for gnus images in
16899         etc/images/gnus.
16900         * mm-util.el (mm-image-load-path): Likewise.
16901         * smiley.el (smiley-data-directory): Search for smilies in
16902         etc/images/smilies.
16903
16904 2005-02-09  Kim F. Storm  <storm@cua.dk>
16905
16906         Change Emacs release version from 21.4 to 22.1 throughout.
16907         Change Emacs development version from 21.3.50 to 22.0.50.
16908
16909 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16910
16911         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
16912
16913         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
16914         non-Mule XEmacs as well.
16915         (mm-decompress-buffer): Signal an error intentionally if it does
16916         not decompress compressed data because auto-compression-mode is
16917         disabled.
16918
16919 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
16920
16921         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
16922         an ID in the registry even if it has no groups.
16923
16924 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16925
16926         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
16927         merge it into mm-decompress-buffer.
16928         (gnus-mime-copy-part): Use the MIME part charset, the value which
16929         a user specified or gnus-newsgroup-charset for decoding, like
16930         gnus-mime-inline-part does; set buffer-file-coding-system to tell
16931         save-buffer what was used.  Suggested by Kevin Ryde
16932         <user42@zip.com.au>.
16933         (gnus-mime-inline-part): Allow the name parameter as well as the
16934         filename parameter; force decompressing of compressed data; always
16935         display contents being not decoded as unibyte.
16936
16937         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
16938         as well as the filename parameter.
16939
16940         * mm-util.el (mm-decompress-buffer):
16941         Merge gnus-mime-jka-compr-maybe-uncompress.
16942         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
16943         of compressed data.
16944
16945 2005-02-08  Simon Josefsson  <jas@extundo.com>
16946
16947         * imap.el (imap-log): Doc fix.
16948
16949 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16950
16951         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
16952         the coding cookies; decompress compressed parts.
16953
16954         * mml.el (mml-generate-mime-1): Add the charset parameter according
16955         to the value which a user specified manually or the coding cookie.
16956
16957         * mm-util.el (mm-string-to-multibyte): New function.
16958         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
16959         (mm-coding-system-to-mime-charset): New function.
16960         (mm-decompress-buffer): New function.
16961         (mm-find-buffer-file-coding-system): New function.
16962
16963         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
16964         (mm-display-inline-fontify): Rewrite for decoding and decompressing
16965         parts.
16966
16967 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16968
16969         * mm-view.el (mm-display-inline-fontify): Decode a part according
16970         to the charset parameter.
16971
16972 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16973
16974         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
16975         prefix arg is neither nil nor a number, as info specifies.
16976
16977 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16978
16979         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
16980         timestamps.
16981
16982 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
16983
16984         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
16985         groups error checking and notify user.
16986
16987 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
16988
16989         * message.el (message-send-mail-function): Check existence of
16990         sendmail-program first before using default value
16991         `message-send-mail-with-sendmail'.  Otherwise use more generic
16992         `smtpmail-send-it'.
16993
16994 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16995
16996         * nntp.el (nntp-request-update-info): Always return nil.
16997
16998 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16999
17000         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
17001
17002 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17003
17004         * message.el (message-beginning-of-line): Change the behavior when
17005         invoked between BOL and : so that it first moves backward.
17006
17007 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17008
17009         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
17010         article buffer when editing of the article is discarded.
17011         (gnus-article-prepare): Revert.
17012
17013 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17014
17015         * gnus-art.el (gnus-article-prepare):
17016         Remove message-strip-forbidden-properties from the local hook.
17017
17018 2005-01-27  Simon Josefsson  <jas@extundo.com>
17019
17020         * password.el (password-cache-add): Only start one timer per key.
17021         Reported by Derek Atkins <warlord@MIT.EDU>.
17022
17023 2005-01-26  Steve Youngs  <steve@sxemacs.org>
17024
17025         * run-at-time.el: Remove.  It is no longer needed as
17026         timer-funcs.el in the xemacs-base package has a working version of
17027         `run-at-time'.
17028
17029         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
17030
17031         * password.el: Require timer-funcs instead of run-at-time in
17032         XEmacs.
17033         Remove `password-run-at-time' macro.
17034         (password-cache-add): Use `run-at-time' instead of
17035         `password-run-at-time'.
17036
17037         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
17038         Remove `nnheader-cancel-function-timers' alias,
17039         `cancel-function-timers' exists in XEmacs in timer-funcs.
17040
17041         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
17042         for `run-with-idle-timer'.
17043
17044         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
17045         for `run-at-time'.
17046
17047         * mm-url.el: Require timer-funcs at compile time when in XEmacs
17048         for `with-timeout'.
17049
17050         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
17051         the same as for XEmacs 21.4.
17052         No need to ignore `run-with-idle-timer', this function exists in
17053         XEmacs now in timer-funcs.el in the xemacs-base package.
17054         (dgnushack-compile): No need to delete
17055         run-at-time.el from the list of files to compile because it
17056         doesn't exist anymore.
17057
17058 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17059
17060         * mml.el (mml-generate-mime-1): Convert string into unibyte when
17061         inserting " *mml*" buffer's contents into a unibyte temp buffer.
17062
17063 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
17064
17065         * mail-source.el (mail-source-fetch-imap): Search for ^From case
17066         sensitively.
17067
17068 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
17069
17070         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
17071
17072 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17073
17074         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
17075         which will be inserted according to the multibyteness of a buffer
17076         rather than the type of contents.  Suggested by ARISAWA Akihiro
17077         <ari@mbf.ocn.ne.jp>.
17078
17079         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
17080         of string which old xml.el may return rather than a string.
17081
17082 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17083
17084         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
17085
17086 2005-01-16  Simon Josefsson  <jas@extundo.com>
17087
17088         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
17089         idn/idna.el isn't available.
17090         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
17091         <michael@waxrat.com>.
17092
17093         * hashcash.el: Remove non-FSF copyright header.
17094
17095         * hashcash.el (hashcash-extra-generate-parameters): New variable.
17096         (hashcash-generate-payment): Use it.
17097         (hashcash-generate-payment-async): Use it.
17098
17099 2005-01-15  Simon Josefsson  <jas@extundo.com>
17100
17101         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
17102         Suggested by Raymond Scholz <ray-2005@zonix.de>.
17103
17104         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
17105         gnus-summary-idna-message.
17106         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
17107         (gnus-summary-idna-message): New function.
17108
17109 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
17110
17111         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
17112         gnus-novice-user.
17113
17114 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17115
17116         * nnrss.el (nnrss-request-delete-group): Delete entries in
17117         nnrss-group-alist as well.
17118         (nnrss-save-server-data): Insert newline.
17119
17120 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
17121
17122         * gnus.el (gnus-user-agent): Use list of symbols instead of
17123         symbols.  Display full version number for (S)XEmacs.
17124         Optionally display (S)XEmacs codename.
17125
17126         * gnus-util.el (gnus-emacs-version): Update for new
17127         `gnus-user-agent'.
17128
17129         * gnus-msg.el (gnus-extended-version): Make it possible to omit
17130         Gnus version.
17131
17132 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
17133
17134         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
17135         which is unreadable in some setups.
17136
17137 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17138
17139         * gnus-spec.el (gnus-update-format-specifications): Flush the
17140         group format spec cache if it doesn't support decoded group names.
17141
17142 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
17143
17144         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
17145         Allow to apply decay on score files matching a regexp.
17146
17147 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17148
17149         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
17150         compatibility in %g and %c.
17151
17152 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17153
17154         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
17155         name for only %g and %c.
17156         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
17157         of gnus-tmp-group to decoded group name.
17158         (gnus-group-make-rss-group): Exclude `/'s from group names.
17159
17160 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17161
17162         * nnrss.el (nnrss-get-encoding): Fix regexp.
17163
17164 2004-12-27  Simon Josefsson  <jas@extundo.com>
17165
17166         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
17167         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
17168         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
17169
17170 2004-12-17  Kim F. Storm  <storm@cua.dk>
17171
17172         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
17173
17174         * gnus-sum.el (gnus-summary-mode-map): Likewise.
17175
17176 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
17177
17178         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
17179
17180 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17181
17182         * nnrss.el: Require rfc2047 and mml.
17183         (nnrss-file-coding-system): New variable.
17184         (nnrss-format-string): Redefine it as an inline function.
17185         (nnrss-decode-group-name): New function.
17186         (nnrss-string-as-multibyte): Remove.
17187         (nnrss-retrieve-headers): Decode group name; don't use
17188         nnrss-format-string.
17189         (nnrss-request-group): Decode group name.
17190         (nnrss-request-article): Decode group name; allow a Message-ID as
17191         well as an article number; don't use nnrss-format-string; encode a
17192         Message-ID string which may contain non-ASCII characters; use
17193         mml-to-mime to compose a MIME article.
17194         (nnrss-request-expire-articles): Decode group name.
17195         (nnrss-request-delete-group): Decode group name.
17196         (nnrss-fetch): Clarify error message.
17197         (nnrss-read-server-data): Use insert-file-contents instead of load;
17198         bind file-name-coding-system; use multibyte buffer.
17199         (nnrss-save-server-data): Bind coding-system-for-write to the
17200         value of nnrss-file-coding-system; bind file-name-coding-system;
17201         add coding cookie.
17202         (nnrss-read-group-data): Use insert-file-contents instead of load;
17203         bind file-name-coding-system; use multibyte buffer.
17204         (nnrss-save-group-data): Bind coding-system-for-write to the
17205         value of nnrss-file-coding-system; bind file-name-coding-system.
17206         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
17207         make it work with non-ASCII text.
17208         (nnrss-find-el): Make it work with old xml.el as well.
17209
17210 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
17211
17212         * nnrss.el (nnrss-get-encoding): New function.
17213         (nnrss-fetch): Use unibyte buffer initially; bind
17214         coding-system-for-read while performing mm-url-insert; remove ^Ms;
17215         decode contents according to the encoding attribute.
17216         (nnrss-save-group-data): Add coding cookie.
17217         (nnrss-mime-encode-string): New function.
17218         (nnrss-check-group): Use it to encode subject and author.
17219
17220 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
17221
17222         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
17223         imaginary variable.
17224
17225 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17226
17227         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
17228         correctly even if there are wide characters.
17229
17230 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
17231
17232         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
17233         downcased symbol names; make a new cache instead of reusing
17234         bbdb-hashtable.
17235
17236 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17237
17238         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
17239         concatenating segments rather than before concatenating them.
17240         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
17241
17242         * message.el (message-get-reply-headers): Bind `extra'.
17243
17244 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17245
17246         * message.el (message-extra-wide-headers): New variable.
17247         (message-get-reply-headers): Use it.
17248
17249 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17250
17251         * gnus-agent.el (gnus-agent-group-path): Decode group name.
17252         (gnus-agent-group-pathname): Ditto.
17253
17254         * gnus-cache.el (gnus-cache-file-name): Decode group name.
17255
17256         * gnus-group.el (gnus-group-make-group): Decode group name.
17257         (gnus-group-make-rss-group): Register the group data after opening
17258         the nnrss group.
17259
17260 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
17261
17262         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
17263         by expiry now get marked as read.
17264
17265 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17266
17267         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
17268
17269 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
17270
17271         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
17272         unify Latin characters in XEmacs.
17273         (mm-find-mime-charset-region): Use it.
17274
17275 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17276
17277         * gnus-util.el (gnus-delete-directory): New function.
17278
17279         * gnus-agent.el (gnus-agent-delete-group): Use it.
17280
17281         * gnus-cache.el (gnus-cache-delete-group): Use it.
17282
17283 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17284
17285         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
17286         names.
17287
17288 2004-12-16  Simon Josefsson  <jas@extundo.com>
17289
17290         * hashcash.el (hashcash-payment-alist): Fix custom :type.
17291
17292 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17293
17294         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
17295
17296         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
17297         (gnus-group-set-current-level): Decode group name.
17298
17299 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
17300
17301         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
17302         failed.
17303
17304 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17305
17306         * gnus-group.el (gnus-group-delete-group): Decode group name.
17307         (gnus-group-make-rss-group): Encode group name.
17308         (gnus-group-catchup-current): Decode group name.
17309         (gnus-group-kill-group): Decode group name.
17310
17311 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17312
17313         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
17314
17315 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17316
17317         * gnus-group.el (gnus-group-make-rss-group):
17318         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
17319
17320         * gnus-start.el (gnus-setup-news): Honor user's setting to
17321         gnus-message-archive-method.  Suggested by Lute Kamstra
17322         <lute@gnu.org>.
17323
17324 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
17325
17326         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
17327         global counterparts of the buffer-local variables.
17328
17329 2004-11-16  Romain Francoise  <romain@orebokech.com>
17330
17331         * gnus-sum.el (gnus-summary-exit): Don't clear the global
17332         counterparts of the buffer-local variables.
17333
17334 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
17335
17336         * message.el (message-forbidden-properties): Fix typo in doc
17337         string.
17338
17339 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
17340
17341         * gnus-util.el (gnus-replace-in-string): Add doc string.
17342
17343         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
17344         to avoid problems when splitting mails with many recipients.
17345
17346 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17347
17348         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
17349         pop-to-buffer, covered by the subsequent gnus-configure-windows.
17350
17351 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
17352
17353         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
17354         if there is no hashtable in memory or file modification time is
17355         newer than cached timestamp.
17356
17357 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
17358
17359         * gnus-sum.el (gnus-summary-limit-to-recipient):
17360         Implement not-matching option.
17361
17362 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
17363
17364         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
17365         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
17366         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
17367         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
17368         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
17369         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
17370
17371 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17372
17373         * message.el (message-forward-make-body-mml): Remove headers
17374         according to message-forward-ignored-headers if a message is decoded.
17375
17376 2004-12-02  Romain Francoise  <romain@orebokech.com>
17377
17378         * message.el (message-forward-make-body-plain): Always remove
17379         headers according to message-forward-ignored-headers.
17380
17381 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
17382
17383         * spam.el (spam-summary-prepare-exit): Remove the
17384         gnus-summary-limit pop for now, it has problems with ham marks for
17385         me.
17386
17387 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
17388
17389         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
17390         correctly.
17391
17392 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
17393
17394         * format-spec.el (format-spec): Message the char.
17395
17396 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
17397
17398         * gnus-art.el (gnus-split-methods): Reformat comments.
17399
17400         * spam.el (spam-summary-prepare-exit): Remove article limits
17401         before exiting the summary buffer.
17402
17403 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17404
17405         * lpath.el: Remove bbdb-create-internal, bbdb-records,
17406         spam-BBDB-register-routine and spam-enter-ham-BBDB.
17407
17408         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
17409         order to silence the byte compiler.
17410
17411         * spam.el: Fix the way to silence the byte compiler, which
17412         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
17413         bbdb-search-simple, spam-BBDB-register-routine,
17414         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
17415         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
17416         spam-stat-buffer-is-spam, spam-stat-load,
17417         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
17418         spam-stat-save and spam-stat-split-fancy.
17419
17420 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17421
17422         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
17423         which may confuse users.
17424         (canlock-password-for-verify): Ditto.
17425
17426         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
17427
17428         * gnus-art.el (gnus-emphasis-alist): Ditto.
17429
17430         * gnus-registry.el (gnus-registry-max-entries): Ditto.
17431
17432         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
17433
17434         * gnus-start.el (gnus-save-killed-list): Ditto.
17435
17436         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
17437         (gnus-sum-thread-tree-root): Ditto.
17438         (gnus-sum-thread-tree-false-root): Ditto.
17439         (gnus-sum-thread-tree-single-indent): Ditto.
17440
17441         * message.el (message-courtesy-message): Ditto.
17442         (message-archive-note): Ditto.
17443         (message-subscribed-address-file): Ditto.
17444         (message-user-fqdn): Ditto.
17445
17446         * spam-report.el (spam-report-gmane-regex): Ditto.
17447
17448         * spam.el (spam-blackhole-good-server-regex): Ditto.
17449
17450 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17451
17452         * mml.el (mml-preview): Widen the message buffer before copying
17453         the contents to the preview buffer; sort headers before previewing.
17454
17455         * message.el (message-hidden-headers): Fix the way to avoid a bug
17456         in the `repeat' widget in Emacs 21.3 or earlier.
17457
17458 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17459
17460         * message.el (message-hidden-headers): Default to "^References:".
17461         Improve customization type.  Suggested by Reiner Steib
17462         <Reiner.Steib@gmx.de>.
17463
17464 2004-11-25  Romain Francoise  <romain@orebokech.com>
17465
17466         * message.el (message-strip-forbidden-properties): Remove check for
17467         obsolete `message-hidden' text property, hidden headers are not
17468         accessible in the buffer anymore.
17469
17470 2004-11-22  Romain Francoise  <romain@orebokech.com>
17471
17472         * message.el (message-header-format-alist): Add `From' in list
17473         so that it can be sorted.
17474         (message-fix-before-sending): Widen and sort headers before
17475         sending.
17476         (message-hide-headers): Use narrowing to hide headers by moving
17477         them to the top of the buffer and narrowing to the region
17478         underneath.
17479
17480 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17481
17482         * message.el (message-strip-forbidden-properties):
17483         Bind buffer-read-only (etc) to nil.
17484
17485 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17486
17487         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
17488         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
17489
17490 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
17491
17492         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
17493
17494 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17495
17496         * dns.el (query-dns): Use sit-for to time instead of
17497         accept-process-output, since that doesn't seem to work on udp
17498         sockets.
17499
17500 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17501
17502         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
17503
17504 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
17505
17506         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
17507         doc string.  Improve doc string.
17508
17509 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17510
17511         * nntp.el (nntp-request-update-info): Return nil if
17512         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
17513         may not call gnus-activate-group which uselessly issues the GROUP
17514         commands for all nntp groups and wastes time.  Reported by Romain
17515         Francoise <romain@orebokech.com>.
17516
17517         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
17518
17519 2004-11-15  Simon Josefsson  <jas@extundo.com>
17520
17521         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
17522         headers separately.
17523         (gnus-button-openpgp): New function, inspired by Jochen Küpper
17524         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
17525
17526 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
17527
17528         * gnus-start.el (gnus-convert-old-newsrc):
17529         Assign legacy-gnus-agent to 5.10.7.
17530
17531 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17532
17533         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
17534         start of the lines.
17535
17536 2004-11-14  Magnus Henoch  <mange@freemail.hu>
17537
17538         * hashcash.el (hashcash-default-payment): Change default to 20.
17539         (hashcash-default-accept-payment): Change default to 20.
17540         (hashcash-process-alist): New variable.
17541         (hashcash-generate-payment-async): Add.
17542         (hashcash-already-paid-p): Add.
17543         (hashcash-insert-payment): Don't generate payments twice.
17544         (hashcash-insert-payment-async): Add.
17545         (hashcash-insert-payment-async-2): Add.
17546         (hashcash-cancel-async): Add.
17547         (hashcash-wait-async): Add.
17548         (hashcash-processes-running-p): Add.
17549         (hashcash-wait-or-cancel): Add.
17550         (mail-add-payment): New optional argument.  Conditionally start
17551         asynchronous calculation.
17552         (mail-add-payment-async): Add.
17553
17554         * message.el (message-send-mail): Wait for asynchronous hashcash
17555         results.  Don't clobber existing X-Hashcash headers.
17556         (message-setup-1): Call mail-add-payment-async when
17557         message-generate-hashcash is non-nil.
17558
17559 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
17560
17561         * message.el (message-use-alternative-email-as-from): Examine the
17562         From header as well; use message-make-from in order to include a
17563         user's full name.
17564
17565 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17566
17567         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
17568         default; improve customization type.
17569         (gnus-emphasis-custom-with-format): New macro.
17570         (gnus-emphasis-custom-value-to-external): New function.
17571         (gnus-emphasis-custom-value-to-internal): New function.
17572
17573 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17574
17575         * dns.el (query-dns): Resolve reverse addresses.
17576
17577 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17578
17579         * gnus-group.el (gnus-group-get-new-news): Use it.
17580
17581         * gnus-start.el (gnus-check-reasonable-setup): New function.
17582
17583 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17584
17585         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
17586         "Args out of range" error.  Reported by Arnaud Giersch
17587         <arnaud.giersch@free.fr>.
17588
17589 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
17590
17591         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
17592
17593 2004-11-04  Richard M. Stallman  <rms@gnu.org>
17594
17595         * spam.el (spam group): Add :version.
17596
17597         * pgg-def.el (pgg group): Add :version.
17598
17599 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17600
17601         * gnus-art.el (gnus-article-edit-article): Don't associate the
17602         article buffer with a draft file.  This is a temporary measure
17603         against the 2004-08-22 change to gnus-article-edit-mode.
17604
17605 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17606
17607         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
17608         (html2text-format-tags): Remove unused variable `attr'.
17609
17610 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
17611
17612         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
17613
17614         * tls.el (tls-process-connection-type, tls-success)
17615         (tls-certtool-program): Add :version.
17616
17617         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
17618         (starttls-extra-arguments, starttls-process-connection-type)
17619         (starttls-connect, starttls-failure, starttls-success): Add :version.
17620
17621         * spam-stat.el (spam-stat): Add :version.
17622
17623         * sieve.el (sieve): Add :version.
17624
17625         * sha1.el (sha1): Add :version.
17626         (sha1-use-external): Remove redundant version.
17627
17628         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
17629         (nnmail-cache-ignore-groups, nnmail-spool-hook)
17630         (nnmail-split-fancy-match-partial-words)
17631         (nnmail-split-lowercase-expanded): Add :version.
17632
17633         * nndiary.el (nndiary): Add :version.
17634
17635         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
17636
17637         * mml-sec.el (mml-default-sign-method)
17638         (mml-default-encrypt-method, mml-signencrypt-style-alist):
17639         Add :version.
17640
17641         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
17642
17643         * mm-url.el (mm-url-use-external, mm-url-program)
17644         (mm-url-arguments): Add :version.
17645
17646         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
17647         (mm-attachment-file-modes, mm-decrypt-option)
17648         (mm-w3m-safe-url-regexp): Add :version.
17649
17650         * message.el (message-cite-prefix-regexp)
17651         (message-sendmail-envelope-from, message-minibuffer-local-map)
17652         (message-user-fqdn, message-completion-alist): Add :version.
17653
17654         * gnus-win.el (gnus-configure-windows-hook)
17655         (gnus-use-frames-on-any-display): Add :version.
17656
17657         * gnus-art.el (gnus-article-address-banner-alist)
17658         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
17659         (gnus-treat-from-picon, gnus-treat-mail-picon)
17660         (gnus-treat-x-pgp-sig): Add :version.
17661
17662         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
17663         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
17664         (gnus-summary-article-delete-hook)
17665         (gnus-summary-display-while-building): Add :version.
17666
17667         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
17668         (gnus-get-top-new-news-hook): Add :version.
17669
17670         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
17671         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
17672
17673         * gnus-registry.el (gnus-registry): Add :version.
17674
17675         * gnus-spec.el (gnus-use-correct-string-widths)
17676         (gnus-make-format-preserve-properties): Add :version.
17677
17678         * gnus.el (gnus-group-charter-alist)
17679         (gnus-group-fetch-control-use-browse-url)
17680         (gnus-install-group-spam-parameters): Add :version.
17681
17682         * gnus-diary.el (gnus-diary): Add :version.
17683
17684         * gnus-delay.el (gnus-delay): Add :version.
17685
17686         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
17687         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
17688         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
17689         Add :version.
17690
17691         * gnus-agent.el (gnus-agent-max-fetch-size)
17692         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
17693         (gnus-agent-prompt-send-queue): Add :version.
17694
17695         * deuglify.el (gnus-outlook-deuglify): Add :version.
17696
17697         * html2text.el: Beautify code.  Improve doc strings.
17698         Some checkdoc cleanup.
17699         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
17700
17701 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
17702
17703         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
17704
17705 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
17706
17707         * gnus-registry.el (gnus-registry-hashtb): Create the registry
17708         when package is loaded.
17709
17710         * spam.el (spam-summary-score-preferred-header): Add global preference
17711         for people who want to override the default SpamAssassin over
17712         Bogofilter preference (when both are set).
17713         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
17714         (spam-user-format-function-S):
17715         Check spam-summary-score-preferred-header.
17716         (spam-extra-header-to-number): Add X-Bogosity header parsing.
17717         (spam-user-format-function-S): Format the score correctly.
17718
17719 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17720
17721         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
17722         signature file.  Suggested by Manoj Srivastava
17723         <srivasta@golden-gryphon.com>.
17724
17725         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
17726         iso-2022-jp even in the Japanese language environment.
17727         Suggested by Jason Rumney <jasonr@gnu.org>.
17728
17729 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17730
17731         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
17732         use the same characters as the dummy marks; make it free from
17733         getting affected by the language environment.
17734         (gnus-summary-read-group-1): Update mark positions only when the
17735         format spec is updated.
17736
17737         * gnus-spec.el (gnus-update-format-specifications): Return a list
17738         of updated types.
17739
17740 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17741
17742         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
17743         of boundp to check if display-warning is available.
17744
17745 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
17746
17747         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
17748
17749 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17750
17751         * nnspool.el (nnspool-spool-directory): Use news-path if the
17752         news-directory variable is not bound.
17753
17754         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
17755         function instead of display-warning if it is not available.
17756
17757 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
17758
17759         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
17760         v5-10: Use `point-at-bol'.
17761
17762 2004-10-26  Simon Josefsson  <jas@extundo.com>
17763
17764         * hashcash.el: Fix URL in comment, reported by Cheng Gao
17765         <chenggao@gmail.com>.
17766
17767 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
17768
17769         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
17770         instead.
17771
17772 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
17773
17774         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
17775         to remove a server from the nnimap-server-buffer-alist.
17776         (nnimap-open-connection, nnimap-close-server): Use it.
17777
17778         * gnus-encrypt.el: Remove file in favor of encrypt.el.
17779
17780 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17781
17782         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
17783         running the major-mode function.
17784
17785 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17786
17787         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
17788         dummy marks in the right way.
17789
17790 2004-10-18  David Edmondson  <dme@dme.org>
17791
17792         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
17793         excessively.
17794
17795 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
17796
17797         * gnus-util.el (gnus-split-references): Accept a nil references
17798         string and go on blissfully.
17799
17800         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
17801         cases where the references string is non-nil but has no references.
17802
17803         * encrypt.el: Add autoload tags.
17804
17805         * spam.el (spam-resolve-registrations-routine): Remove article
17806         from unregistration list too.  Reported by David Hanak
17807         <dhanak@isis.vanderbilt.edu>
17808
17809 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
17810
17811         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
17812         nil.  Change custom type.
17813
17814 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
17815
17816         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
17817
17818         * gnus-sum.el (gnus-summary-move-article): Use it.
17819
17820 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
17821
17822         * encrypt.el: Add autoload cookies.
17823
17824         * spam.el (spam-backend-article-list-property)
17825         (spam-backend-get-article-todo-list)
17826         (spam-backend-put-article-todo-list)
17827         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
17828         Resolve registrations separately.
17829         (spam-register-routine): Format comments.
17830         (spam-unregister-routine, spam-register-routine): Always call with
17831         specific-articles, no default list.
17832         (spam-summary-prepare-exit): Use the spam-classifications function.
17833
17834         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
17835         gnus-encrypt.el.
17836
17837         * encrypt.el: Copied from gnus-encrypt.el.
17838
17839         * gnus-encrypt.el: Commented that it's obsolete.
17840
17841 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
17842
17843         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
17844         (gnus-score-save): Use it.
17845
17846         * message.el (message-bury): Use `window-dedicated-p'.
17847
17848 2004-10-15  Simon Josefsson  <jas@extundo.com>
17849
17850         * pop3.el (top-level): Don't require nnheader.
17851         (pop3-read-timeout): Add.
17852         (pop3-accept-process-output): Add.
17853         (pop3-read-response, pop3-retr): Use it.
17854
17855 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
17856
17857         * spam.el (spam-register-routine): Move comment.
17858         (spam-verify-bogofilter): Use 'unknown for the initial
17859         spam-bogofilter-valid state, not 'never.
17860
17861         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
17862         for netrc-machine.
17863
17864         * nnimap.el (nnimap-open-connection):
17865         Use netrc-machine-user-or-password.
17866
17867 2004-10-17  Richard M. Stallman  <rms@gnu.org>
17868
17869         * gnus-registry.el (gnus-registry-unload-hook):
17870         Set as a variable with add-hook.
17871
17872         * nnspool.el (nnspool-spool-directory): Use news-directory instead
17873         of news-path.
17874
17875         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
17876
17877         * spam.el: Delete duplicate `provide'.
17878         (spam-unload-hook): Set as a variable with add-hook.
17879
17880 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
17881
17882         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
17883         in the doc string.
17884
17885         * message.el (message-ignored-news-headers)
17886         (message-ignored-supersedes-headers)
17887         (message-ignored-resent-headers)
17888         (message-forward-ignored-headers): Improve custom type.
17889
17890 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17891
17892         * message.el (message-tokenize-header): Fix 2004-09-06 change
17893         which used point-min in the wrong place.
17894
17895 2004-10-12  Simon Josefsson  <jas@extundo.com>
17896
17897         * tls.el (tls-certtool-program): New variable.
17898         (tls-certificate-information): New function, based on
17899         ssl-certificate-information.
17900
17901 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17902
17903         * compface.el: Move the version of ELisp-based uncompface program
17904         to the contrib directory because of the copyright problem.
17905
17906 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
17907
17908         * message.el (message-kill-buffer): Raise the current frame.
17909
17910 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
17911
17912         * gnus-sum.el: Mention that multibyte characters don't work as marks.
17913
17914         * gnus.el (message-y-or-n-p): Autoload.
17915
17916         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
17917         (pop3-password-required, pop3-authentication-scheme)
17918         (pop3-leave-mail-on-server): Make customizable.
17919         (pop3): New custom group.
17920         (pop3-retr): Remove `sleep-for' statements.
17921         Suggested by Dave Love <fx@gnu.org>.
17922
17923         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
17924         Windows/DOS.
17925
17926         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
17927         (imap-parse-body): Fix incorrect use of `assert'.
17928         Suggested by Dave Love <fx@gnu.org>.
17929
17930         * mml.el (mml-minibuffer-read-disposition): Require match.
17931         Suggested by Dave Love <fx@gnu.org>.
17932
17933 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
17934
17935         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
17936         doc string.
17937
17938 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17939
17940         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
17941
17942 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17943
17944         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
17945         instead of calling `mm-insert-inline', to decode text/* parts
17946         before displaying them.
17947
17948 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17949
17950         * mm-uu.el (mm-uu-text-plain-type): New variable.
17951         (mm-uu-pgp-signed-extract-1): Use it.
17952         (mm-uu-pgp-encrypted-extract-1): Use it.
17953         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
17954         bind mm-uu-text-plain-type with that value.
17955         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
17956         mm-uu-dissect.
17957
17958 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17959
17960         * gnus-group.el (gnus-update-group-mark-positions):
17961         * gnus-sum.el (gnus-update-summary-mark-positions):
17962         * message.el (message-check-news-body-syntax):
17963         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
17964         of string-as-multibyte.
17965
17966 2004-10-05  Juri Linkov  <juri@jurta.org>
17967
17968         * gnus-group.el (gnus-update-group-mark-positions):
17969         * gnus-sum.el (gnus-update-summary-mark-positions):
17970         * message.el (message-check-news-body-syntax):
17971         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
17972         8-bit unibyte values to a multibyte string for search functions.
17973
17974 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17975
17976         * mm-uu.el (mm-uu-dissect): Allow optional arg.
17977         (mm-uu-dissect-text-parts): New function.
17978
17979         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
17980         dissect text parts.
17981
17982         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
17983         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
17984
17985         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
17986
17987         * gnus-topic.el (gnus-topic-hierarchical-parameters):
17988         Use gnus-current-topics instead of gnus-current-topic.
17989
17990 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
17991
17992         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
17993
17994 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
17995
17996         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
17997         where approriate.
17998
17999         * nnml.el (nnml-generate-active-info): do.
18000
18001         * nndiary.el (nndiary-generate-active-info): do.
18002
18003         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
18004         (gnus-topic-move): do.
18005
18006         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
18007         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
18008
18009         * gnus-srvr.el (gnus-server-prepare)
18010         (gnus-server-open-all-servers): do.
18011
18012         * gnus-msg.el (gnus-summary-cancel-article)
18013         (gnus-summary-resend-message)
18014         (gnus-summary-mail-crosspost-complaint): do.
18015
18016         * gnus-move.el (gnus-change-server): do.
18017
18018         * gnus-group.el (gnus-group-unmark-all-groups)
18019         (gnus-group-set-current-level): do.
18020
18021 2004-10-04  Simon Josefsson  <jas@extundo.com>
18022
18023         * message.el (message-generate-hashcash): Doc fix.
18024
18025 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
18026
18027         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
18028         avoid infinite recursion via gnus-get-function.
18029
18030 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
18031
18032         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
18033
18034         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
18035
18036         * nnmail.el (nnmail-split-history): do.
18037
18038         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
18039         (nnml-request-delete-group): do.
18040
18041         * nnslashdot.el (nnslashdot-read-groups): do.
18042
18043         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
18044         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
18045
18046         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
18047         (nnspool-sift-nov-with-sed): Use last.
18048         (nnspool-retrieve-headers-with-nov): Use mapc.
18049         (nnspool-request-newgroups): Use dolist.
18050         (nnspool-request-group): Use last.
18051
18052         * nntp.el (nntp-read-server-type): Use dolist.
18053
18054         * nnvirtual.el (nnvirtual-create-mapping)
18055         (nnvirtual-update-read-and-marked): Use dolist.
18056         (nnvirtual-convert-headers): Simplify.
18057
18058 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
18059
18060         * gnus-agent.el (gnus-agent-synchronize-group-flags):
18061         Add support for sync'ing tick marks.
18062
18063 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18064
18065         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
18066         there's no visible header.
18067
18068 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
18069
18070         * gnus-agent.el (gnus-agent-synchronize-group-flags):
18071         When necessary, pass full group name to gnus-request-set-marks.
18072
18073 2004-10-01  Simon Josefsson  <jas@extundo.com>
18074
18075         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
18076         acroread.
18077
18078 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18079
18080         * spam-report.el (spam-report-gmane): Fix interactive.
18081
18082         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
18083
18084         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
18085         when writing file.
18086         (gnus-agent-synchronize-flags): Don't default to being
18087         interactive.
18088
18089 2004-09-30  Simon Josefsson  <jas@extundo.com>
18090
18091         * message.el (message-generate-hashcash): Add.
18092         (message-send-mail): Use it, call mail-add-payment.
18093
18094 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
18095
18096         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
18097
18098 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
18099
18100         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
18101         gnus-requst-update-info with explicit code to sync the in-memory
18102         info read flags with the marks being sync'd to the backend.
18103
18104         *gnus-util.el (gnus-pp): Add optional stream to match pp API.
18105
18106 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
18107
18108         * spam.el (spam-verify-bogofilter): Add new function.
18109         (spam-check-bogofilter)
18110         (spam-bogofilter-register-with-bogofilter): Use it.
18111         (spam-verify-bogofilter): Add small fixes.
18112
18113 2004-09-28  Simon Josefsson  <jas@extundo.com>
18114
18115         * hashcash.el (hashcash-generate-payment): Revert.
18116
18117 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
18118
18119         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
18120         Use gnus-extract-references instead of gnus-split-references.
18121
18122         * gnus-util.el (gnus-extract-references): Add new function, analogous
18123         to gnus-split-references but extracts only the message-ID without
18124         anything extra.
18125
18126         * hashcash.el (hashcash-generate-payment)
18127         (hashcash-check-payment): Do the right thing if hashcash-path is
18128         nil (because the hashcash program could not be found).
18129
18130         * spam.el (spam-use-hashcash): Remove comment.
18131
18132 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
18133
18134         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
18135         (gnus-cache-enter-article, gnus-cache-remove-article)
18136         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
18137
18138         * gnus-async.el (gnus-async-prefetch-remove-group): do.
18139
18140         * gnus-art.el (article-hide-boring-headers)
18141         (article-translate-strings, article-display-face)
18142         (gnus-article-mime-match-handle-first)
18143         (gnus-article-highlight-headers)
18144         (gnus-article-add-buttons-to-head): do.
18145
18146 2004-09-27  Simon Josefsson  <jas@extundo.com>
18147
18148         * hashcash.el: New version, from
18149         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
18150         ../contrib/.
18151
18152 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18153
18154         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
18155
18156 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
18157
18158         * gnus-dup.el (gnus-dup-open): Use mapc.
18159         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
18160
18161         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
18162         Reported by Stefan Wiens <s.wi@gmx.net>.
18163
18164         * gnus.el (gnus-shutdown): Use dolist.
18165
18166         * gnus-undo.el (gnus-undo): Use mapc.
18167
18168         * nnrss.el (nnrss-generate-active): do.
18169
18170         * message.el (message-cite-original-without-signature)
18171         (message-cite-original): Use mapc.
18172         (message-do-actions, message-make-forward-subject): Use dolist.
18173
18174 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
18175
18176         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
18177         deletion to remove entire duplicate line.  Fixes merged article
18178         number bug.
18179
18180 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
18181
18182         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
18183         servers that are offline.  Avoids having gnus-agent-toggle-plugged
18184         first ask if you want to open a server and then, even when you
18185         responded with no, asking if you want to synchronize the server's
18186         flags.
18187         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
18188         multi-line expressions.
18189         (gnus-agent-synchronize-group-flags): New internal function.
18190         Updates marks in memory (in the info structure) AND in the
18191         backend.
18192
18193         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
18194
18195         * nnagent.el (nnagent-request-set-mark):
18196         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
18197         method, to ensure that synchronization updates marks in the
18198         backend and in the info (in memory) structure.
18199
18200 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18201
18202         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
18203         convention fully; don't miss the root article of a thread; make
18204         the X-Draft-From header with correct article numbers.
18205
18206 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
18207
18208         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
18209         unless plugged.  Disable the agent so that an open failure causes
18210         an error.
18211
18212         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
18213         Revert 2004-09-21 change.  The backend must be opened while
18214         synchronizing flags even when the backend stores the flags
18215         locally.
18216
18217 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
18218
18219         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
18220         in `header' match.  Reported by Svend Tollak Munkejord.
18221
18222         * message.el (message-cite-original): Fix use of
18223         `message-cite-articles-with-x-no-archive'.
18224
18225 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18226
18227         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
18228         (gnus-window-to-buffer): Ditto.
18229
18230         * mml.el (mml-preview-buffer): New variable.
18231         (mml-preview): Manage window layout with gnus-buffer-configuration.
18232
18233         * gnus-msg.el (gnus-setup-message): Put article numbers into the
18234         X-Draft-From header even if those articles aren't quoted.
18235
18236 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
18237
18238         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
18239         (gnus-request-set-mark, gnus-request-update-mark): Use new
18240         g-s-t-u-l-m to decide to use backend even when unplugged.
18241
18242 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18243
18244         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
18245         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
18246
18247 2004-09-20  Simon Josefsson  <jas@extundo.com>
18248
18249         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
18250         "utf-16-le".
18251
18252 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18253
18254         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
18255
18256 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
18257
18258         * uudecode.el (uudecode-use-external): Add :version.
18259
18260         * smime.el (smime-CA-file, smime-encrypt-cipher)
18261         (smime-dns-server): Add :version.
18262
18263         * smiley.el (gnus-smiley-file-types): Add :version.
18264
18265         * sha1.el (sha1-use-external): Add :version.
18266
18267         * pgg-def.el (pgg-query-keyserver): Add :version.
18268
18269         * nnmail.el (nnmail-fancy-expiry-targets)
18270         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
18271         Add :version.
18272
18273         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
18274         (nnimap-retrieve-groups-asynchronous): Add :version.
18275         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
18276
18277         * mml.el (mml-content-disposition-parameters)
18278         (mml-insert-mime-headers-always): Add :version.
18279
18280         * mm-util.el (mm-coding-system-priorities): Add :version.
18281
18282         * mm-decode.el (mm-inline-text-html-with-images)
18283         (mm-keep-viewer-alive-types, mm-external-terminal-program)
18284         (mm-verify-option): Add :version.
18285         (mm-text-html-renderer): Change :version.
18286
18287         * message.el (message-fcc-externalize-attachments)
18288         (message-required-headers, message-draft-headers)
18289         (message-subject-trailing-was-query)
18290         (message-subject-trailing-was-ask-regexp)
18291         (message-subject-trailing-was-regexp, message-mark-insert-begin)
18292         (message-mark-insert-end, message-archive-header)
18293         (message-archive-note, message-cross-post-default)
18294         (message-cross-post-note, message-followup-to-note)
18295         (message-cross-post-note-function, message-use-mail-followup-to)
18296         (message-subscribed-address-functions)
18297         (message-subscribed-address-file, message-subscribed-addresses)
18298         (message-subscribed-regexps, message-allow-no-recipients)
18299         (message-yank-cited-prefix, message-signature-insert-empty-line)
18300         (message-hidden-headers, message-hierarchical-addresses)
18301         (message-mail-user-agent, message-use-idna)
18302         (message-valid-fqdn-regexp)
18303         (message-strip-special-text-properties, message-header-synonyms)
18304         (message-beginning-of-line, message-tab-body-function): Add :version.
18305         (message-insert-canlock, message-wide-reply-confirm-recipients):
18306         Change :version.
18307
18308         * mail-source.el (mail-source-ignore-errors): Add :group, :type
18309         and :version.
18310         (mail-source-delete-old-incoming-confirm)
18311         (mail-source-movemail-program): Add :version.
18312
18313         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
18314         (gnus-agent-cache, gnus-agent): Change :version.
18315
18316         * gnus-util.el (gnus-use-byte-compile): Change :version.
18317
18318         * gnus-sum.el (gnus-summary-make-false-root-always)
18319         (gnus-summary-default-high-score)
18320         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
18321         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
18322         (gnus-read-all-available-headers, gnus-article-emulate-mime)
18323         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
18324         (gnus-sum-thread-tree-single-indent)
18325         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
18326         (gnus-sum-thread-tree-leaf-with-other)
18327         (gnus-sum-thread-tree-single-leaf): Add :version.
18328         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
18329         (gnus-article-loose-mime): Change :version.
18330
18331         * gnus-start.el (gnus-backup-startup-file)
18332         (gnus-save-startup-file-via-temp-buffer): Add :version.
18333
18334         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
18335         (gnus-server-offline-face): Add :version.
18336
18337         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
18338
18339         * gnus-msg.el (gnus-gcc-externalize-attachments)
18340         (gnus-debug-files, gnus-debug-exclude-variables)
18341         (gnus-discouraged-post-methods): Change :version.
18342         (gnus-confirm-mail-reply-to-news)
18343         (gnus-confirm-treat-mail-like-news): Add :version.
18344
18345         * gnus-int.el (gnus-server-unopen-status): Add :version.
18346
18347         * gnus-group.el (gnus-group-jump-to-group-prompt)
18348         (gnus-large-ephemeral-newsgroup)
18349         (gnus-fetch-old-ephemeral-headers): Add :version.
18350
18351         * gnus-fun.el (gnus-x-face-directory)
18352         (gnus-convert-pbm-to-x-face-command)
18353         (gnus-convert-image-to-x-face-command)
18354         (gnus-convert-image-to-face-command): Add :version.
18355
18356         * gnus-delay.el (gnus-delay-default-hour): Add :version.
18357
18358         * gnus-cite.el (gnus-cite-blank-line-after-header)
18359         (gnus-article-boring-faces): Add :version.
18360
18361         * gnus-art.el (gnus-buttonized-mime-types)
18362         (gnus-inhibit-mime-unbuttonizing)
18363         (gnus-treat-display-face)
18364         (gnus-treat-body-boundary): Change :version.
18365         (gnus-body-boundary-delimiter, gnus-picon-databases)
18366         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
18367         (gnus-treat-date-english, gnus-treat-fold-headers)
18368         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
18369         (gnus-treat-mail-picon, gnus-treat-wash-html)
18370         (gnus-article-encrypt-protocol)
18371         (gnus-use-idna, gnus-article-over-scroll)
18372         (gnus-mime-display-multipart-alternative-as-mixed)
18373         (gnus-mime-display-multipart-related-as-mixed)
18374         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
18375         (gnus-ctan-url, gnus-button-ctan-handler)
18376         (gnus-button-handle-ctan-bogus-regexp)
18377         (gnus-button-ctan-directory-regexp)
18378         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
18379         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
18380         (gnus-button-man-level, gnus-button-emacs-level)
18381         (gnus-button-message-level, gnus-button-browse-level): Add :version.
18382
18383         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
18384         (gnus-agent-go-online): Change :version.
18385         (gnus-agent-expire-unagentized-dirs)
18386         (gnus-agent-auto-agentize-methods): Add :version.
18387
18388         * flow-fill.el (fill-flowed-display-column)
18389         (fill-flowed-encode-column): Add :version.
18390
18391         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
18392         (gnus-outlook-deuglify-unwrap-max)
18393         (gnus-outlook-deuglify-cite-marks)
18394         (gnus-outlook-deuglify-unwrap-stop-chars)
18395         (gnus-outlook-deuglify-no-wrap-chars)
18396         (gnus-outlook-deuglify-attrib-cut-regexp)
18397         (gnus-outlook-deuglify-attrib-verb-regexp)
18398         (gnus-outlook-deuglify-attrib-end-regexp)
18399         (gnus-outlook-display-hook): Add :version.
18400
18401         * binhex.el (binhex-use-external): Add :version.
18402
18403 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
18404
18405         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
18406         and `invisible'.
18407
18408 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
18409
18410         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
18411         in gnus-registry-trim.
18412
18413 2004-09-13  Simon Josefsson  <jas@extundo.com>
18414
18415         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
18416
18417         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
18418
18419         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
18420         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
18421         <yamaoka@jpl.org>.
18422         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
18423         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
18424         <yamaoka@jpl.org>.
18425
18426         * sieve.el (sieve-manage-mode): Ditto.
18427
18428 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
18429
18430         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
18431
18432 2004-09-11  Simon Josefsson  <jas@extundo.com>
18433
18434         * dns-mode.el: Add.
18435
18436         * mm-view.el (mm-display-dns-inline): Add.
18437
18438         * mm-decode.el (mm-inline-media-tests): Add text/dns.
18439         (mm-automatic-display): Ditto.
18440
18441         * mailcap.el (mailcap-mime-data): Add text/dns.
18442         (mailcap-mime-extensions): Map .soa to text/dns.
18443
18444 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
18445
18446         * gnus-art.el (article-decode-mime-words, article-babel)
18447         (gnus-article-highlight-signature, gnus-article-add-buttons)
18448         (gnus-signature-toggle): Remove unnecessary bindings of
18449         `inhibit-read-only' inherited from v5.10 merge.
18450
18451 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
18452
18453         * nntp.el (nntp): New customization group.
18454         (nntp-authinfo-file): Add customization group.
18455
18456         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
18457
18458         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
18459
18460         * gnus.el (to-address, to-list, subscribed)
18461         (large-newsgroup-initial): Ditto.
18462
18463         * flow-fill.el (fill-flowed-display-column)
18464         (fill-flowed-encode-column): Ditto.
18465
18466 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
18467
18468         * message.el (message-tokenize-header, message-send-mail-with-qmail):
18469         Use point-min rather than 1.
18470         (message-send-mail): Use buffer-size rather than point-max.
18471
18472         * gnus-sum.el (gnus-summary-search-article-forward):
18473         Signal a specific `search-failed' rather than a generic `error'.
18474
18475         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
18476         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
18477         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
18478
18479 2004-09-10  Simon Josefsson  <jas@extundo.com>
18480
18481         * nndb.el (require): Remove tcp and duplicate cl.
18482
18483 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18484
18485         * gnus-agent.el (directory-files-and-attributes): Move forward.
18486
18487 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
18488
18489         * gnus-agent.el (directory-files-and-attributes):
18490         Optionally defined to support XEmacs.
18491
18492 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
18493
18494         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
18495         to avoid run-time CL dependencies.
18496         (gnus-agent-unfetch-articles): New function.
18497         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
18498         article numbers even when local .overview file is missing.
18499         (gnus-agent-read-article-number): New function.  Only accepts
18500         27-bit article numbers.
18501         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
18502         Use gnus-agent-read-article-number.
18503         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
18504         from backend while recognizing that article numbers in .overview
18505         must be valid.
18506         (gnus-agent-update-files-total-fetched-for):
18507         Use directory-files-and-attributes to improve performance.
18508         * gnus-int.el (gnus-request-move-article):
18509         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
18510         improve performance.
18511
18512         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
18513         some users confused by references to .newsrc when they only have a
18514         .newsrc.eld file.
18515         (gnus-convert-mark-converter-prompt)
18516         (gnus-convert-converter-needs-prompt): Fix use of property list.
18517         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
18518         New function.  Used internally to only display 'gnus converting
18519         files' message when actually necessary.
18520
18521         * gnus-sum.el (): Remove (require 'gnus-agent) as required
18522         methods now autoloaded.
18523
18524 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18525
18526         * gnus-sum.el (gnus-summary-insert-subject): Remove list
18527         identifiers.
18528
18529 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
18530
18531         * gnus-picon.el: Fix indentation and closing parenthesis.
18532
18533 2004-09-01  Simon Josefsson  <jas@extundo.com>
18534
18535         * message.el (message-canlock-generate): Require sha1, not
18536         sha1-el.  (Can we get rid of this require altogether?  It is ugly
18537         to require within a function.  Sadly, if sha1.el isn't loaded, the
18538         let binding in m-c-g will hide the defcustom definition, which is
18539         bad.)
18540
18541         * canlock.el: Require sha1, not sha1-el.
18542
18543         * message.el: Don't autoload sha1 (there is a autoload cookie in
18544         sha1.el).
18545
18546         * sha1-el.el: Rename to sha1.el.
18547
18548 2004-08-30  Juanma Barranquero  <lektu@terra.es>
18549
18550         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
18551
18552 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
18553
18554         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
18555
18556 2004-08-30  Kim F. Storm  <storm@cua.dk>
18557
18558         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
18559
18560         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
18561         Add :group 'nnimap.
18562
18563 2004-08-30  Andreas Schwab  <schwab@suse.de>
18564
18565         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
18566         ?* and ?\;.
18567
18568         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
18569         and ?\' to symbol instead of whitespace.
18570
18571 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18572
18573         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
18574
18575         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
18576         instead of re-search-forward.
18577
18578         * gnus-uu.el (gnus-uu-save-article): Ditto.
18579         (gnus-uu-post-encode-uuencode): Ditto.
18580
18581         * html2text.el (html2text-clean-list-items): Ditto.
18582         (html2text-clean-dtdd): Ditto.
18583         (html2text-format-tags): Ditto.
18584
18585         * message.el (message-send-mail-with-sendmail): Fix regexp.
18586         (message-fill-field-general): Use search-forward instead of
18587         re-search-forward.
18588         (unbold-region): Ditto.
18589
18590         * nnrss.el (nnrss-request-article): Ditto.
18591
18592         * nnslashdot.el (nnslashdot-request-article): Ditto.
18593
18594         * nnweb.el (nnweb-gmane-wash-article): Ditto.
18595
18596         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
18597         "Unrecognized menu descriptor" error in XEmacs.
18598
18599 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
18600
18601         * gnus-sum.el (gnus-read-header): Don't remove a header for the
18602         parent article of a sparse article in the thread hashtb.
18603
18604 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
18605
18606         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
18607         (nnmail-expand-newtext): Lowercase expanded entries if
18608         nnmail-split-lowercase-expanded is non-nil.
18609
18610 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18611
18612         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
18613
18614         * gnus-group.el (gnus-group-line-format-alist): Convert the value
18615         of gnus-tmp-news-method into string under XEmacs.  It will be
18616         passed to gnus-correct-length which takes only a string argument.
18617
18618 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18619
18620         * gnus-util.el (gnus-bind-print-variables): New macro.
18621         (gnus-prin1): Use it.
18622         (gnus-prin1-to-string): Use it.
18623         (gnus-pp): New function.
18624         (gnus-pp-to-string): New function.
18625
18626         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
18627         Replace pp-to-string with gnus-pp-to-string.
18628         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
18629         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
18630         * gnus-msg.el (gnus-debug): Ditto.
18631         * gnus-score.el (gnus-score-save): Ditto.
18632         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
18633         gnus-pp-to-string.
18634         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
18635         with gnus-pp.
18636         * score-mode.el (gnus-score-pretty-print): Ditto.
18637         * webmail.el (webmail-debug): Ditto.
18638
18639 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18640
18641         * gnus-art.el (article-display-face, article-display-x-face):
18642         Use buffer-read-only.
18643
18644 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18645
18646         * gnus-art.el (article-hide-list-identifiers):
18647         Bind inhibit-read-only as t.
18648
18649 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
18650
18651         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
18652
18653 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
18654
18655         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
18656         (gnus-narrow-to-page): Don't assume point-min == 1.
18657         (gnus-article-edit-mode): Derive from message-mode.
18658
18659         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
18660         point-min == 1.
18661
18662         * imap.el (imap-parse-address-list, imap-parse-body-ext):
18663         Disable incorrect use of `assert'.
18664
18665         * message.el (message-mode): Set comment-start-skip.
18666
18667
18668 2004-08-22  Sam Steingold  <sds@gnu.org>
18669
18670         * pop3.el (pop3-leave-mail-on-server): New user variable.
18671         (pop3-movemail): Delete mail only when it is nil.
18672
18673 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
18674
18675         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
18676
18677         * mml.el (mml-preview): Use `pop-to-buffer'.
18678
18679         * message.el (message-goto-mail-followup-to): Insert after "To".
18680         (message-carefully-insert-headers): Add comment.
18681
18682         * gnus.el: Remove unused variable `gnus-article-check-size'.
18683
18684         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
18685
18686         * gnus-art.el (gnus-button-alist):
18687         Improve `gnus-button-handle-library' entry.
18688
18689 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
18690
18691         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
18692         Use downcase, since XEmacs capitalizes error messages differently.
18693
18694 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
18695
18696         * nntp.el: Add (require 'gnus) due to reference to
18697         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
18698
18699 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
18700
18701         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
18702         Bind `mm-fill-flowed'.
18703
18704         * mm-decode.el (mm-dissect-singlepart): Check it.
18705
18706 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
18707
18708         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
18709         'imap' for netrc parsing.
18710
18711 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
18712
18713         * mailcap.el (mailcap-mime-data): Mark as risky.
18714
18715 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18716
18717         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
18718         may be included in the encoded word.
18719         (rfc2047-encode): Don't append a space if the encoded word
18720         includes close parenthesis.
18721
18722 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18723
18724         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
18725         of text within parentheses.
18726
18727 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
18728
18729         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
18730         (gnus-encrypt-write-file-contents): Make the password key the file
18731         name PLUS the cipher, not just the cipher.  Also remove failed
18732         passwords from the cache.
18733
18734 2004-08-06  Simon Josefsson  <jas@extundo.com>
18735
18736         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
18737         Doc fix.
18738
18739 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
18740
18741         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
18742         LWSP.
18743
18744 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
18745
18746         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
18747         Try to append in-reply-to: data to the references: header.
18748
18749         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
18750         (netrc-parse): Use gnus-encrypt.el functions.
18751
18752         * gnus-encrypt.el: Add new file for encryption support; currently
18753         does only a few GPG ciphers and an internal XOR cipher.
18754
18755         * password.el: Add comments on using password-read-and-add.
18756         (password-read-and-add): Add function to read and add the
18757         password to the cache at once.
18758
18759 2004-07-28  Simon Josefsson  <jas@extundo.com>
18760
18761         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
18762         parameter (but don't use it, for now).
18763
18764         * imap.el (imap-ssl-open): Use imap-process-connection-type,
18765         instead of hard coding to nil.
18766
18767 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18768
18769         * mm-view.el (mm-inline-image-emacs): Open lines under an image
18770         as mm-inline-image-xemacs does.
18771
18772 2004-07-26  Simon Josefsson  <jas@extundo.com>
18773
18774         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
18775         Revert part of 2004-07-17 change below.
18776
18777 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18778
18779         * rfc2047.el (rfc2047-encode-region): Don't infloop.
18780         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
18781
18782 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18783
18784         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
18785         quotes that actually start with ">" at the beginning of the
18786         lines.
18787
18788 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18789
18790         * rfc2047.el (rfc2047-encode-region): Fix last change.
18791         (rfc2047-encode-parameter): Remove useless concat.
18792
18793 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18794
18795         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
18796         encode special characters; fix some kind of misconfigured headers;
18797         signal a real error if debug-on-quit or debug-on-error is non-nil.
18798         (rfc2047-encode-max-chars): New variable.
18799         (rfc2047-encode-1): Use it.
18800         (rfc2047-encode-parameter): New function.
18801
18802         * mml.el (mml-insert-parameter): Remove an excessive space.
18803
18804 2004-07-17  Simon Josefsson  <jas@extundo.com>
18805
18806         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
18807         Kai Grossjohann <kai@emptydomain.de>.
18808         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
18809         (gnus-group-make-menu-bar): Ditto.
18810
18811         * gnus-util.el (gnus-group-server): Add.
18812
18813 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
18814
18815         * message.el (message-clone-locals): Clone sendmail and smtp
18816         variables.
18817
18818 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18819
18820         * rfc2047.el (rfc2047-encode-region): Fix last change.
18821
18822 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18823
18824         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
18825         characters as non-special.
18826
18827 2004-07-09  Simon Josefsson  <jas@extundo.com>
18828
18829         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
18830         Users will lose all flag changes made while unplugged with
18831         e.g. nntp unless flag synchronization happens, thus `nil' is not a
18832         good default.  See numerous reports on ding mailing list.
18833
18834 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18835
18836         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
18837         add generate-head-function and generate-article-function to the
18838         rfc822-forward entry.
18839         (nndoc-rfc822-forward-generate-article): New function.
18840         (nndoc-rfc822-forward-generate-head): New function.
18841
18842         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
18843
18844 2004-07-06  Dan Christensen  <jdc@uwo.ca>
18845
18846         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
18847         respect display group parameter and gnus-summary-expunge-below.
18848         (gnus-articles-to-read): Remove unused reference to display group
18849         parameter.
18850
18851 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18852
18853         * nnheader.el (nnheader-uniquify-message-id): New experimental
18854         variable.
18855         (nnheader-nov-read-message-id): Use it.
18856
18857         * spam-report.el (spam-report-gmane): Add interactive.
18858
18859 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18860
18861         * mm-encode.el (mm-content-transfer-encoding-defaults):
18862         Use qp-or-base64 for the application/* types.
18863
18864 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
18865
18866         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
18867
18868 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
18869
18870         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
18871         trim value.
18872
18873 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
18874
18875         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
18876         New macro and function.
18877         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
18878
18879 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18880
18881         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
18882         after-load-alist.
18883
18884 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18885
18886         * gnus-group.el (gnus-group-get-new-news-this-group):
18887         Don't update info that isn't there.
18888
18889 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
18890
18891         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
18892         entry.
18893
18894 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18895
18896         * mm-view.el (mm-inline-render-with-function): Use multibyte
18897         buffer; decode html source by charset.
18898
18899         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
18900
18901         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
18902         Mule-UCS is loaded under XEmacs.
18903         (mm-mime-mule-charset-alist): Avoid duplicated entries.
18904
18905 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
18906
18907         * nnheader.el (nnheader-max-head-length): Increase to 8192.
18908
18909 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18910
18911         * mm-util.el (mm-coding-system-p): Return a coding-system.
18912         (mm-mime-mule-charset-alist): Use shift_jis instead of
18913         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
18914         entries for the mime charsets iso-2022-jp-3 and shift_jis.
18915         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
18916         instead of japanese-shift-jis and iso-latin-1 respectively in
18917         order to share the default value with both Emacs and XEmacs-mule.
18918         (mm-mule-charset-to-mime-charset):
18919         Make mm-coding-system-priorities effective.
18920         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
18921         while predicating of candidates upon the priorities.
18922
18923 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
18924
18925         * gnus-sum.el (gnus-summary-make-menu-bar):
18926         Add gnus-uu-invert-processable.
18927
18928         * gnus.el: Autoload gnus-uu-invert-processable.
18929
18930 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18931
18932         * mm-util.el (mm-with-multibyte-buffer): New macro.
18933
18934         * rfc2047.el (rfc2047-encode-string): Use it.
18935         (rfc2047-encode-region): Move point to the end of the region after
18936         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
18937
18938 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18939
18940         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
18941         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
18942
18943 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18944
18945         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
18946         (gnus-cite-parse): Ignore quoted envelope From_.
18947         Suggested by Karl Chen <quarl@nospam.quarl.org>.
18948
18949 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
18950
18951         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
18952         invalid addresses.
18953
18954 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
18955
18956         * spam.el: Change section markers, revise TODO list.
18957         (spam-backends): Make new master list of all installed backends.
18958         (spam-summary-exit-behavior): Add new variable to determine how
18959         messages moves are done at summary exit.
18960         (spam-move-spam-nonspam-groups-only)
18961         (spam-process-ham-in-nonham-groups)
18962         (spam-process-ham-in-spam-groups): Remove variables, the
18963         spam-summary-exit-behavior variable should be used to manage this
18964         behavior.
18965         (spam-old-ham-articles, spam-old-spam-articles): Remove.
18966         (spam-old-articles): Add variable, replacing spam-old-ham-articles
18967         and spam-old-spam-articles.
18968         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
18969         Add empty variables, placeholders for the backends they represent.
18970         (spam-set-difference): Move, unchanged.
18971         (spam-list-of-processors): Declare OBSOLETE, not used anymore
18972         unless the user has a processor variable.
18973         (spam-classifications, spam-classification-valid-p)
18974         (spam-backend-properties, spam-backend-property-valid-p)
18975         (spam-backend-function-type-valid-p)
18976         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
18977         (spam-report-articles-gmane, spam-report-articles-resend):
18978         Remove functions, they are not needed.
18979         (spam-install-backend-super, spam-backend-list)
18980         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
18981         (spam-backend-function, spam-backend-ham-registration-function)
18982         (spam-backend-spam-registration-function)
18983         (spam-backend-ham-unregistration-function)
18984         (spam-backend-spam-unregistration-function)
18985         (spam-backend-statistical-p, spam-backend-mover-p)
18986         (spam-install-backend-alias, spam-install-checkonly-backend)
18987         (spam-install-mover-backend, spam-install-nocheck-backend)
18988         (spam-install-backend, spam-install-statistical-backend)
18989         (spam-install-statistical-checkonly-backend): Add backend installation
18990         support.
18991         (spam-summary-prepare-exit): Rewrite to use the new backend code.
18992         (spam-group-processor-p): Use the new backend code and respect the
18993         summary exit behavior.
18994         (spam-mark-spam-as-expired-and-move-routine): Remove.
18995         (spam-summary-prepare): Change to use the new spam-old-articles
18996         variable.
18997         (spam-copy-or-move-routine, spam-copy-spam-routine)
18998         (spam-move-spam-routine, spam-copy-ham-routine)
18999         (spam-move-ham-routine): Add code to copy/move ham or spam.
19000         (spam-fetch-field-fast): Improve doc and code, plus allow the
19001         'number request.
19002         (spam-list-of-checks, spam-list-of-statistical-checks):
19003         Remove variables.
19004         (spam-split, spam-find-spam): Use the new backend code.
19005         (spam-registration-functions): Remove variable.
19006         (spam-unregister-routine): Add convenience wrapper.
19007         (spam-log-undo-registration, spam-register-routine)
19008         (spam-log-processing-to-registry)
19009         (spam-log-unregistration-needed-p): Rename "check" to "backend"
19010         where possible.
19011         (spam-check-gmane-xref, spam-check-regex-headers)
19012         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
19013         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
19014         (spam-check-bogofilter-headers, spam-check-spamoracle)
19015         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
19016         (spam-check-crm114-headers): Use the spam-split-group that
19017         spam-split prepares, no need to determine it every time.
19018
19019         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
19020         to the nnheader-parse-naked-head call.
19021
19022         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
19023
19024         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
19025         the nnheader-nov-read-message-id call.
19026
19027 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19028
19029         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
19030         gnus-activate-group twice.  Suggested by Markus Peter
19031         <warp@spin.de>.
19032
19033 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
19034
19035         * gnus-art.el (gnus-article-time-format): Exchange the order of
19036         day and month in the default value; fix customization type.
19037         (article-date-ut): Use add-text-properties.
19038         (article-make-date-line): Use message-make-date instead of
19039         current-time-string.
19040
19041         * message.el (message-fetch-field): Don't use set-text-properties.
19042         (message-make-date): Simplify.
19043
19044         * messagexmas.el (message-xmas-make-date): New function.
19045         (message-xmas-redefine): Defalias message-make-date to it.
19046
19047 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19048
19049         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
19050         (rfc2047-encode-region): Treat text within parentheses as special;
19051         show the original text when error has occurred.
19052
19053         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
19054         already-computed method to gnus-activate-group.
19055
19056         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
19057         same select-methods identical Lisp objects.
19058
19059         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
19060         object when modifying the info.
19061
19062 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19063
19064         * gnus-srvr.el (gnus-server-set-info): Remove the server from
19065         gnus-opened-servers since it has never been opened with the new
19066         configuration yet.
19067
19068 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
19069
19070         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
19071         arg to nnheader-generate-fake-message-id.
19072
19073 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
19074
19075         * nnheader.el (nnheader-generate-fake-message-id): Accept a
19076         number and build a fake message ID localized to a group and
19077         article number (so it's repeatable from that point on).
19078         (nnheader-fake-message-id-p): Change regex to accomodate new fake
19079         ID format.
19080
19081         * gnus-sum.el (gnus-get-newsgroup-headers):
19082         Call nnheader-generate-fake-message-id with the article number.
19083
19084 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
19085
19086         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
19087         end-of-buffer.
19088
19089 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19090
19091         * message.el (message-ignored-supersedes-headers): Add Approved.
19092
19093 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
19094
19095         * rfc2047.el (rfc2047-encode-message-header): Remove useless
19096         goto-char.
19097         (rfc2047-encode): Fold the line before encoding.
19098
19099 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19100
19101         * rfc2047.el (rfc2047-encode-message-header): Disabled header
19102         folding -- not all headers can be folded, and this should be done
19103         by the message composition mode.  Probably.  I think.
19104
19105 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19106
19107         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
19108         fast.
19109
19110         * gnus-ems.el (gnus-remove-image): Don't use
19111         message-text-with-property; remove only the image found first.
19112
19113         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
19114         found first.
19115
19116 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
19117
19118         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
19119
19120 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19121
19122         * message.el (message-text-with-property): Make it fast and accept
19123         optional arguments.
19124         (message-strip-forbidden-properties): Use it.
19125         (message-fix-before-sending): Follow the m-t-w-p change.
19126
19127         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
19128
19129 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19130
19131         * gnus-art.el (article-hide-headers): Don't change the buffer
19132         mistakenly when performing mml-preview even if
19133         gnus-single-article-buffer is nil.
19134
19135 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
19136
19137         * message.el (message-expand-name-databases): New user option.
19138         (message-expand-name): Use it.
19139
19140 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
19141
19142         * spam.el (spam-report-articles-resend)
19143         (spam-report-resend-register-routine): Allow ham reporting.
19144         (spam-report-resend-register-ham-routine): Add wrapper.
19145         (spam-registration-functions): Add ham resending functions.
19146         (spam-list-of-processors): Add ham resend processor.
19147
19148         * gnus.el (ham-resend-to): Add new group parameter.
19149         (spam-process): Add ham resend option.
19150
19151         * spam-report.el (spam-report-resend): Allow reporting ham.
19152         (spam-report-resend-ham): Add wrapper.
19153
19154 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19155
19156         * message.el (message-cite-articles-with-x-no-archive):
19157         New variable.
19158         (message-cite-original): Use it.
19159
19160 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19161
19162         * message.el (message-cite-original): Respect X-No-Archive.
19163
19164 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19165
19166         * gnus-art.el (article-hide-headers): Refer to the values for
19167         gnus-ignored-headers and gnus-visible-headers in the summary
19168         buffer since a user may have set them as group parameters.
19169
19170 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
19171
19172         * assistant.el (assistant-node-name): Add convenience function.
19173         (assistant-render-text, assistant-render-node): Add error handling,
19174         plus handle multiple next nodes.
19175         (assistant-find-next-node): Comment out for now.
19176         (assistant-find-next-nodes): Add function, returns list of next
19177         nodes.
19178
19179 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
19180
19181         * mail-source.el (mail-source-directory): Fix doc-string.
19182
19183 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
19184
19185         * assistant.el (assistant-render-text, assistant-eval): Add :set
19186         widget type, which is different because it takes and returns a
19187         list.  Much hilarity ensues.
19188
19189 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
19190
19191         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
19192
19193         * gnus-group.el (gnus-group-get-new-news-this-group):
19194         Add doc-string.
19195
19196         * gnus-start.el (gnus-activate-group): Add doc-string.
19197
19198 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19199
19200         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
19201
19202 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
19203
19204         * assistant.el (assistant-render-text): Try to add a :set
19205         widget, more to come.
19206
19207         * spam.el (spam-group-spam-contents-p): Handle empty groupname
19208         strings.
19209         (spam-report-articles-resend)
19210         (spam-register-routine): Do registration iff any articles warrant
19211         it.
19212         (spam-summary-prepare-exit): Change log message for nil group
19213         destinations.
19214
19215 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
19216
19217         * spam.el (spam-report-resend-register-routine):
19218         Allow spam-report-resend-to to be a group parameter or a global value.
19219
19220 2004-05-26  Simon Josefsson  <jas@extundo.com>
19221
19222         * starttls.el: Merge with my GNUTLS based starttls.el.
19223         (starttls-gnutls-program, starttls-use-gnutls)
19224         (starttls-extra-arguments, starttls-process-connection-type)
19225         (starttls-connect, starttls-failure, starttls-success):
19226         New variables.
19227         (starttls-program, starttls-extra-args): Doc fix.
19228         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
19229         New functions.
19230         (starttls-negotiate, starttls-open-stream):
19231         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
19232         function if it is set.
19233
19234 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19235
19236         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
19237         structured fields.
19238
19239 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19240
19241         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
19242
19243 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
19244
19245         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
19246         Add variable.
19247         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
19248         assigning the spam-mark to new messages.
19249
19250 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
19251
19252         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
19253
19254 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19255
19256         * dgnushack.el: Autoload customize-set-variable for XEmacs.
19257
19258         * rfc2047.el (rfc2047-encodable-p): Don't move point.
19259         (rfc2047-decode): Treat the ascii coding-system as raw-text by
19260         default.
19261
19262 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
19263
19264         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
19265         correct data.
19266
19267 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
19268
19269         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
19270         (spam-group-processor-p): Fix function.
19271         (spam-group-processor-multiple-p)
19272         (spam-group-spam-processor-report-gmane-p)
19273         (spam-group-spam-processor-report-resend-p)
19274         (spam-group-spam-processor-bogofilter-p)
19275         (spam-group-spam-processor-blacklist-p)
19276         (spam-group-spam-processor-ifile-p)
19277         (spam-group-ham-processor-ifile-p)
19278         (spam-group-spam-processor-spamoracle-p)
19279         (spam-group-spam-processor-crm114-p)
19280         (spam-group-ham-processor-bogofilter-p)
19281         (spam-group-spam-processor-stat-p)
19282         (spam-group-ham-processor-stat-p)
19283         (spam-group-ham-processor-whitelist-p)
19284         (spam-group-ham-processor-BBDB-p)
19285         (spam-group-ham-processor-spamoracle-p)
19286         (spam-group-ham-processor-copy-p): Remove functions with some
19287         prejudice against unneeded code.
19288         (spam-report-articles-resend)
19289         (spam-report-resend-register-routine): Allow the group/topic
19290         spam-resend-to value to override spam-report-resend-to.
19291         (spam-summary-prepare-exit): Invoke spam-group-processor-p
19292         properly now.
19293
19294         * gnus.el (spam-resend-to): Add group/topic parameter.
19295         (spam-process): Move the OBSOLETE processors to the end of the
19296         choices.
19297
19298 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
19299
19300         * spam-report.el (spam-report-resend-to, spam-report-resend):
19301         Start with resend-to set to nil, and then ask the user if necessary.
19302         (spam-report-resend): spam-report-resend takes a list of articles, not
19303         separate article numbers.
19304
19305 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19306
19307         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
19308         addition to emacs-w3m.
19309
19310 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19311
19312         * assistant.el (assistant-authinfo-data): New function.
19313         (assistant-eval): Eval for entire assistant.
19314
19315         * netrc.el (netrc-services-file): New variable.
19316         (netrc-parse-services): New function.
19317         (netrc-find-service-name): New function.
19318         (netrc-find-service-number): New function.
19319         (netrc-port-equal): New function.
19320         (netrc-machine): Use it.
19321
19322         * nnimap.el (nnimap-open-connection): Use netrc.
19323
19324         * gnus-util.el (gnus-netrc-get): Remove aliases.
19325
19326         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
19327
19328         * assistant.el (wid-edit): Fix compilation.
19329
19330         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
19331
19332 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
19333
19334         * gnus-util.el (gnus-set-file-modes): New function.  (small
19335         patch).
19336
19337 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19338
19339         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
19340
19341         * assistant.el (assistant-render-node): Fix up rendering and
19342         read-only text.
19343         (assistant-render-node): Reset.
19344         (assistant-make-read-only): Not sticky.
19345
19346 2004-05-20  Danny Siu  <dsiu@adobe.com>
19347
19348         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
19349         centered even when gnus-auto-center-summary is t.
19350
19351 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19352
19353         * dns.el (dns-get-txt-answer): New function.
19354         (dns-read-txt): Ditto.
19355         (query-dns): Use it.
19356
19357 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19358
19359         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
19360         active for foreign groups even if the group level is higher than
19361         the specified value.
19362
19363 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19364
19365         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
19366         non-active groups.
19367
19368         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
19369
19370 2004-05-20  Magnus Henoch  <mange@freemail.hu>
19371
19372         * dns.el (dns-read-type): Add support for SVR.  (small patch)
19373
19374 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
19375
19376         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
19377         (spam-crm114-header, spam-crm114-spam-switch)
19378         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
19379         (spam-crm114-positive-spam-header)
19380         (spam-crm114-database-directory, spam-list-of-processors)
19381         (spam-group-spam-processor-crm114-p)
19382         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
19383         (spam-generic-score, spam-list-of-checks)
19384         (spam-list-of-statistical-checks, spam-registration-functions)
19385         (spam-check-crm114-headers, spam-crm114-score)
19386         (spam-check-crm114, spam-crm114-register-with-crm114)
19387         (spam-crm114-register-spam-routine)
19388         (spam-crm114-unregister-spam-routine)
19389         (spam-crm114-register-ham-routine)
19390         (spam-crm114-unregister-ham-routine): Add CRM114 support.
19391         From asjo@koldfront.dk (Adam Sjøgren).
19392
19393         * gnus.el: Add spam-use-crm114.
19394
19395         * spam.el (spam-list-of-processors, spam-registration-functions):
19396         Add spam-use-resend.
19397         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
19398         (spam-report-articles-gmane): Add doc fix.
19399         (spam-report-articles-resend, spam-report-resend-register-routine):
19400         Add wrappers around spam-report-resend-to.
19401
19402         * spam-report.el (spam-report-resend-to, spam-report-resend):
19403         Add support for resending spam.
19404         (spam-report-gmane): Fix line length >80.
19405
19406         * gnus.el (spam-process): Add spam-use-resend.
19407
19408 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
19409
19410         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
19411         number of processed spam messages.
19412         (spam-ham-copy-or-move-routine): Return the number of processed
19413         ham messages.
19414         (spam-summary-prepare-exit): Use the above values to decide
19415         whether status messages shouled be displayed.
19416
19417 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19418
19419         * rfc2047.el (rfc2047-encode-function-alist): Rename from
19420         `rfc2047-encoding-function-alist' in order to avoid conflicting
19421         with the old version.
19422         (rfc2047-encode-region): Concatenate words containing non-ASCII
19423         characters in structured fields; don't encode space-delimited
19424         ASCII words even in unstructured fields; don't break words at
19425         char-category boundaries.
19426         (rfc2047-encode-1): New function.
19427         (rfc2047-encode): Use it; encode text so that it occupies the
19428         maximum width within 76-column; work correctly on Q encoding for
19429         iso-2022-* charsets.
19430         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
19431         sure not to break a line just after the header name.
19432         (rfc2047-b-encode-region): Remove.
19433         (rfc2047-b-encode-string): New function.
19434         (rfc2047-q-encode-region): Remove.
19435         (rfc2047-q-encode-string): New function.
19436
19437         * mm-util.el (mm-replace-in-string): New function.
19438
19439 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19440
19441         * gnus-msg.el (gnus-inews-make-draft-meta-information):
19442         Really get it right.
19443         (gnus-inews-make-draft): Really.
19444
19445 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
19446
19447         * nnmh.el (nnmh-request-list-1): Don't check the link count
19448         before descending.  (small patch)
19449
19450 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19451
19452         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
19453         stuff.
19454
19455         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
19456         Match on real group name.
19457
19458         * gnus-art.el (gnus-signature-limit): Doc fix.
19459
19460         * gnus-msg.el (gnus-inews-make-draft): Quote list.
19461
19462         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
19463
19464 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
19465
19466         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
19467         isn't a string.
19468
19469 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19470
19471         * gnus-draft.el (gnus-draft-send):
19472         Bind rfc2047-encode-encoded-words.
19473
19474         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
19475         (rfc2047-encodable-p): Say that =? needs encoding.
19476         (rfc2047-encode-encoded-words): New variable.
19477
19478         * gnus-group.el (gnus-group-select-group): Doc fix.
19479
19480         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
19481
19482         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
19483         to nil.
19484
19485         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
19486
19487         * nnheader.el (nnheader-get-lines-and-char): New function.
19488
19489 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
19490
19491         * gnus-msg.el (gnus-summary-followup-with-original):
19492         Document yanking of region when active.
19493
19494 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19495
19496         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
19497         groups if the group level is higher than the specified value.
19498
19499 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
19500
19501         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
19502         (gnus-group-jump-to-group): Add prefix argument using
19503         `gnus-group-jump-to-group-prompt'.  Query before jumping to
19504         non-active group.
19505
19506         * compface.el (uncompface): Be verbose when changing
19507         `uncompface-use-external'.
19508
19509         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
19510         handle manual section.
19511
19512 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19513
19514         * gnus-art.el (gnus-button-alist): Revert previous change.
19515
19516 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
19517
19518         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
19519
19520 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19521
19522         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
19523         whether backend can accept message.
19524
19525         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
19526
19527 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
19528
19529         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
19530         Avoid creating directory when nntp-marks-is-evil is true.
19531         Reported by Reiner Steib.
19532
19533 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
19534
19535         * gnus-picon.el (gnus-picon-style): New variable.
19536         (gnus-picon-insert-glyph): Add optional `nostring' argument.
19537         (gnus-picon-transform-address): Support `gnus-picon-style'.
19538         From Jesper Harder <harder@ifa.au.dk>.
19539
19540 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19541
19542         * message.el (message-fill-field): Return point.
19543         (message-generate-headers): Go to end of field.
19544
19545         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
19546         stuff for non-living groups.
19547
19548 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
19549
19550         * gnus-art.el (gnus-article-followup-with-original)
19551         (gnus-article-reply-with-original): gnus-mark-active-p ->
19552         gnus-region-active-p.
19553
19554 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
19555
19556         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
19557         only when there is spam or ham to be processed.
19558
19559 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19560
19561         * mail-source.el (mail-source-delete-crash-box): Refactor.
19562         (mail-source-fetch): Use it.
19563         (mail-source-fetch-file): Ditto.
19564         (mail-source-fetch-directory): Run postscript in loop.
19565         (mail-source-fetch-pop): Delete.
19566         (mail-source-fetch-maildir): Ditto.
19567         (mail-source-fetch-imap): Ditto.
19568
19569         * imap.el (imap-authenticators): Comment out sasl.
19570
19571         * message.el (message-skip-to-next-address): New function.
19572         (message-fill-header-address): Refactor.
19573         (message-fill-address): Use it.
19574         (message-delete-address): Use it.
19575         (message-fill-header-general): Refactor.
19576         (message-fill-field-address): Rename.
19577         (message-narrow-to-field): Find the start of the header.
19578         (message-header-format-alist): Don't pre-fill.
19579         (message-fill-header): Remove.
19580         (message-insert-header): New function.
19581         (message-shorten-references): Use it.
19582
19583         * rfc2047.el (rfc2047-field-value): Strip props.
19584
19585         * mail-parse.el (mail-header-make-address): New alias.
19586
19587         * ietf-drums.el (ietf-drums-make-address): New function.
19588
19589         * imap.el: Add compiler directives.
19590
19591         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
19592
19593         * gnus-art.el (article-decode-idna-rhs): Don't use
19594         message-idna-inside-rhs-p.
19595
19596 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19597
19598         * message.el (message-idna-inside-rhs-p): Remove.
19599         (message-idna-to-ascii-rhs-1): Use proper address parsing.
19600
19601         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
19602         false positives.
19603
19604 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
19605
19606         * imap.el (imap-sasl-make-mechanisms): Use sasl.
19607
19608 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19609
19610         * nneething.el (nneething-file-name): Don't create spurious
19611         files.
19612
19613         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
19614         (gnus-inews-do-gcc): Remove sleep.
19615
19616         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
19617         part under point.
19618
19619         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
19620         (gnus-agent-regenerate-group): Using nil messages aren't valid.
19621
19622 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
19623
19624         * spam.el (spam-summary-prepare-exit): Fix (length).
19625
19626 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
19627
19628         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
19629         as expired without moving it" message when there are spam
19630         messages left.
19631
19632 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
19633
19634         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
19635         header is not nil.
19636
19637 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
19638
19639         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
19640         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
19641         (nntp-marks-changed-p): New arg SERVER.
19642         (nntp-request-update-info): Adjust caller.
19643
19644 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
19645
19646         * nntp.el (nntp-save-marks): Pass missing arg.
19647
19648 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
19649
19650         * nntp.el: Support marks.
19651         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
19652         (nntp-marks-modtime, nntp-marks-directory): New variables.
19653         (nntp-request-set-mark, nntp-request-update-info)
19654         (nntp-possibly-create-directory, nntp-marks-changed-p)
19655         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
19656         New functions.
19657
19658 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
19659
19660         * gnus-xmas.el (gnus-xmas-select-lowest-window)
19661         (gnus-xmas-redefine): Rename.
19662
19663         * gnus-score.el (gnus-score-insert-help):
19664         Use gnus-select-lowest-window.
19665
19666         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
19667         appt-select-lowest-window and rename to gnus-select-lowest-window.
19668
19669         * gnus.el: do.
19670
19671 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
19672
19673         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
19674         encodings of MIME-encoded words, in order to improve
19675         interoperability with several broken MUAs.
19676
19677 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
19678
19679         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
19680         tags, only when charsets are not specified in headers.
19681         (mm-inline-text-html-render-with-w3m): Ditto.
19682
19683         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
19684         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
19685
19686 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
19687
19688         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
19689         instead of MIME-decoded from fields when checking
19690         `gnus-article-address-banner-alist'.
19691
19692 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
19693
19694         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
19695         description rather than subject.
19696
19697 2004-05-02  Steve Youngs  <steve@youngs.au.com>
19698
19699         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
19700
19701 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19702
19703         * gnus.el (gnus-version-number): Bump.
19704
19705 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19706
19707         * gnus.el: No Gnus v0.2 is released.
19708
19709 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19710
19711         * gnus-agent.el (gnus-agent-read-agentview):
19712         Inline gnus-uncompress-range.
19713
19714 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
19715
19716         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
19717         `exec-installed-p'.
19718
19719 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
19720
19721         * gnus.el (spam-process, spam-autodetect-methods):
19722         Add bsfilter and bsfilter-headers.
19723
19724         * spam.el (spam-bsfilter): New customize group.
19725         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
19726         (spam-bsfilter-header, spam-bsfilter-probability-header)
19727         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
19728         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
19729         (spam-bsfilter-database-directory): New options.
19730         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
19731         (spam-list-of-statistical-checks, spam-registration-functions):
19732         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
19733         (spam-bsfilter-score): New command.
19734         (spam-check-bsfilter-headers, spam-check-bsfilter)
19735         (spam-bsfilter-register-with-bsfilter)
19736         (spam-bsfilter-register-spam-routine)
19737         (spam-bsfilter-unregister-spam-routine)
19738         (spam-bsfilter-register-ham-routine)
19739         (spam-bsfilter-unregister-ham-routine): New functions.
19740         (spam-generic-score): Support bsfilter; Accept an optional argument
19741         to recalcurate spam score even if scoring header has already been
19742         added.
19743         (spam-bogofilter-score, spam-spamassassin-score): Accept an
19744         optional argument to recalcurate spam score even if scoring header
19745         has already been added.
19746
19747 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
19748
19749         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
19750         strings!  Reported by David D. Smith <davidsmith@acm.org>.
19751         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
19752         link is missing.
19753
19754 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
19755
19756         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
19757         (html2text-get-attr): Rewrite.
19758
19759         * message.el (message-setup-1): Remove redundant put-text-property
19760         on mail-header-separator.
19761
19762 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
19763
19764         * gnus-registry.el (gnus-registry-cache-whitespace)
19765         (gnus-registry-action, gnus-registry-spool-action)
19766         (gnus-registry-split-fancy-with-parent): Change message levels
19767         from 5 to 3 or 7, as needed.
19768
19769         * spam.el (spam-summary-prepare-exit)
19770         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
19771         (spam-split, spam-find-spam, spam-log-undo-registration)
19772         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
19773         level from 5 to 6.
19774
19775 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19776
19777         * gnus-ems.el: Autoload appt-select-lowest-window (revert
19778         2004-03-04 change).
19779
19780 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
19781
19782         * sieve-manage.el (sieve-manage-open):
19783         * nnweb.el (nnweb-insert-html):
19784         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
19785         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
19786         * nnspool.el (nnspool-request-group):
19787         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
19788         * nnml.el (nnml-request-update-info):
19789         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
19790         (nnmh-request-create-group, nnmh-update-gnus-unreads):
19791         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
19792         (nnimap-request-set-mark):
19793         * nnfolder.el (nnfolder-request-update-info):
19794         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
19795         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
19796         * gnus-uu.el (gnus-uu-find-articles-matching):
19797         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
19798         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
19799         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
19800         * gnus-nocem.el (gnus-nocem-scan-groups):
19801         * gnus-int.el (gnus-start-news-server):
19802         * gnus-group.el (gnus-group-make-kiboze-group)
19803         (gnus-group-browse-foreign-server):
19804         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
19805         Use mapc when appropriate.
19806
19807 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
19808
19809         FIXME: Make separate entries for each person.
19810
19811         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
19812         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
19813         <shields@msrl.com>:
19814
19815         * spam.el (spam-necessary-extra-headers): Get the extra headers we
19816         may need for spam sorting and scoring.
19817         (spam-user-format-function-S): Add user format function suitable for
19818         general use.
19819         (spam-article-sort-by-spam-status): Add sorting function for summary
19820         sorting.
19821         (spam-extra-header-to-number): Add function to get a score from a
19822         header.
19823         (spam-summary-score): Add function to get a numeric score from the
19824         headers.
19825         (spam-generic-score): Fix function doc, was in wrong place.
19826         (spam-initialize): Take symbols when it's run, and install the
19827         extra headers that spam-necessary-extra-headers thinks we need.
19828
19829 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
19830
19831         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
19832         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
19833
19834 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
19835
19836         * gnus-sum.el (gnus-set-global-variables)
19837         (gnus-build-all-threads, gnus-get-newsgroup-headers)
19838         (gnus-article-get-xrefs, gnus-summary-best-group)
19839         (gnus-summary-next-article, gnus-summary-enter-digest-group)
19840         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
19841         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
19842         Use with-current-buffer.
19843
19844 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
19845
19846         * spam.el (spam-summary-prepare-exit): Simplify logic.
19847         (spam-fetch-article-header): Read the article header if it's not
19848         available.
19849         (spam-list-articles): Simplify logic.
19850         (spam-filelist-register-routine): Fix bug with unregister-list.
19851
19852         * gnus-registry.el: Fix comments at beginning.
19853
19854 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
19855
19856         * message.el (message-cater-to-broken-inn): Remove.
19857         (message-shorten-references): Make sure the total folded length of
19858         References is shorter than 998 characters to cater to a bug in INN
19859         2.3.  Also, don't pretend that references aren't folded -- this
19860         hasn't worked for a while.
19861
19862 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19863
19864         * gnus-agent.el (gnus-agentize):
19865         gnus-agent-send-mail-real-function no longer set to current value
19866         of message-send-mail-function but rather a lambda that calls
19867         message-send-mail-function.  The change makes the agent real-time
19868         responsive to user changes to message-send-mail-function.
19869
19870 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19871
19872         * legacy-gnus-agent.el
19873         (gnus-agent-convert-to-compressed-agentview): Fix typos with
19874         help from Florian Weimer <fw@deneb.enyo.de>
19875
19876 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
19877
19878         * nnmail.el (nnmail-cache-insert): Revert last change.
19879
19880 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19881
19882         * nnmail.el (nnmail-cache-insert): Always check whether
19883         nnmail-cache-ignore-groups matches a group name.
19884
19885 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
19886
19887         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
19888         (spam-find-spam, spam-log-processing-to-registry)
19889         (spam-log-registered-p, spam-log-unregistration-needed-p)
19890         (spam-log-undo-registration): Use gnus-message instead of
19891         gnus-error, none of these errors are fatal.
19892
19893         * gnus-registry.el (gnus-registry-clean-empty-function)
19894         (gnus-registry-clean-empty): Remove only empty entries without
19895         extra data.
19896
19897 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
19898
19899         * spam-stat.el (spam-stat-buffer-change-to-spam)
19900         (spam-stat-buffer-change-to-non-spam): Change (error) to
19901         (gnus-message 8) invocation.
19902
19903 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19904
19905         * nntp.el (nntp-via-netcat-command): New variable.
19906         (nntp-via-netcat-switches): New variable.
19907         (nntp-open-via-rlogin-and-netcat): New function.
19908         (nntp-open-connection-function): Doc fix.
19909         (nntp-telnet-command): Doc fix.
19910         (nntp-end-of-line): Doc fix.
19911         (nntp-via-rlogin-command): Doc fix.
19912         (nntp-via-user-name): Doc fix.
19913         (nntp-via-address): Doc fix.
19914
19915 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19916
19917         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
19918         error in Emacs 21.1.
19919
19920 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
19921
19922         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
19923
19924 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19925
19926         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
19927         (gnus-agent-with-refreshed-group): New macro.
19928         (gnus-agent-rename-group): New function.
19929         (gnus-agent-delete-group): New function.
19930         (gnus-agent-save-group-info): Use gnus-command-method when
19931         `method' parameter is nil.  Don't write nil entries into the
19932         active file.
19933         (gnus-agent-get-group-info): New function.
19934         (gnus-agent-fetch-articles):
19935         Use gnus-agent-update-files-total-fetched-for to increment disk space
19936         used.
19937         (gnus-agent-fetch-headers, gnus-agent-save-alist):
19938         Use gnus-agent-update-view-total-fetched-for to increment disk space
19939         used.
19940         (gnus-agent-get-local): Add optional parameters to avoid calling
19941         gnus-group-real-name and gnus-find-method-for-group.
19942         (gnus-agent-set-local): Delete stored entry if either min, or max,
19943         are nil.
19944         (gnus-agent-fetch-session): Reworded error/quit messages.
19945         On quit, use gnus-agent-regenerate-group to record existance of any
19946         articles fetched to disk before the quit occurred.
19947         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
19948         gnus-agent-update-view-total-fetched-for, and
19949         gnus-agent-update-files-total-fetched-for to decrement disk space
19950         used.
19951         (gnus-agent-retrieve-headers):
19952         Use gnus-agent-update-view-total-fetched-for to increment disk space
19953         used.
19954         (gnus-agent-regenerate-group): Replace gnus-group-update-group
19955         with gnus-agent-update-files-total-fetched-for to decrement disk
19956         space and fresh group buffer.
19957         (gnus-agent-inhibit-update-total-fetched-for): New variable.
19958         (gnus-agent-need-update-total-fetched-for): New variable.
19959         (gnus-agent-update-files-total-fetched-for): New function.
19960         (gnus-agent-update-view-total-fetched-for): New function.
19961         (gnus-agent-total-fetched-for): New function.
19962
19963         * gnus-cache.el (gnus-cache-save-buffers):
19964         Use gnus-cache-update-overview-total-fetched-for to change disk space
19965         used by this group.
19966         (gnus-cache-possibly-enter-article):
19967         Use gnus-cache-update-file-total-fetched-for to increment disk space
19968         used by this group.
19969         (gnus-cache-possibly-remove-article):
19970         Use gnus-cache-update-file-total-fetched-for to decrement disk space
19971         used by this group.
19972         (gnus-cache-generate-nov-databases): Purge total fetched cache.
19973         (gnus-cache-rename-group): New function.
19974         (gnus-cache-delete-group): New function.
19975         (gnus-cache-inhibit-update-total-fetched-for): New variable.
19976         (gnus-cache-need-update-total-fetched-for): New variable.
19977         (gnus-cache-with-refreshed-group): New macro.
19978         (gnus-cache-update-file-total-fetched-for): New function.
19979         (gnus-cache-update-overview-total-fetched-for): New function.
19980         (gnus-cache-rename-group-total-fetched-for): New function.
19981         (gnus-cache-delete-group-total-fetched-for): New function.
19982         (gnus-cache-total-fetched-for): New function.
19983
19984         * gnus-group.el: Require gnus-sum and autoload functions to
19985         resolve warnings when gnus-group.el compiled alone.
19986         (gnus-group-line-format): Documented new %F.
19987         (size of Fetched data) group line format; identifies disk space
19988         used by agent and cache.
19989         (gnus-group-line-format-alist): Defined new F format.
19990         (gnus-total-fetched-for): New function.
19991         (gnus-group-delete-group): No longer update
19992         gnus-cache-active-altered as gnus-request-delete-group now keeps
19993         the cache in sync.
19994         (gnus-group-list-active): Let the agent store a server's active
19995         list if currently plugged.
19996
19997         * gnus-int.el (gnus-request-delete-group):
19998         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
19999         local disk in sync with the server.
20000         (gnus-request-rename-group):
20001         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
20002         local disk in sync with the server.
20003
20004         * gnus-start.el (gnus-get-unread-articles):
20005         Cosmetic simplification to logic.
20006
20007         * gnus-util.el (gnus-rename-file): New function.
20008
20009 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
20010
20011         * mm-util.el (mm-image-load-path): Handle nil in load-path.
20012
20013 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
20014
20015         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
20016         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
20017
20018 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
20019
20020         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
20021         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
20022
20023 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
20024
20025         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
20026
20027 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
20028
20029         * spam.el (spam-set-difference): Add function to replace
20030         gnus-set-difference in spam.el.
20031         (spam-summary-prepare-exit): Use spam-set-difference.
20032
20033 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
20034
20035         * gnus-registry.el (gnus-registry-cache-file): Update to use
20036         gnus-dribble-directory OR gnus-home-directory OR ~.
20037         (gnus-registry-split-fancy-with-parent): Fix doc.
20038
20039 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20040
20041         * message.el (message-exchange-point-and-mark):
20042         Use message-mark-active-p.  Suggested by Jesper Harder
20043         <harder@ifa.au.dk>.
20044
20045 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20046
20047         * message.el (message-exchange-point-and-mark): Don't activate
20048         region if it was inactive.  Suggested by Hiroshi Fujishima
20049         <pooh@nature.tsukuba.ac.jp>.
20050
20051 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20052
20053         * gnus-art.el (article-display-face): Display Faces in the same
20054         order as X-Faces.
20055
20056 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20057
20058         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
20059
20060 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20061
20062         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
20063         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
20064         (gnus-article-mime-hierarchy): Remove.
20065         (gnus-article-mime-hierarchy-next): Remove.
20066         (gnus-article-mode): Revert 2004-03-19 change.
20067         (gnus-article-setup-buffer): Revert 2004-03-19 change.
20068         (gnus-insert-mime-button): Revert 2004-03-19 change.
20069         (gnus-mime-accumulate-hierarchy): Remove.
20070         (gnus-mime-enter-multipart): Remove.
20071         (gnus-mime-leave-multipart): Remove.
20072         (gnus-mime-display-part): Revert 2004-03-19 change.
20073         (gnus-mime-display-alternative): Revert 2004-03-19 change.
20074
20075         * mml.el (mml-preview): Revert 2004-03-19 change.
20076
20077 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
20078
20079         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
20080
20081 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20082
20083         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
20084         t while entering a file name using the mm-with-multibyte macro.
20085         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
20086
20087         * mm-util.el (mm-with-multibyte): New macro.
20088
20089 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
20090
20091         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
20092         New user option.
20093         (gnus-mime-multipart-functions): Doc and customization fix.
20094         (gnus-article-mime-hierarchy): New variable.
20095         (gnus-article-mime-hierarchy-next): New variable.
20096         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
20097         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
20098         gnus-article-mime-hierarchy-next to nil.
20099         (gnus-insert-mime-button): Show hierarchy numbers.
20100         (gnus-mime-accumulate-hierarchy): New function.
20101         (gnus-mime-enter-multipart): New function.
20102         (gnus-mime-leave-multipart): New function.
20103         (gnus-mime-display-part): Recompute hierarchical MIME structure.
20104         (gnus-mime-display-alternative): Show hierarchy numbers.
20105
20106         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
20107         gnus-article-mime-hierarchy-next to nil.
20108
20109 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
20110
20111         * dns.el: Don't require gnus-xmas.
20112
20113 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
20114
20115         * mml.el (mml-generate-mime-1): Don't use format=flowed with
20116         inline PGP.
20117         (mml-menu): Disable mml-quote-region if mark is inactive.
20118
20119 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20120
20121         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
20122         when the group's active is not available.
20123
20124 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20125
20126         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
20127         error.
20128
20129 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
20130
20131         * imap.el (imap-store-password): New variable.
20132         (imap-interactive-login): Use it.
20133         Suggested by Mark Plaksin <happy@mcplaksin.org>.
20134
20135 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20136
20137         * gnus-art.el (gnus-article-read-summary-keys): Restore new
20138         window-start and hscroll to summary window.
20139
20140 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20141
20142         * gnus-start.el (gnus-convert-old-newsrc): Only write the
20143         conversion message to newsrc-dribble when an actual conversion is
20144         performed.
20145
20146 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
20147
20148         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
20149
20150 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
20151
20152         * mm-decode.el (mm-complicated-handles): New function reviving
20153         former definition of mm-multiple-handles.
20154
20155         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
20156         (gnus-mime-delete-part): Use it.
20157
20158 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20159
20160         * gnus-agent.el (gnus-agent-read-local):
20161         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
20162         avoid the implicit assumption that they will always be equal.
20163         (gnus-agent-save-local): Bind buffer-file-coding-system, not
20164         coding-system-for-write, as the with-temp-file macro first prints
20165         to a buffer then saves the buffer.
20166
20167 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
20168
20169         * gnus-art.el (gnus-article-edit-part): New function.
20170         (gnus-mime-save-part-and-strip): Use it; do query instead of
20171         signaling an error; don't use mm-multiple-handles.
20172         (gnus-mime-delete-part): Ditto.
20173
20174 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20175
20176         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
20177         old file versions.
20178         (gnus-group-prepare-hook): Remove function that converted list
20179         form of gnus-agent-expire-days to group properties.
20180
20181         * gnus-int.el: Autoload gnus-agent-regenerate-group.
20182         (gnus-request-accept-article): Re-indented.
20183
20184         * gnus-start.el (gnus-convert-old-newsrc): Registered new
20185         converters to handle old agent file formats.  Add logic for a
20186         "backup before upgrading warning".
20187         (gnus-convert-mark-converter-prompt): Developers can mark
20188         functions as needing (default), or not needing,
20189         gnus-convert-old-newsrc's "backup before upgrading warning".
20190         (gnus-convert-converter-needs-prompt): Tests whether the user
20191         should be protected from potentially irreversable changes by the
20192         function.
20193
20194         * legacy-gnus-agent.el: New.  Provides converters that are only
20195         loaded when gnus-convert-old-newsrc needs to call them.
20196
20197 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20198
20199         * mail-source.el (mail-source-touch-pop): Doc fix.
20200
20201         * message.el (message-smtpmail-send-it): Doc fix.
20202
20203 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
20204
20205         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
20206
20207         * nnmail.el (nnmail-split-fancy): do.
20208
20209         * gnus-kill.el (gnus-kill, gnus-execute): do.
20210
20211 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
20212
20213         * gnus-sum.el (gnus-widget-reversible-match)
20214         (gnus-widget-reversible-to-internal)
20215         (gnus-widget-reversible-to-external): New functions.
20216         (gnus-widget-reversible): New widget.
20217         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
20218
20219 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
20220
20221         * gnus-sum.el (gnus-thread-sort-functions)
20222         (gnus-article-sort-functions): Document `(not F)' items.
20223
20224 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
20225
20226         * spam.el (spam-use-gmane-xref): Add new backend.
20227         (spam-gmane-xref-spam-group): Add variable to control the name of the
20228         Gmane spam group.
20229         (spam-blackhole-servers, spam-blackhole-good-server-regex)
20230         (spam-regex-headers-spam, spam-regex-headers-ham)
20231         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
20232         (spam-list-of-checks): Add spam-use-gmane-xref to list of
20233         backends and checks.
20234         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
20235
20236         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
20237         an autodetect method.
20238
20239 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20240
20241         * gnus-int.el (gnus-request-accept-article): Inform the agent that
20242         articles are being added to a group.
20243         (gnus-request-replace-article): Inform the agent that articles
20244         need to be uncached as the cached contents are no longer valid.
20245
20246 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
20247
20248         * binhex.el: Don't autoload executable-find.
20249
20250         * canlock.el: Don't autoload mail-fetch-field.
20251
20252         * dgnushack.el: Autoload c-mode for XEmacs.
20253
20254         * gnus-ems.el: Don't autoload appt-select-lowest-window.
20255
20256         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
20257         rmail-dont-reply-to and rmail-output.
20258
20259         * gnus-score.el: Don't autoload ffap-string-at-point.
20260
20261         * gnus-setup.el: Don't autoload sc-cite-original.
20262
20263         * imap.el: Don't autoload base64-decode-string,
20264         base64-encode-string and md5.
20265
20266         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
20267         and rmail-msg-restore-non-pruned-header.
20268
20269         * mm-decode.el: Don't autoload executable-find.
20270
20271         * mm-url.el: Don't autoload executable-find.
20272
20273         * mm-view.el: Don't autoload diff-mode.
20274
20275         * nndb.el: Don't autoload news-reply-mode, news-setup,
20276         cancel-timer and telnet.
20277
20278         * password.el: Don't autoload run-at-time for Emacs.
20279
20280         * sha1-el.el: Don't autoload executable-find.
20281
20282         * sieve-mode.el: Don't autoload c-mode.
20283
20284         * uudecode.el: Don't autoload executable-find.
20285
20286 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20287
20288         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
20289         (gnus-agent-possibly-alter-active): Avoid null in numeric
20290         comparison.
20291         (gnus-agent-set-local): Refuse to save null in local object table.
20292         (gnus-agent-regenerate-group): The REREAD parameter can now be a
20293         list of articles that will be marked as unread.
20294
20295 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
20296
20297         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
20298
20299 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
20300
20301         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
20302         language tags.
20303
20304 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
20305
20306         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
20307         Don't bind "obarray".
20308
20309         * gnus-sum.el (gnus-thread-sort-functions):
20310         Add `gnus-thread-sort-by-most-recent-number' and
20311         `gnus-thread-sort-by-most-recent-date'.
20312         Reported by Kai Grossjohann <kai@emptydomain.de>.
20313
20314 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
20315
20316         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
20317
20318 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20319
20320         * gnus-cus.el (gnus-agent-customize-category):
20321         Remove ignore-errors macro reference that required cl to be loaded at
20322         run-time.
20323
20324         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
20325         single-interval range of the form (min . max).  Previously the
20326         range had to look like ((min . max)).  Likewise, return
20327         (min . max) rather than ((min . max)).
20328         (gnus-range-map): Use gnus-range-normalize to accept
20329         single-interval range.
20330
20331         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
20332         the cache, but not the agent, now appear with their usual face.
20333
20334         * dgnushack.el (loaddir): New variable that is bound to the
20335         directory containing the dgnushack.el file. Use loaddir, rather
20336         than srcdir, to update load-path. Change lets dgnushack compile
20337         code in directories other than GNUS/lisp.
20338
20339 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20340
20341         * lpath.el: Don't bind w3m-safe-url-regexp.
20342
20343         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
20344         w3m-safe-url-regexp variable buffer-local.
20345
20346         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
20347
20348 2004-02-27  Simon Josefsson  <jas@extundo.com>
20349
20350         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
20351         gnus-group-real-prefix.
20352         (gnus-summary-move-article): Use it, instead of
20353         gnus-group-real-prefix.
20354
20355 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20356
20357         * lpath.el: Bind w3m-safe-url-regexp.
20358
20359         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
20360         w3m-safe-url-regexp variable buffer-local and set it as the value
20361         of mm-w3m-safe-url-regexp.
20362
20363         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
20364
20365         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
20366         parsing gnus-posting-styles when the message is not for replying.
20367
20368         * dgnushack.el: Autoload sgml-mode for XEmacs.
20369
20370         * nnrss.el (nnrss-opml-export):
20371         Use mm-set-buffer-file-coding-system instead of
20372         set-buffer-file-coding-system.
20373
20374 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
20375
20376         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
20377         of checkdoc.el).
20378         * nnrss.el: do.
20379         * gnus-mlspl.el: do.
20380         * gnus-ml.el: do.
20381         * gnus-srvr.el: do.
20382
20383         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
20384
20385 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
20386
20387         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
20388         Corrections to custom-manual links.
20389
20390         * gnus-art.el (gnus-article): Ditto.
20391
20392         * mm-decode.el (mime-display, mime-security): Ditto.
20393
20394 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
20395
20396         * flow-fill.el: Typo.
20397
20398 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
20399
20400         * spam-wash.el: New file.
20401
20402 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
20403
20404         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
20405
20406 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
20407
20408         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
20409         to be run with new-articles as LIST1, not LIST2.
20410         (spam-registration-functions): Add spam-use-ham-copy as a nil
20411         registration backend.
20412
20413 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
20414
20415         * spam-stat.el (spam-stat-washing-hook): New option.
20416         (spam-stat-buffer-words): Use it.
20417         (spam-stat-process-directory, spam-stat-test-directory):
20418         Use insert-file-contents-literally.
20419         (spam-stat-coding-system): New variable.
20420         (spam-stat-load, spam-stat-save): Use it.
20421
20422 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20423
20424         * spam-report.el (spam-report-plug-agent):
20425         Quote spam-report-url-to-file and spam-report-url-ping-plain.
20426
20427 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
20428
20429         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
20430         Allow / in mailto URLs.
20431
20432 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
20433
20434         * spam-report.el (spam-report-process-queue): Fix interactive use.
20435         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
20436         (spam-report-unplug-agent): Doc fixes.
20437         (spam-report-url-ping-mm-url, spam-report-url-to-file)
20438         (spam-report-agentize, spam-report-deagentize): Autoload.
20439
20440 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20441
20442         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
20443
20444         * message.el (message-setup-fill-variables): Add mml tags to
20445         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
20446         <ajk@iu.edu>.
20447         (message-mode): Don't modify paragraph-separate there.
20448
20449 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20450
20451         * compface.el (uncompface-use-external): Default to undecided.
20452         (uncompface-use-external-threshold): New variable.
20453         (uncompface-float-time): New macro.
20454         (uncompface): Determine whether to use the external decoder if
20455         uncompface-use-external is undecided.
20456
20457 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20458
20459         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
20460         after images.
20461
20462         * gnus-art.el (gnus-mime-display-single): Remove dead code.
20463
20464 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
20465
20466         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
20467
20468         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
20469
20470         * gnus-sum.el (gnus-summary-limit-to-age)
20471         (gnus-summary-limit-children): do.
20472
20473         * gnus-int.el (gnus-request-scan): do.
20474
20475         * gnus-group.el (gnus-group-suspend): do.
20476
20477         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
20478
20479         * gnus-cite.el (gnus-cite-parse-attributions): do.
20480
20481         * gnus-agent.el (gnus-summary-set-agent-mark)
20482         (gnus-agent-regenerate-group): do.
20483
20484         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
20485
20486         * binhex.el (binhex-decode-region-internal): do.
20487
20488 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20489
20490         * gnus-fun.el (gnus-face-properties-alist): New user option.
20491         (gnus-display-x-face-in-from): Use it.
20492
20493         * gnus-art.el (article-display-face): Ditto.
20494
20495         * compface.el (uncompface-use-external): Default to nil.
20496
20497 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
20498
20499         * nntp.el (nntp-erase-buffer): New function.
20500         (nntp-retrieve-data, nntp-send-command)
20501         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
20502         (nntp-possibly-change-group): Use it.
20503
20504         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
20505         Use with-current-buffer.
20506
20507 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
20508
20509         * compface.el: Merge the ELisp-based uncompface program.
20510         (compface): New customization group.
20511         (uncompface-use-external): New user option.
20512         (uncompface): Call uncompface-internal if uncompface-use-external
20513         is nil.
20514         (uncompface-internal): New function.  Note that there are also
20515         some other functions and variables added for this function.
20516
20517 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
20518
20519         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
20520         if necessary.
20521
20522 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
20523
20524         * spam-report.el (spam-report-unplug-agent)
20525         (spam-report-plug-agent, spam-report-deagentize)
20526         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
20527         Add support for the Agent in spam-report: when unplugged, report to a
20528         file; when plugged, submit all the requests.
20529
20530         * spam.el (spam-register-routine): Fix message about
20531         registration.
20532
20533 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
20534
20535         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
20536         dependencies.
20537         (rfc2047-encode): Use it.
20538
20539         * gnus-art.el (gnus-button-marker-list): Move before first
20540         reference.
20541
20542         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
20543         (imap-parse-body): Fix format string mismatch.
20544
20545         * gnus-score.el (gnus-summary-increase-score): do.
20546
20547         * nnrss.el (nnrss-close): New function.
20548
20549 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
20550
20551         * nnrss.el (nnrss-make-filename): New function.
20552         (nnrss-request-delete-group, nnrss-read-server-data)
20553         (nnrss-save-server-data, nnrss-read-group-data)
20554         (nnrss-save-group-data): Use it.
20555         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
20556         (nnrss-read-server-data, nnrss-read-group-data): Use load.
20557         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
20558
20559 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
20560
20561         * mml.el (mml-compute-boundary-1): Don't uncompress files.
20562
20563 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
20564
20565         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
20566         files.
20567
20568         * message.el (message-generate-headers-first): Don't quote nil
20569         and t in docstrings.
20570
20571         * imap.el (imap-id): do.
20572
20573         * gnus-agent.el (gnus-agent-consider-all-articles)
20574         (gnus-agent-queue-mail): do.
20575
20576 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
20577
20578         * spam-report.el (spam-report-process-queue): New function.
20579         Process requests from `spam-report-requests-file'.
20580         (spam-report-process-queue): Doc fix.
20581
20582 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
20583
20584         * spam.el (spam-register-routine)
20585         (spam-log-processing-to-registry, spam-log-registered-p)
20586         (spam-log-unregistration-needed-p, spam-log-undo-registration):
20587         Change "check" to "spam-check" for semi-clarity.
20588
20589 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
20590
20591         * pop3.el: Require nnheader.
20592
20593         * mml-smime.el: Require cl.  Autoload message-fetch-field.
20594
20595         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
20596
20597         * gnus-picon.el: Require cl.
20598
20599         * gnus-fun.el: Require gnus-ems and gnus-util.
20600
20601         * gnus.el (gnus-method-to-server): Move defsubst before first use.
20602
20603         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
20604
20605         * gnus-art.el (gnus-article-edit-mode): Define before first
20606         reference.
20607
20608 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
20609
20610         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
20611         (gnus-uu-post-encoded): Use point-at-bol.
20612
20613         * gnus-topic.el (gnus-group-active-topic-p): do.
20614
20615         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
20616
20617         * gnus-group.el (gnus-group-kill-region): do.
20618
20619         * gnus-art.el (article-date-ut): do.
20620
20621         * message.el (message-fetch-field): Remove redundant
20622         case-fold-search binding.
20623         (message-narrow-to-field): Simplify.
20624
20625 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
20626
20627         * spam.el (spam-directory): Derive from `gnus-directory'.
20628
20629         * spam-report.el (spam-report-url-to-file)
20630         (spam-report-requests-file): New function and variable for offline
20631         reporting.
20632         (spam-report-url-ping-function): Add `spam-report-url-to-file'
20633         and user defined function.
20634         (spam-report-url-ping-mm-url): Remove doubled slash.
20635
20636 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
20637
20638         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
20639
20640 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
20641
20642         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
20643         Fix format string mismatch.
20644
20645         * sieve.el (sieve-deactivate-all): do.
20646
20647         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
20648
20649         * nnlistserv.el (nnlistserv-kk-wash-article): do.
20650
20651         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
20652
20653         * mm-bodies.el (mm-7bit-chars): Don't include \r.
20654
20655 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
20656
20657         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
20658         the list of checks.
20659
20660 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
20661
20662         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
20663         padding.
20664
20665 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
20666
20667         * mm-view.el (mm-fill-flowed): New variable.
20668         (mm-inline-text): Use it.
20669
20670 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
20671
20672         * spam.el (spam-spamassassin-register-ham-routine)
20673         (spam-spamassassin-register-spam-routine): Fix function names.
20674
20675 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20676
20677         * gnus.el (gnus-tmp-grouplens): Remove.
20678         (gnus-summary-line-format): Remove grouplens.
20679
20680         * gnus-group.el (gnus-group-line-format): Ditto.
20681
20682         * gnus-spec.el (gnus-format-specs): Ditto.
20683         (gnus-update-format-specifications): Flush the group format spec
20684         cache if there's the grouplens stuff.
20685         (gnus-parse-simple-format): Replace %l with the empty string.
20686
20687 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
20688
20689         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
20690         omission.
20691
20692 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20693
20694         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
20695         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
20696
20697 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
20698
20699         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
20700         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
20701         New macros and functions.
20702         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
20703         Handle > NLINK_MAX messages.
20704         * nnmaildir.el (nnmaildir-request-set-mark):
20705         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
20706
20707 2004-01-25  Alex Schroeder  <alex@gnu.org>
20708
20709         * spam-stat.el (spam-stat-process-directory-age): New option.
20710         (spam-stat-process-directory): Use it.
20711
20712 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
20713
20714         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
20715         (spam-stat-save): Accept prefix argument.
20716
20717 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
20718
20719         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
20720         links" error.
20721
20722 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20723
20724         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
20725         the rest of the and/or forms.
20726
20727 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
20728
20729         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
20730         compatibility with old .newsrc.eld files.
20731
20732         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
20733
20734         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
20735
20736         * gnus-start.el (gnus-1): do.
20737
20738         * gnus-group.el (gnus-group-line-format-alist): do.
20739
20740         * gnus.el (gnus-use-grouplens, gnus-visual): do.
20741
20742         * gnus-gl.el: Remove.
20743
20744 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20745
20746         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
20747         marks consisting of a single range {for example, (3 . 5)} rather
20748         than a list of a single range { ((3 . 5)) }.
20749
20750 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
20751
20752         * spam-stat.el (spam-stat-store-gnus-article-buffer):
20753         Use with-current-buffer.
20754         (spam-stat-store-current-buffer): Use insert-buffer-substring to
20755         avoid consing a string.
20756
20757         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
20758         Remove obsolete entries for big5 and gb2312.
20759
20760 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20761
20762         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
20763         uncompressed list.
20764
20765 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
20766
20767         * spam-stat.el (spam-stat-strip-xref): New function.
20768         (spam-stat-process-directory): Use it.
20769
20770         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
20771         here -- it's done in message-fetch-field.
20772
20773 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20774
20775         * gnus-agent.el (gnus-agent-queue-mail)
20776         (gnus-agent-prompt-send-queue): New variables.
20777         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
20778         * gnus-draft.el (gnus-group-send-queue): Pass the group name
20779         "nndraft:queue" along to gnus-draft-send.
20780         Use gnus-agent-prompt-send-queue.
20781         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
20782         is "nndraft:queue".  Suggested by Gaute Strokkenes
20783         <gs234@srcf.ucam.org>
20784
20785         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
20786         (agent-enable-undownloaded-faces): Add.
20787         (gnus-agent-cat-groups): Use eval-and-compile, not
20788         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
20789         method of gnus-agent-cat-groups even when the buffer has been
20790         evaled.
20791         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
20792         delete gnus-agent-save-active-1.
20793         (gnus-agent-save-groups): Delete.  Identical to
20794         gnus-agent-save-active.
20795         (gnus-agent-write-active): No longer adjust agent's copy of active
20796         file as agent's adjustments are now stored in their own
20797         file.  Remove optional parameter.
20798         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
20799         servers.  Add use of min/max range limits from server's local
20800         file.
20801         (gnus-agent-save-alist): Remove unused optional argument.
20802         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
20803         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
20804         (gnus-agent-set-local): A per-server file that keeps min/max range
20805         limits for articles known to the agent.  Provides a fast mechanism
20806         for altering many active ranges.
20807         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
20808         active file (local makes it unnecessary).
20809         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
20810
20811         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
20812         (agent-enable-undownloaded-faces): Add.
20813
20814         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
20815         disable it when sending to "nndraft:queue".
20816         (gnus-group-send-queue): Add safety check to avoid sending queue
20817         when unplugged.
20818
20819         * gnus-group.el (gnus-group-catchup): Use new
20820         gnus-sequence-of-unread-articles, not
20821         gnus-list-of-unread-articles, to avoid exhausting memory with huge
20822         numbers of articles.  Use gnus-range-map to avoid having to
20823         uncompress the unread list.
20824         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
20825         Fix invalid ange-ftp reference.
20826
20827         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
20828         (gnus-sorted-range-intersection): Intersection of two ranges
20829         without requiring that they first be uncompressed.
20830
20831         * gnus-start.el (gnus-activate-group): Unless blocked by the
20832         caller, possibly expand the active range to include both cached
20833         and agentized articles.
20834         (gnus-convert-old-newsrc): Rewrote in anticipation of having
20835         multiple version-dependent converters.
20836         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
20837         gnus-agent-save-active.
20838         (gnus-save-newsrc-file): Save dirty agent range limits.
20839
20840         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
20841         gnus-agent-possibly-alter-active.
20842         (gnus-adjust-marked-articles): Faster handling of simple lists.
20843
20844 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
20845
20846         * spam-stat.el (spam-stat-test-directory): New optional argument
20847         displays a list of files detected.  Suggested by Andrew Cohen
20848         <cohen@andy.bu.edu>.
20849         (spam-stat-buffer-words-with-scores): Don't narrow and change
20850         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
20851
20852 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
20853
20854         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
20855         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
20856         (spam-spamassassin-arguments)
20857         (spam-spamassassin-spam-flag-header)
20858         (spam-spamassassin-positive-spam-flag-header)
20859         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
20860         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
20861         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
20862         (spam-list-of-processors, spam-list-of-checks)
20863         (spam-list-of-statistical-checks, spam-registration-functions)
20864         (spam-check-spamassassin-headers, spam-check-spamassassin)
20865         (spam-spamassassin-score)
20866         (spam-spamassassin-register-with-sa-learn)
20867         (spam-spamassassin-register-spam-routine)
20868         (spam-spamassassin-register-ham-routine)
20869         (spam-assassin-register-spam-routine)
20870         (spam-assassin-register-ham-routine): Add SpamAssassin support.
20871         (spam-bogofilter-score): Fix to show article before scoring.
20872
20873 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
20874
20875         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
20876         default scoring function.
20877         (spam-generic-score): Call spam-spamassassin-score if
20878         spam-use-spamassassin or spam-use-spamassassin-headers is on;
20879         spam-bogofilter-score otherwise.
20880
20881         * gnus.el (spam-process, spam-autodetect-methods):
20882         Add spamassassin and spamassassin-headers.
20883
20884 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
20885
20886         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
20887         Suppress unnecessary messages.
20888
20889 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
20890
20891         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
20892         make-hash-table.
20893
20894 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
20895
20896         * canlock.el (base64-encode-string): Don't autoload it.
20897
20898 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20899
20900         * run-at-time.el: Remove useless (require 'itimer),
20901         eval-and-compile and (featurep 'xemacs).
20902
20903 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
20904
20905         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
20906         GROUP is a virtual group.
20907
20908 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
20909
20910         * gnus.el: Autoload `message-y-or-n-p'.
20911
20912 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
20913
20914         * pgg-parse.el: Remove unnecessary (require 'custom).
20915
20916         * pgg-def.el: do.
20917
20918         * nnmail.el: do.
20919
20920         * gnus-undo.el: do.
20921
20922         * gnus-picon.el: do.
20923
20924         * gnus-util.el: do.
20925
20926 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
20927
20928         * gnus-sum.el (gnus-pick-line-number): Add autoload.
20929
20930 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20931
20932         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
20933         handle, as well as a list.
20934
20935         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
20936         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
20937         (mm-w3m-cid-retrieve): Simplify.
20938
20939 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
20940
20941         * message.el (message-kill-to-signature): Allow prefix arg to
20942         specify number of lines to keep before signature.
20943
20944 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
20945
20946         * message.el (message-kill-to-signature): Change docstring.
20947
20948 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20949
20950         * canlock.el: Always require sha1-el.
20951         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
20952
20953         * message.el: Autoload sha1 only when compiling.
20954
20955         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
20956         eudc-expand-inline for XEmacs.
20957
20958 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20959
20960         * message.el (message-canlock-generate): Require sha1-el.
20961
20962 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
20963
20964         * message.el (message-expand-name): Silence the byte compiler.
20965
20966         * lpath.el: Add detect-coding-system.
20967
20968         * dgnushack.el (dgnushack-compile): Remove obsolete check for
20969         cus-edit.
20970
20971 2004-01-13  Simon Josefsson  <jas@extundo.com>
20972
20973         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
20974         Invoke gnus-score-mode.
20975         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
20976
20977         * gnus-range.el (gnus-compress-sequence): Doc fix.
20978         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
20979
20980 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
20981
20982         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
20983
20984 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
20985
20986         * spam.el (spam-get-article-as-string): Update to use
20987         gnus-request-article-this-buffer, much simpler.
20988         (spam-get-article-as-buffer): Remove.
20989
20990 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
20991
20992         * message.el (message-expand-name): Use EUDC if the user uses that.
20993
20994 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
20995
20996         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
20997         character for the encoding to avoid consing a string.
20998
20999         * rfc2047.el (rfc2047-decode-string): Don't cons a string
21000         unnecessarily.
21001
21002         * mm-util.el (mm-replace-chars-in-string): Remove.
21003
21004         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
21005         of mm-replace-chars-in-string.
21006
21007 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
21008
21009         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
21010
21011         * mm-util.el (mm-subst-char-in-string): Support inplace.
21012
21013         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
21014         a new string in every iteration.  Use shy groups.
21015
21016 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
21017
21018         * gnus-srvr.el (gnus-browse-unsubscribe-group):
21019         * gnus-soup.el (gnus-soup-group-brew):
21020         * gnus-msg.el (gnus-put-message):
21021         * gnus-move.el (gnus-group-move-group-to-server):
21022         * gnus-kill.el (gnus-batch-score):
21023         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
21024         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
21025         (gnus-group-update-group, gnus-group-read-group)
21026         (gnus-group-make-group, gnus-group-make-help-group)
21027         (gnus-group-make-archive-group, gnus-group-make-directory-group)
21028         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
21029         (gnus-group-sort-by-unread, gnus-group-catchup)
21030         (gnus-group-unsubscribe-group, gnus-group-kill-group)
21031         (gnus-group-yank-group, gnus-group-set-info)
21032         (gnus-group-list-groups):
21033         * gnus.el (gnus-generate-new-group-name):
21034         * gnus-delay.el (gnus-delay-send-queue):
21035         * nnvirtual.el (nnvirtual-catchup-group):
21036         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
21037         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
21038         (gnus-group-prepare-topics, gnus-topic-check-topology):
21039         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
21040         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
21041         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
21042         (gnus-group-make-articles-read):
21043         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
21044         (gnus-group-change-level, gnus-kill-newsgroup)
21045         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
21046         (gnus-get-unread-articles, gnus-make-articles-unread)
21047         (gnus-make-ascending-articles-unread): Use accessor
21048         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
21049         to get group information for improved readability.
21050
21051
21052 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
21053
21054         * gnus-art.el (article-decode-mime-words, article-babel)
21055         (gnus-article-highlight-signature, gnus-article-add-buttons)
21056         (gnus-signature-toggle): Use gnus-with-article-buffer.
21057
21058         * gnus-art.el (gnus-article-highlight-headers)
21059         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
21060
21061         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
21062         (gnus-article-set-globals, gnus-request-article-this-buffer)
21063         (gnus-button-message-id, gnus-article-maybe-hide-headers)
21064         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
21065         (gnus-mime-display-alternative): Use with-current-buffer.
21066
21067 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
21068
21069         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
21070         also under 80 char limit, and call gnus-error if needed.
21071         (spam-fetch-article-header): Fix - it was a
21072         buffer-local variable (gnus-newsgroup-data).
21073         (spam-find-spam): Use spam-generate-fake-headers, forget about
21074         spam-insert-fake-headers.
21075         (spam-insert-fake-headers): Remove.
21076
21077 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
21078
21079         * deuglify.el (gnus-article-outlook-unwrap-lines)
21080         (gnus-outlook-rearrange-article)
21081         (gnus-outlook-repair-attribution-outlook)
21082         (gnus-outlook-repair-attribution-block)
21083         (gnus-outlook-repair-attribution-other): Remove redundant
21084         save-excursion.
21085
21086 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
21087
21088         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
21089         (spam-fetch-field-subject-fast)
21090         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
21091         (spam-fetch-article-header): Add functions to deal with Gnus
21092         internals for fast retrieval of article header data.
21093         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
21094
21095 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
21096
21097         * pop3.el (pop3-md5): Remove.
21098         (pop3-apop): Replace pop3-md5 with md5.
21099
21100         * mm-bodies.el: base64 is always built-in.
21101
21102         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
21103         Use with-current-buffer.
21104
21105 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
21106
21107         * canlock.el (canlock-insert-header): Remove excessive grouping in
21108         regexp.
21109
21110         * gnus-sum.el (gnus-summary-read-document): Ditto.
21111
21112         * gnus-uu.el (gnus-uu-part-number): Ditto.
21113
21114         * html2text.el (html2text-remove-tags): Ditto.
21115         (html2text-format-tags): Ditto.
21116         (html2text-format-single-elements): Ditto.
21117
21118         * mml.el (mml-parse-1): Ditto.
21119
21120 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
21121
21122         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
21123
21124         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
21125
21126         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
21127
21128         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
21129
21130 2003-11-15  Simon Josefsson  <jas@extundo.com>
21131
21132         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
21133         (pgg-gpg-lookup-key): Use regexp match instead of
21134         split-string (split-string is different between emacs 21.2 and
21135         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
21136
21137 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
21138
21139         * gnus-art.el (gnus-mime-view-all-parts)
21140         (gnus-article-part-wrapper, gnus-article-view-part):
21141         Use with-current-buffer.
21142
21143 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
21144
21145         * spam.el (spam-disable-spam-split-during-ham-respool)
21146         (spam-spamoracle-database, spam-cache-lookups)
21147         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
21148         (spam-group-ham-mark-p, spam-group-spam-mark-p)
21149         (spam-group-ham-marks, spam-group-spam-marks)
21150         (spam-group-spam-contents-p, spam-group-ham-contents-p)
21151         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
21152         also add spam-use-blackholes to the statistical checks.
21153         (spam-fetch-field-fast): Add interface to fetching fields, may
21154         become a macro.
21155         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
21156         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
21157         (spam-insert-fake-headers): Fake an article when needed.
21158         (spam-find-spam): Fake article when possible.
21159         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
21160         (spam-check-bogofilter-headers): Use message-fetch-field instead
21161         of nnmail-fetch-field.
21162
21163 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
21164
21165         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
21166
21167 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
21168
21169         * spam.el (spam-split): Do not require spam-use-CHECK to be
21170         enabled if that check is passed to spam-split explicitly; also
21171         fix so 'spam doesn't get converted to spam-split-group when
21172         spam-split-symbolic-return is t.
21173         (spam-find-spam): Find registrations of the article and use those
21174         instead of re-running spam-split to find the spam/ham
21175         classification of the article.
21176         (spam-log-processing-to-registry, spam-log-registered-p)
21177         (spam-log-unregistration-needed-p, spam-log-undo-registration):
21178         Use gnus-error instead of gnus-message.
21179         (spam-log-registration-type): Add function to determine the
21180         classification of a message based on registry entries; will
21181         return nil if both 'spam and 'ham are found.
21182         (spam-check-BBDB): Expand all the BBDB macros here so we can have
21183         a reasonably fast local cache without the loading errors.
21184         (spam-cache-lookups): Set to t by default.
21185         (spam-find-spam): Don't try to guess spam-cache-lookups.
21186         (spam-enter-whitelist, spam-enter-blacklist): Clear the
21187         spam-caches entry.
21188         (spam-filelist-build-cache, spam-filelist-check-cache):
21189         Fix caching of whitelist/blacklist entries.
21190         (spam-check-whitelist, spam-check-blacklist):
21191         Invoke spam-from-listed-p with a type, not a cache variable.
21192         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
21193
21194 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
21195
21196         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
21197
21198         * nnmail.el (nnmail-split-fancy): do.
21199
21200         * mml.el (mml-parse): do.
21201
21202         * gnus-score.el (gnus-enter-score-words-into-hashtb)
21203         (gnus-score-adaptive): do.
21204
21205 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21206
21207         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
21208         (gnus-mime-button-map): Don't set keymap parent.
21209         (gnus-button-ctan-directory-regexp): Use shy grouping.
21210         (gnus-prev-page-map): Don't set keymap parent.
21211         (gnus-prev-page-map): Remove duplicated one.
21212         (gnus-next-page-map): Don't set keymap parent.
21213         (gnus-mime-security-button-map): Ditto.
21214
21215         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
21216         version number.
21217
21218         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
21219
21220 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21221
21222         * canlock.el (canlock-sha1-function): Remove.
21223         (canlock-sha1-function-for-verify): Remove.
21224         (canlock-openssl-program): Remove.
21225         (canlock-openssl-args): Remove.
21226         (canlock-ignore-errors): Remove.
21227         (canlock-sha1-with-openssl): Remove.
21228         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
21229         (canlock-verify): Don't use canlock-ignore-errors.
21230
21231         * sha1-el.el (sha1-string-external): Make it can return a string
21232         in binary form.
21233         (sha1-region-external): Ditto.
21234         (sha1-string-internal): Ditto.
21235         (sha1-region-internal): Ditto.
21236         (sha1-region): Ditto.
21237         (sha1-string): Ditto.
21238         (sha1): Ditto.
21239
21240 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21241
21242         * spam.el (spam-report-articles-gmane): New command.
21243
21244 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21245
21246         * gnus.el: Don't make unnecessary *Group* buffer when loading.
21247
21248         * run-at-time.el (run-at-time-saved): Remove.
21249         (run-at-time): Doc fix.
21250
21251 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
21252
21253         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
21254         (gnus-summary-limit-map): Add it.
21255         (gnus-summary-make-menu-bar): do.
21256
21257 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
21258
21259         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
21260         Make attempt at some caching support (done for BBDB only now).
21261         (spam-find-spam): Set spam-cache-lookups if there are more than 2
21262         addresses to be checked.
21263         (spam-clear-cache-BBDB): Add function, to be invoked by
21264         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
21265         (spam-check-BBDB): Check and use the caches, if
21266         spam-cache-lookups is on, remove superfluous (provide).
21267
21268 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
21269
21270         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
21271
21272 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
21273
21274         * run-at-time.el (run-at-time-saved): Move to after the definition
21275         of `run-at-time'.
21276
21277         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
21278
21279 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21280
21281         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
21282         mm-w3m-local-map-property.
21283
21284         * mm-view.el (mm-w3m-mode-map): Remove.
21285         (mm-w3m-local-map-property): Remove.
21286         (mm-inline-text-html-render-with-w3m): Don't use
21287         mm-w3m-local-map-property.
21288
21289 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21290
21291         * run-at-time.el: New file.
21292
21293         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
21294         under Emacs.
21295
21296         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
21297         of gnus-set-text-properties.
21298
21299         * gnus-uu.el (gnus-uu-save-article): Ditto.
21300
21301         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
21302
21303         * gnus-cite.el (gnus-cite-parse): Ditto.
21304
21305         * gnus-art.el (gnus-button-push): Use set-text-properties instead
21306         of gnus-.
21307
21308         * gnus-xmas.el (run-at-time): Require run-at-time.
21309
21310         * gnus.el: Change calls to nnheader-run-at-time and
21311         password-run-at-time throughout to use run-at-time directly.
21312
21313         * password.el: Remove definition of run-at-time.
21314
21315         * nnheaderxm.el: Remove definition of run-at-time.
21316
21317 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
21318
21319         * mml.el (mml-minibuffer-read-disposition): Show attachment type
21320         in prompt.
21321
21322 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
21323
21324         * messagexmas.el (message-xmas-redefine): Alias
21325         `message-make-caesar-translation-table' to
21326         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
21327         version.
21328
21329         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
21330         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
21331         `gnus-xmas-set-text-properties'.
21332         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
21333         `gnus-xmas-completing-read'.
21334         (gnus-xmas-completing-read): Removed.
21335         (gnus-xmas-open-network-stream): Removed.
21336
21337         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
21338         XEmacs version.
21339
21340         * dns.el (dns-make-network-process): Use `open-network-stream'
21341         instead of `gnus-xmas-open-network-stream'.
21342
21343         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
21344
21345         * .cvsignore: Add auto-autoloads.el, custom-load.el.
21346
21347 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
21348
21349         * gnus-art.el (gnus-mime-display-alternative)
21350         (gnus-insert-mime-button, gnus-insert-mime-security-button)
21351         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
21352         Don't use gnus-local-map-property.
21353
21354         * gnus-util.el (gnus-local-map-property): Remove.
21355
21356         * mm-view.el (mm-view-pkcs7-decrypt):
21357         Replace gnus-completing-read-maybe-default with completing-read.
21358
21359         * gnus-util.el (gnus-completing-read): do.
21360         (gnus-completing-read-maybe-default): Remove.
21361
21362 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
21363
21364         * password.el: Only autoload `run-at-time' if not XEmacs.
21365         Only autoload the itimer functions if XEmacs.
21366
21367 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21368
21369         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
21370         XEmacsen.
21371
21372         * dgnushack.el: Autoload executable-find for XEmacs.
21373
21374 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
21375
21376         * gnus-art.el (gnus-read-string): Remove.
21377         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
21378         read-string.
21379
21380 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
21381
21382         * netrc.el: Autoload password-read.
21383         (netrc): Add configuration group.
21384         (netrc-encoding-method, netrc-openssl-path):
21385         Add variables for encoding and decoding of files with symmetric
21386         ciphers.
21387         (netrc-encode): Add assistant function to encode a file with
21388         netrc-encoding-method.
21389         (netrc-parse): Add interactive parameter, added optional
21390         decoding if netrc-encoding-method is non-nil but otherwise
21391         behavior is standard.
21392         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
21393         Do s/encode/encrypt/ everywhere.
21394
21395         * spam.el: Remove executable-find autoload.
21396
21397 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
21398
21399         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
21400
21401         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
21402
21403 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21404
21405         * gnus-art.el (gnus-treat-ansi-sequences)
21406         (article-treat-ansi-sequences): New variable and function.
21407         Suggested by Dan Jacobson <jidanni@jidanni.org>.
21408
21409         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
21410         Use it.
21411
21412 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
21413
21414         * mm-util.el (mm-quote-arg): Remove.
21415
21416         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
21417         shell-quote-argument.
21418
21419         * gnus-uu.el (gnus-uu-command): do.
21420
21421         * gnus-sum.el (gnus-summary-insert-pseudos): do.
21422
21423         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
21424         with make-char.
21425
21426         * mm-util.el (mm-make-char): Remove.
21427
21428         * mml.el (mml-mode): Replace gnus-add-minor-mode with
21429         add-minor-mode.
21430
21431         * gnus-undo.el (gnus-undo-mode): do.
21432
21433         * gnus-topic.el (gnus-topic-mode): do.
21434
21435         * gnus-sum.el (gnus-dead-summary-mode): do.
21436
21437         * gnus-start.el (gnus-slave-mode): do.
21438
21439         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
21440
21441         * gnus-ml.el (gnus-mailing-list-mode): do.
21442
21443         * gnus-gl.el (gnus-grouplens-mode): do.
21444
21445         * gnus-draft.el (gnus-draft-mode): do.
21446
21447         * gnus-dired.el (gnus-dired-mode): do.
21448
21449         * gnus-ems.el (gnus-add-minor-mode): Remove.
21450
21451         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
21452         Replace gnus-char-width with char-width.
21453
21454         * gnus-ems.el (gnus-char-width): Remove.
21455
21456         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
21457         Replace gnus-char-width with char-width.
21458
21459         * gnus-ems.el (gnus-char-width): Remove.
21460
21461         * spam-stat.el (with-syntax-table): Remove with-syntax-table
21462         definition.
21463         Remove Emacs 20 hash table compatibility code.
21464
21465         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
21466         20 compatibility code.
21467
21468         * spam.el (spam-point-at-eol): Replace with point-at-eol.
21469
21470         * smime.el (smime-point-at-eol): Replace with point-at-eol.
21471
21472         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
21473         Replace with point-at-{eol,bol}.
21474
21475         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
21476
21477         * imap.el (imap-point-at-eol): Replace with point-at-eol.
21478
21479         * flow-fill.el (fill-flowed-point-at-bol)
21480         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
21481
21482         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
21483         Replace with point-at-{eol,bol} throughout all files.
21484
21485 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
21486
21487         * ntlm.el (ntlm-string-as-unibyte): New macro.
21488         (ntlm-build-auth-response): Use it.
21489
21490         Remove Emacs 20 stuff:
21491         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
21492         (butlast, mapc, remove): Remove the compiler macros.
21493         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
21494         of delq and copy-sequence.
21495         * gnus-art.el (popup-menu): Remove the compiler macro.
21496         * nnmail.el (nnmail-split-fancy): Don't support customizing with
21497         Emacs 20.
21498
21499 2004-01-05  Simon Josefsson  <jas@extundo.com>
21500
21501         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
21502         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
21503         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
21504         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
21505         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
21506         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
21507         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
21508         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
21509         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
21510         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
21511         ntlm-string-permute, string-lshift into ntlm-string-lshift,
21512         string-xor into ntlm-string-xor.
21513         Suggested by Jesper Harder <harder@myrealbox.com>.
21514
21515         * ntlm.el: Don't include poem.
21516
21517         * md4.el (print-int32, print-string-hexa): Remove.
21518         Suggested by Jesper Harder <harder@myrealbox.com>.
21519
21520         * sasl-ntlm.el, ntlm.el, md4.el: New files.
21521
21522         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
21523         probably breaks emacs with DL patch, but do we care? Is anyone
21524         still using the DL stuff?)
21525
21526         * sieve-manage.el: Use the password package.
21527         (sieve-manage-read-passwd): Remove.
21528         (sieve-manage-interactive-login): Use password.  Re-add
21529         condition-case around loop.
21530
21531         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
21532         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
21533         Use the password package.
21534
21535 2003-02-19  Simon Josefsson  <jas@extundo.com>
21536
21537         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
21538         token.
21539
21540 2002-08-07  Simon Josefsson  <jas@extundo.com>
21541
21542         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
21543         (sieve-manage-authenticators):
21544         (sieve-manage-authenticator-alist): Add some SASL mechs.
21545         (sieve-sasl-auth): New function.
21546         (sieve-manage-cram-md5-auth):
21547         (sieve-manage-plain-auth): Rewrite using SASL library.
21548         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
21549         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
21550         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
21551         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
21552
21553 2004-01-05  Simon Josefsson  <jas@extundo.com>
21554
21555         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
21556         New files.
21557
21558 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21559
21560         * gnus-group.el (gnus-no-groups-message): Update.
21561
21562         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
21563
21564 2003-11-09  Simon Josefsson  <jas@extundo.com>
21565
21566         * imap.el: Support for ID IMAP extension (RFC 2971).
21567         (imap-local-variables): Add imap-id.
21568         (imap-id): New variable.
21569         (imap-id): New function.
21570         (imap-parse-response): Parse untagged ID response.
21571         * nnimap.el (nnimap-id): New variable.
21572         (nnimap-open-connection): Use it.
21573
21574 2003-12-28  Simon Josefsson  <jas@extundo.com>
21575
21576         * gnus-score.el (gnus-score-edit-all-score): New.
21577         * gnus-group.el (gnus-group-score-map): Bind it to W e.
21578
21579 2004-01-04  Simon Josefsson  <jas@extundo.com>
21580
21581         * password.el: Add.
21582
21583 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
21584
21585         * dns.el (dns-query-types): Fix typo.
21586         (dns-query-types): New function.
21587         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
21588         PTR and SOA replies, see RFC 1035.
21589
21590 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21591
21592         * gnus.el (gnus-logo-color-style): Change colors to `no'.
21593
21594         * Move to Changelog.2.
21595
21596 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21597
21598         * gnus.el (gnus-version-number): Bump version.
21599
21600 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
21601
21602         * gnus.el: No Gnus v0.1 is released.
21603
21604 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
21605
21606         * gnus.el: No Gnus v0.0 is released.
21607
21608 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21609
21610         * gnus.el (gnus-version-number): Bump.
21611         (gnus-version): No.
21612
21613 See ChangeLog.2 for earlier changes.
21614
21615   Copyright (C) 2004-2011  Free Software Foundation, Inc.
21616
21617   This file is part of GNU Emacs.
21618
21619   GNU Emacs is free software: you can redistribute it and/or modify
21620   it under the terms of the GNU General Public License as published by
21621   the Free Software Foundation, either version 3 of the License, or
21622   (at your option) any later version.
21623
21624   GNU Emacs is distributed in the hope that it will be useful,
21625   but WITHOUT ANY WARRANTY; without even the implied warranty of
21626   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21627   GNU General Public License for more details.
21628
21629   You should have received a copy of the GNU General Public License
21630   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
21631
21632 ;; Local Variables:
21633 ;; coding: utf-8
21634 ;; fill-column: 79
21635 ;; add-log-time-zone-rule: t
21636 ;; End: