mailcap.el (mailcap-mailcap-entry-passes-test): Doc fix
[gnus] / lisp / ChangeLog
1 2015-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2
3         * mailcap.el (mailcap-mailcap-entry-passes-test): Doc fix.
4
5 2015-10-20  Michael Sperber  <mike@xemacs.org>
6
7         * mailcap.el (mailcap-mime-data): Conditonalize `doc-view-mode', which
8         does not exist on XEmacs.
9
10 2015-10-18  Michael Sperber  <mike@xemacs.org>
11
12         * nnml.el (nnml-retrieve-groups, nnml-request-scan):
13         * nnmail.el (nnmail-get-new-mail-per-group):
14         (nnmail-get-new-mail-1): Unbreak `group' option for `mail-sources'.
15
16 2015-10-18  Michael Sperber  <mike@xemacs.org>
17
18         * message.el (message-get-reply-headers): In addition to
19         `mail-dont-reply-to-names', bind `rmail-dont-reply-to-names', which is
20         used in XEmacs.
21
22 2015-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
23
24         * auth-source.el (auth-source-epa-make-gpg-token): Revert.
25
26 2015-10-11  Nicolas Petton  <petton.nicolas@gmail.com>
27
28         * auth-source.el (auth-source-epa-make-gpg-token):
29         Replace an usage of `epg-context-set-armor' with `setf'.
30         (auth-source-do-debug, auth-source-do-trivia)
31         (auth-source-read-char-choice, auth-source-search)
32         (auth-source-pick-first-password, auth-source-netrc-parse)
33         (auth-source-netrc-search, auth-source-secrets-search)
34         (auth-source-macos-keychain-search)
35         (auth-source-macos-keychain-search-items, auth-source-plstore-search)
36         (auth-source-user-or-password): Use sharp-quoting with functions.
37
38 2015-09-30  Wieland Hoffmann  <themineo@gmail.com>
39
40         * auth-source.el (auth-source-search): Clarify :create's meaning.
41
42 2015-09-17  Paul Eggert  <eggert@cs.ucla.edu>
43
44         Backslash cleanup in Elisp source files
45
46         This patch should not change behavior.  It typically omits backslashes
47         where they are redundant (e.g., in the string literal "^\$").
48         In a few places, insert backslashes where they make regular expressions
49         clearer: e.g., replace "^\*" (equivalent to "^*") with "^\\*", which
50         has the same effect as a regular expression.
51         Also, use ‘\ %’ instead of ‘\%’ when avoiding confusion with SCCS IDs,
52         and similarly use ‘\ $’ instead of ‘\$’ when avoiding confusion
53         with RCS IDs, as that makes it clearer that the backslash is intended.
54         * auth-source.el (auth-source-secrets-search)
55         (auth-source-macos-keychain-search):
56         * gnus-art.el (gnus-mime-action-on-part)
57         (gnus-mime-display-multipart-related-as-mixed)
58         (gnus-button-mid-or-mail-heuristic-alist)
59         (gnus-button-mid-or-mail-heuristic, gnus-article-extend-url-button):
60         * gnus-bookmark.el (gnus-bookmark-bmenu-toggle-infos)
61         (gnus-bookmark-bookmark-inline-details, gnus-bookmark-bookmark-details)
62         (gnus-bookmark-alist, gnus-bookmark-name-from-full-record)
63         (gnus-bookmark-bmenu-mode, gnus-bookmark-delete):
64         * gnus-cus.el (gnus-group-customize):
65         * gnus-group.el (gnus-group-line-format, gnus-group-mode-line-format)
66         (gnus-group-jump-to-group-prompt, gnus-group-name-at-point):
67         * gnus-mlspl.el (gnus-group-split-fancy):
68         * gnus-registry.el (gnus-registry-prune-factor):
69         * gnus-salt.el (gnus-summary-pick-line-format):
70         * gnus-sieve.el (gnus-sieve-update, gnus-sieve-generate)
71         (gnus-sieve-script):
72         * gnus-util.el (gnus-directory-sep-char-regexp):
73         * gnus.el (gnus-message-archive-group, gnus-user-agent):
74         * message.el (message-archive-header, message-reply-headers)
75         (message-send-method-alist):
76         * mm-decode.el (mm-add-meta-html-tag):
77         * nndoc.el (nndoc-generate-lanl-gov-head):
78         * nnheader.el (nnheader-max-head-length):
79         * registry.el (registry-db, registry-prune):
80         * rfc1843.el (rfc1843-hzp-word-regexp)
81         (rfc1843-hzp-word-regexp-strictly):
82         * rfc2047.el (rfc2047-encoded-word-regexp)
83         (rfc2047-encoded-word-regexp-loose):
84
85         Fix several backslash typos in Elisp strings
86         * gnus-art.el (gnus-button-handle-library):
87         * gnus-group.el (gnus-read-ephemeral-gmane-group-url):
88         * nntp.el (nntp-via-shell-prompt, nntp-telnet-shell-prompt):
89         * spam-report.el (spam-report-gmane-regex):
90         Fix typo by replacing ‘\’ with ‘\\’ in a string literal.
91         For example, to get the regular expression ‘\.’ use the string
92         literal "\\.", not "\." (which is equivalent to ".").
93
94         * auth-source.el (auth-source-read-char-choice):
95         * nnmaildir.el (NOV example):
96         * registry.el (registry-search): Doc fix.
97
98 2015-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
99
100         * gnus-compat.el: Require overlay for XEmacs.
101
102 2015-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
103
104         * message.el (message-hide-headers): Bind inhibit-modification-hooks to
105         t rather than after-change-functions to nil.
106
107 2015-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
108
109         * time-date.el (time-to-seconds, time-less-p):
110         Mark unused vars with underscore.
111
112 2015-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
113
114         * time-date.el (with-decoded-time-value): Fix debug spec.
115
116 2015-09-08  Paul Eggert  <eggert@cs.ucla.edu>
117
118         * nnmairix.el (nnmairix-widget-create-query):
119         * time-date.el (format-seconds): Prefer grave quoting in source-code
120         strings used to generate help and diagnostics.
121
122 2015-09-07  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
123
124         * ntlm.el: Bump version to 2.00.  New maintainer.  Add comm keyword.
125
126 2015-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
127
128         * ntlm.el (ntlm-unibyte-string): New compatibility function.
129
130 2015-09-06  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
131
132         Add support for NTLMv2 authentication.
133         * ntlm.el (ntlm): New customization group.
134         (ntlm-compatibility-level): New defcustom.
135         (ntlm-compute-timestamp): New function.
136         (ntlm-generate-nonce): Likewise.
137         (ntlm-build-auth-response): Add support for NTLMv2 authentication.
138
139 2015-09-05  Eric Abrahamsen  <eric@ericabrahamsen.net>
140
141         * nnimap.el (nnimap-request-group): Handle nil "info" arg.  This arg
142         isn't always passed in, check it's not nil before making it into a
143         list.  The active arg will also be nil if the group is new, check for
144         that.
145
146 2015-09-04  Adam Sjøgren  <asjo@koldfront.dk>
147
148         * mail-source.el (mail-source-fetch-imap): allow :mailbox to be a list.
149
150 2015-09-03  Paul Eggert  <eggert@cs.ucla.edu>
151
152         * gmm-utils.el (gmm-image-load-path-for-library):
153         * gnus-art.el (gnus-boring-article-headers, gnus-split-methods):
154         * gnus-registry.el (gnus-registry-split-strategy):
155         * gnus-start.el (gnus-check-new-newsgroups):
156         * gnus-sum.el (gnus-select-group-hook):
157         * gnus-uu.el (gnus-uu-user-archive-rules):
158         * gnus.el (gnus-message-archive-group, gnus-visual):
159         * message.el (message-cite-style):
160         * nnir.el (nnir-swish++-additional-switches)
161         (nnir-swish-e-additional-switches, nnir-hyrex-additional-switches)
162         (nnir-namazu-additional-switches, nnir-notmuch-additional-switches):
163         * nnmail.el (nnmail-split-methods, nnmail-expiry-wait-function):
164         * nntp.el (nntp-server-action-alist):
165         * tls.el (tls-checktrust):
166         Fix some more docstring etc. quoting problems.
167         Mostly these fixes prevent the transliteration of apostrophes
168         that should stay apostrophes.  Also, prefer curved quotes in
169         Bahá’í proper names, as that’s the preferred Bahá’í style and
170         these names are chock-full of non-ASCII characters anyway.
171
172 2015-09-02  Paul Eggert  <eggert@cs.ucla.edu>
173
174         Escape ` and ' in doc
175         * gnus-art.el (gnus-article-address-banner-alist)
176         (gnus-face-properties-alist):
177         * gnus-sum.el (gnus-newsgroup-variables):
178         * nndiary.el (nndiary-reminders):
179         * nnmail.el (nnmail-fancy-expiry-targets, nnmail-split-fancy):
180         Escape apostrophes and grave accents in docstrings if they
181         are supposed to stand for themselves and are not quotes.  Remove
182         apostrophes from docstring examples like ‘'(calendar-nth-named-day
183         -1 0 10 year)’ that confuse source code with data.  Do some other
184         minor docstring fixups as well, e.g., insert a missing close
185         quote.
186
187 2015-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
188
189         * gnus-util.el (gnus-format-message):
190         * tls.el (tls-format-message): Use defalias at the top level so as to
191         make eval-and-compile unnecessary.  Thanks to Stefan Monnier.
192
193         * gnus-sum.el (gnus-summary-search-article):
194         Ensure that the article where the search word is found is displayed
195         and pointed to in the summary buffer.
196
197 2015-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
198
199         * tls.el (tls-format-message):
200         Alias to format-message, or format if not available.
201         (open-tls-stream): Use it.
202
203 2015-08-31  Paul Eggert  <eggert@cs.ucla.edu>
204
205         * gnus-agent.el (gnus-agent-possibly-synchronize-flags-server):
206         * gnus-art.el (gnus-article-browse-delete-temp-files):
207         * gnus-eform.el (gnus-edit-form):
208         * gnus-fun.el (gnus-display-x-face-in-from):
209         * gnus-group.el (gnus-group-edit-group, gnus-group-nnimap-edit-acl):
210         * gnus-topic.el (gnus-topic-edit-parameters):
211         * mail-source.el (mail-source-delete-old-incoming):
212         * message.el (message-strip-subject-encoded-words)
213         (message-check-recipients, message-send-form-letter):
214         * mm-decode.el (mm-display-part):
215         * mm-uu.el (mm-uu-pgp-signed-extract-1):
216         * mml-smime.el (mml-smime-get-dns-cert, mml-smime-get-ldap-cert):
217         * spam-report.el (spam-report-process-queue):
218         * tls.el (open-tls-stream):
219         Respect ‘text-quoting-style’ in diagnostics.
220         * gnus-art.el (article-display-face):
221         * gnus-fun.el (gnus-display-x-face-in-from):
222         Use straight quoting in email.
223         * rfc2231.el (rfc2231-decode-encoded-string):
224         Escape apostrophes in doc strings.
225
226 2015-08-26  Paul Eggert  <eggert@cs.ucla.edu>
227
228         Go back to grave quoting in Gnus
229
230         * auth-source.el (auth-source-netrc-parse-entries):
231         * gnus-agent.el (gnus-agent-check-overview-buffer)
232         (gnus-agent-fetch-headers):
233         * gnus-int.el (gnus-start-news-server):
234         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal)
235         (gnus-registry-post-process-groups):
236         * gnus-score.el (gnus-summary-increase-score):
237         * gnus-start.el (gnus-convert-old-newsrc):
238         * gnus-topic.el (gnus-topic-rename):
239         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
240         * spam.el (spam-check-blackholes):
241         Stick with grave quoting in diagnostics strings.  This is more
242         portable to older Emacs, desirable for Gnus.
243
244 2015-08-25  Paul Eggert  <eggert@cs.ucla.edu>
245
246         Prefer directed to neutral quotes in docstings and diagnostics.
247         In docstrings, escape apostrophes that would otherwise be translated
248         to curved quotes using the newer, simpler rules.
249
250         * auth-source.el (auth-source-netrc-parse-entries):
251         * gnus-agent.el (gnus-agent-check-overview-buffer)
252         (gnus-agent-fetch-headers):
253         * gnus-int.el (gnus-start-news-server):
254         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
255         * gnus-score.el (gnus-summary-increase-score):
256         * gnus-start.el (gnus-convert-old-newsrc):
257         * gnus-topic.el (gnus-topic-rename):
258         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
259         * nnmairix.el (nnmairix-widget-create-query):
260         * spam.el (spam-check-blackholes):
261         Use directed rather than neutral quotes in diagnostics.
262
263         * gnus-util.el (gnus-format-message):
264         Alias to format-message, or format if not available.
265
266 2015-08-21  Paul Eggert  <eggert@cs.ucla.edu>
267
268         * auth-source.el (auth-sources):
269         Prefer (substitute-command-keys "`\\[foo-command]'")
270         to "`M-x foo-command'" in docstring.
271
272         * time-date.el (format-seconds):
273         Use curved quotes in diagnostic format strings.
274
275         * nnmairix.el (nnmairix-propagate-marks-upon-close):
276         * pop3.el (pop3-authentication-scheme):
277         Don't quote symbols with apostrophes in doc strings.
278         Use asymmetric quotes instead.
279
280 2015-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
281
282         Use overlay functions directly
283
284         * dgnushack.el (overlay): Autoload overlay functions for XEmacs.
285         * lpath.el (delete-overlay, overlay-lists): Remove Fbind.
286
287         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part)
288         (gnus-insert-mime-button, gnus-mime-buttonize-attachments-in-header)
289         (gnus-article-highlight-signature, gnus-article-extend-url-button)
290         (gnus-article-add-button, gnus-insert-prev-page-button)
291         (gnus-insert-next-page-button, gnus-insert-mime-security-button):
292         * gnus-cite.el (gnus-cite-delete-overlays, gnus-cite-add-face):
293         * gnus-html.el (gnus-html-wash-tags):
294         * gnus-salt.el (gnus-tree-read-summary-keys, gnus-tree-recenter)
295         (gnus-highlight-selected-tree):
296         * gnus-sum.el (gnus-summary-show-all-threads, gnus-summary-show-thread)
297         (gnus-summary-hide-thread, gnus-highlight-selected-summary):
298         * gnus-util.el (gnus-put-overlay-excluding-newlines):
299         * message.el (message-fix-before-sending)
300         (message-toggle-image-thumbnails):
301         * mm-decode.el (mm-convert-shr-links):
302         * sieve.el (sieve-highlight, sieve-insert-scripts):
303         Use overlay functions directly instead of using gnus-overlay-*,
304         message-overlay-*, and sieve-overlay-*.
305
306         * gnus-sum.el (gnus-remove-overlays):
307         * gnus-xmas.el (gnus-xmas-move-overlay, gnus-xmas-overlays-at)
308         (gnus-xmas-overlays-in, gnus-make-overlay, gnus-copy-overlay)
309         (gnus-delete-overlay, gnus-overlay-get, gnus-overlay-put)
310         (gnus-move-overlay, gnus-overlay-buffer, gnus-overlay-start)
311         (gnus-overlay-end, gnus-overlays-at, gnus-overlays-in):
312         * gnus.el (gnus-make-overlay, gnus-copy-overlay, gnus-delete-overlay)
313         (gnus-overlay-get, gnus-overlay-put, gnus-move-overlay)
314         (gnus-overlay-buffer, gnus-overlay-start, gnus-overlay-end)
315         (gnus-overlays-at, gnus-overlays-in):
316         * message.el (message-delete-overlay, message-make-overlay)
317         (message-overlay-get, message-overlay-put, message-overlays-in):
318         * messagexmas.el (message-delete-overlay, message-make-overlay)
319         (message-overlay-get, message-overlay-put, message-overlays-in):
320         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
321         Remove.
322
323 2015-08-19  Glenn Morris  <rgm@gnu.org>
324
325         * nnmaildir.el (nnmaildir-flag-mark-mapping): Add "P".
326
327 2015-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
328
329         * message.el (message-overlay-put, message-make-overlay)
330         (message-kill-all-overlays, message-overlays-in, message-overlay-get)
331         (message-delete-overlay, message-window-inside-pixel-edges):
332         Declare before using.
333
334 2015-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
335
336         * message.el (message-overlay-get, message-overlays-in)
337         (message-window-inside-pixel-edges):
338         * messagexmas.el (message-overlay-get, message-overlays-in):
339         XEmacs compatible functions.
340
341 2015-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
342
343         * message.el (message-toggle-image-thumbnails): New command.
344
345 2015-08-06  Paul Eggert  <eggert@cs.ucla.edu>
346
347         * message.el (message-send-form-letter): Change (message (format ...))
348         to (message ...).  This lessens the probability of confusion when
349         the output of `format' contains `%'.
350
351 2015-08-04  David Kastrup  <dak@gnu.org>
352
353         * gnus-art.el (gnus-article-describe-key)
354         (gnus-article-describe-key-briefly):
355         Do not overwrite preexisting contents of unread-command-events.
356
357 2015-08-02  Nikolaus Rath  <Nikolaus@rath.org>
358
359         * nnimap.el (nnimap-request-move-article)
360         (nnimap-process-expiry-targets, nnimap-split-incoming-mail): Use MOVE
361         extension if available.
362
363 2015-08-02  Nikolaus Rath  <Nikolaus@rath.org>
364
365         * nnimap.el (nnimap-open-connection-1): explicitly ask server for
366         capabilities instead of relying on LOGIN response.
367
368 2015-07-31  Paul Eggert  <eggert@cs.ucla.edu>
369
370         * nnbabyl.el (nnbabyl-retrieve-headers):
371         * nndiary.el (nndiary-retrieve-headers):
372         * nneething.el (nneething-retrieve-headers):
373         * nnmbox.el (nnmbox-retrieve-headers):
374         * nnmh.el (nnmh-retrieve-headers):
375         * nnml.el (nnml-retrieve-headers):
376         * nnspool.el (nnspool-retrieve-headers):
377         * nntp.el (nntp-retrieve-headers, nntp-retrieve-articles):
378         Prefer (floor (* 100.0 NUMERATOR) DENOMINATOR) when calculating
379         progress-report percentages and the like.  This avoids problems
380         if (* 100 NUMERATOR) would overflow.
381
382         * gnus-registry.el (gnus-registry-import-eld):
383         * registry.el (registry-reindex):
384         Use (* 100.0 ...) rather than (* 100 ...) to avoid int overflow issues.
385
386 2015-07-17  Julien Danjou  <jd@abydos>
387
388         * sieve-mode.el (sieve-font-lock-keywords): Add missing "body" test
389         command.
390
391 2015-07-11  Eric Abrahamsen  <eric@ericabrahamsen.net>
392
393         * gnus-registry.el (gnus-registry--set/remove-mark): Correct the order
394         of function arguments.
395
396 2015-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
397
398         * nnimap.el: Clean up "unused var" warnings.
399         (auth-source-creation-prompts): Declare.
400         (nnimap-retrieve-headers, nnimap-status-message)
401         (nnimap-request-create-group, nnimap-request-delete-group)
402         (nnimap-close-group, nnimap-request-move-article)
403         (nnimap-request-accept-article, nnimap-request-newgroups)
404         (nnimap-request-post, nnimap-dummy-active-number)
405         (nnimap-save-mail-spec, nnimap-get-groups): Add _ to unused vars.
406         (nnimap-parse-flags): Remove unused var `p'.
407         (nnimap-retrieve-group-data-early): Remove unused var `groups'.
408         (nnimap-flags-to-marks): Remove unused var `totalp'.
409
410 2015-07-09  Nikolaus Rath  <Nikolaus@rath.org>
411
412         * nnimap.el (nnimap-transform-headers): Don't assume that UID comes
413         before RFC822.SIZE.
414
415 2015-07-09  Nikolaus Rath  <Nikolaus@rath.org>
416
417         * nnimap.el (nnimap-open-connection-1): Always query capabilities,
418         so that a 'plain value for the `nnimap-stream' server variable is
419         handled correctly.
420
421 2015-07-08  Eric Abrahamsen  <eric@ericabrahamsen.net>
422
423         Remove unused let variables
424         * nnimap.el (nnimap-request-group): Variables are not used.
425
426         Check if group names are already strings
427         * gnus-group.el (gnus-group-group-name):
428         The group name may already be a string.
429         Specifically, in the group list reached from the *Server* buffer,
430         the 'gnus-group text property returns a string.  Everywhere else
431         it returns a symbol.
432
433 2015-06-24  Stefan Monnier  <monnier@iro.umontreal.ca>
434
435         * nnmaildir.el (nnmaildir--prepare): Use a more functional style.
436         (nnmaildir--update-nov): Remove unused var `numdir'.
437         (nnmaildir-request-type, nnmaildir--scan, nnmaildir-request-newgroups)
438         (nnmaildir-request-group, nnmaildir-request-create-group)
439         (nnmaildir-request-post, nnmaildir-request-move-article)
440         (nnmaildir-request-accept-article, nnmaildir-active-number):
441         Mark unused args.
442         (nnmaildir-get-new-mail, nnmaildir-group-alist, nnmaildir-active-file):
443         Declare.
444         (nnmaildir-request-scan): Remove unused vars `group' and `grp-dir'.
445         (nnmaildir-request-update-info): Remove unused vars `dotfile', `num',
446         `mark', `end', `new-mark', and `mark-sym'.
447         (nnmaildir-retrieve-headers):
448         Remove unused args `srv-dir', `dir', `nlist2'.
449         (nnmaildir-request-expire-articles):
450         Remove unused vars `article', `stop' and `nlist2'.
451         (nnmaildir-request-set-mark): Remove unused vars `begin', `article' and
452         `end'.  Use nnmaildir--article when dyn-binding is needed.
453         Give the value directly in the `let' for `del-mark', `del-action',
454         `add-action', and `set-action'.  Don't use `add-to-list' on a local var.
455         (nnmaildir-close-server):
456         Declare those local vars that need to be dyn-bound.
457
458 2015-06-03  Paul Eggert  <eggert@cs.ucla.edu>
459
460         * gnus-art.el (gnus-button-alist): Also support quotes 'like this'.
461
462 2015-05-31  David Engster  <deng@randomsample.de>
463
464         * tests/gnustest-nntp.el (gnustest-ping-host): Call 'sleep' binary
465         instead of using `sleep-for', as the latter does not seem to reliably
466         wait (see for instance bug 15990).
467
468 2015-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
469
470         * gnus-art.el (gnus-button-alist): Re-revert last change.
471         cf. <http://news.gmane.org/group/gmane.emacs.devel/thread=186896>
472
473 2015-05-28  Paul Eggert  <eggert@cs.ucla.edu>
474
475         * gnus-art.el (gnus-button-alist): Revert last change.
476         It wasn't that important, and it caused a Gnus build to fail.  See:
477         http://www.randomsample.de:4456/builders/emacs-devel/builds/734
478
479         * gnus-art.el (gnus-button-alist):
480         Also treat "‘" and "’" as quoting chars.
481
482 2015-05-19  Paul Eggert  <eggert@cs.ucla.edu>
483
484         * gnus-art.el (gnus-treat-strip-list-identifiers)
485         (gnus-article-mode-syntax-table):
486         * gnus-group.el (gnus-group-nnimap-edit-acl):
487         * canlock.el, deuglify.el: Fix minor quoting problems in doc strings,
488         e.g., missing quote, ``x'' where `x' was meant, etc.
489
490 2015-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
491
492         * format-spec.el (format-spec, format-spec-make): Work for XEmacs.
493         Use (char-to-int c) instead of (+ c 0) that the byte compiler optimizes
494         into just c.
495
496 2015-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
497
498         * format-spec.el (format-spec, format-spec-make): Work for XEmacs.
499         Normalize characters into numbers in spec keys.
500
501 2015-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
502
503         * dgnushack.el (declare-function): Redefine it to use autoload.
504         * lpath.el (gnus-html-prefetch-images): Declare.
505
506 2015-05-04  Glenn Morris  <rgm@gnu.org>
507
508         * gnus-art.el (nneething-get-file-name): Declare rather than autoload.
509
510         * gnus-async.el (gnus-html-prefetch-images): Remove pointless autoload.
511
512         * gnus-sync.el (gnus-group-topic): Autoload at run-time.
513         (gnus-topic-create-topic, gnus-topic-enter-dribble):
514         Declare rather than autoload.
515
516         * mm-archive.el (gnus-recursive-directory-files)
517         (mailcap-extension-to-mime): Autoload at run-time.
518
519         * mm-util.el (latin-unity-massage-name)
520         (latin-unity-maybe-remap, latin-unity-representations-feasible-region)
521         (latin-unity-representations-present-region):
522         Declare rather than autoload.
523
524         * mml-smime.el (epg-make-context, epg-passphrase-callback-function):
525         Autoload at run-time.
526         (epg-context-set-signers, epg-context-result-for)
527         (epg-new-signature-digest-algorithm, epg-verify-result-to-string)
528         (epg-list-keys, epg-verify-string, epg-sign-string, epg-encrypt-string)
529         (epg-context-set-passphrase-callback, epg-sub-key-fingerprint)
530         (epg-configuration, epg-expand-group, epa-select-keys):
531         Declare rather than autoload.
532
533         * nnir.el (nnimap-change-group, nnimap-make-thread-query):
534         Autoload at run-time.
535         (gnus-group-topic-name, nnimap-buffer, nnimap-command)
536         (gnus-registry-get-id-key, gnus-registry-action):
537         Declare rather than autoload.
538
539         * nnmail.el (mail-send-and-exit): Autoload at run-time.
540
541         * spam.el (spam-stat-buffer-change-to-non-spam)
542         (spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam)
543         (spam-stat-buffer-is-spam, spam-stat-load, spam-stat-save)
544         (spam-stat-split-fancy): Remove pointless autoloads.
545
546         * mm-view.el (epg-decrypt-string): Autoload.
547         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
548         (epg-sub-key-validity): Fix declarations.
549
550 2015-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
551
552         * gnus.el: Ma Gnus v0.13 is released.
553
554 2015-05-01  Glenn Morris  <rgm@gnu.org>
555
556         * gnus-util.el (iswitchb-read-buffer):
557         * mm-decode.el (libxml-parse-html-region):
558         * mml.el (libxml-parse-html-region):
559         * nnrss.el (libxml-parse-html-region): Update declaration.
560
561 2015-04-27  Glenn Morris  <rgm@gnu.org>
562
563         * message.el (gnus-extract-address-components):
564         Remove bogus declaration that was masking previous problem.
565
566 2015-04-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
567
568         * hashcash.el (hashcash-insert-payment-async-2): Save the mark when
569         altering the buffer.
570         (hashcash-insert-payment-async-2): Revert previous change because it
571         still means that the mark is moving around.
572
573 2015-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
574
575         * gnus-uu.el (gnus-uu-save-article):
576         Make the save-restriction/widen calls make more sense.
577
578 2015-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
579
580         * gnus-art.el (gnus-use-idna):
581         * gnus-sum.el (gnus-summary-idna-message):
582         * message.el (message-use-idna):
583         Catch the invalid-operation error that idna.el will issue.
584
585 2015-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
586
587         * gnus-group.el (gnus-group--setup-tool-bar-update):
588         cursor-sensor-functions should be a list of functions.
589
590 2015-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
591
592         * gnus-group.el (gnus-tmp-*): Declare.
593         (gnus-update-group-mark-positions): Remove unused `topic' var.
594         (gnus-group-insert-group-line): Remove unused var `header'.
595         (gnus-group--setup-tool-bar-update): New function.
596         (gnus-group-insert-group-line): Use it.
597         (gnus-group-update-eval-form): Declare local
598         dynamically-bound variables.
599         (gnus-group-unsubscribe-group): Use \` and \' to match string bounds.
600
601         * gnus-topic.el (gnus-topic-jump-to-topic)
602         (gnus-group-prepare-topics, gnus-topic-update-topic)
603         (gnus-topic-change-level, gnus-topic-catchup-articles)
604         (gnus-topic-remove-group, gnus-topic-delete, gnus-topic-indent):
605         Use inhibit-read-only.
606         (gnus-topic-prepare-topic): Use gnus-group--setup-tool-bar-update.
607         (gnus-topic-mode): Use define-minor-mode and derived-mode-p.
608
609 2015-04-12  João Távora  <joaotavora@gmail.com>
610
611         * message.el (message-mode):
612         Use `set' and `make-local-variable' instead of `setq-local'.
613
614 2015-04-12  Johan Bockgård  <bojohan@gnu.org>
615
616         * gnus-sum.el (gnus-summary-refer-thread):
617         Make sure gnus-newsgroup-unreads remains sorted.
618
619 2015-04-12  João Távora  <joaotavora@gmail.com>
620
621         Improve sexp-based movement in message-mode
622         * message.el (message--syntax-propertize): New function.
623         (message-mode): Set syntax-related vars.d
624         (message-smileys): New variable.
625
626 2015-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
627
628         * gnus-art.el (gnus-hidden-properties): Simplify.
629         (gnus-article-hide-text, gnus-article-unhide-text)
630         (gnus-article-unhide-text-type): Remove special handling of
631         `intangible' since that property is not used any more.
632         (gnus-article-treat-body-boundary): Use gnus-hidden-properties.
633
634 2015-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
635
636         * dgnushack.el (define-obsolete-function-alias): Add a compiler-marco
637         and a runtime function for it, of which the XEmacs version takes only
638         two arguments.
639
640 2015-04-06  Paul Eggert  <eggert@cs.ucla.edu>
641
642         Use American spelling for 'normalize'
643         * rtree.el (rtree-normalize-range): Rename from rtree-normalise-range.
644         All uses changed.  Add an alias for obsolete usages.
645
646 2015-04-03  Katsumi Yamaoka  <yamaoka@jpl.org>
647
648         * gnus-art.el (gnus-article-browse-html-save-cid-content):
649         Always return relative file name.
650         (gnus-article-browse-html-parts):
651         Make external links absolute and cid file names relative.
652
653 2015-04-01  Eric Abrahamsen  <eric@ericabrahamsen.net>
654
655         * registry.el (registry-prune): Re-use `registry-full' in
656         `registry-prune'.  It's a bit of redundant work, but safer.
657         Also ensure that target-size is an integer.
658
659 2015-03-31  Daiki Ueno  <ueno@gnu.org>
660
661         * plstore.el (plstore--decrypt): Clear entry in
662         `plstore-passphrase-alist' if decryption failed (bug#20030).
663
664 2015-03-28  Adam Sjøgren  <asjo@koldfront.dk>
665
666         * gnus-sum.el (gnus-summary-make-menu-bar): Add "Display HTML images"
667         to "Display" menu.
668
669 2015-03-24  Eric Abrahamsen  <eric@ericabrahamsen.net>
670
671         * nnimap.el (nnimap-split-incoming-mail): If a message is already
672         in the group it should be split to, don't re-copy it into the group.
673
674 2015-03-23  Ben Bacarisse  <ben.lists@bsb.me.uk>  (tiny change)
675
676         * nnmh.el (nnmh-request-expire-articles):
677         Work for the case nnmail-expiry-target is an nnmh group (bug#20170).
678
679 2015-03-21  Eric Abrahamsen  <eric@ericabrahamsen.net>
680
681         * registry.el (registry-lookup-secondary, registry-full)
682         (registry-prune, registry-collect-prune-candidates):
683         * gnus-registry.el (gnus-registry-load): Use slot names rather than
684         initarg names in `oref' and `oset'.
685
686 2015-03-19  Eric Abrahamsen  <eric@ericabrahamsen.net>
687
688         * registry.el (registry-prune): Allow registry to reach full size
689         before pruning.
690
691 2015-03-19  Eric Abrahamsen  <eric@ericabrahamsen.net>
692
693         * registry.el (registry-collect-prune-candidates): Fix call to
694         cl-subseq.
695
696 2015-03-11  Katsumi Yamaoka  <yamaoka@jpl.org>
697
698         * registry.el (registry-db): Temporary fix old Emacsen compilation.
699
700 2015-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
701
702         * gnus-registry.el (gnus-registry-handle-action)
703         (gnus-registry-post-process-groups): Don't add-to-list on a local var.
704         (gnus-registry-keywords): Make it do something.
705         (gnus-registry-import-eld): Remove unused var `new-entry'.
706         (gnus-registry-action): Remove unused var `to-name'.
707         (gnus-registry-make-db): Prefer `make-instance' to avoid
708         compiler warnings.
709         (gnus-registry-load, gnus-registry-fixup-registry): Avoid `oset'.
710
711         * registry.el (registry-db): Don't oset-default an instance-allocated
712         slot.
713
714 2015-03-10  Glenn Morris  <rgm@gnu.org>
715
716         * message.el (message-valid-fqdn-regexp): Bump :version for
717         2014-11-17 change.
718
719 2015-03-07  Rasmus Pank Roulund  <rasmus@pank.eu>
720
721         * gnus-notifications.el (gnus-notifications-action): Raise window
722         frame.
723         (gnus-notifications-action): Allow mark as read.
724         (gnus-notifications-notify): Show uption to mark as read.
725
726 2015-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
727
728         * registry.el (registry-lookup-breaks-before-lexbind, registry-lookup)
729         (registry-search, registry-delete, registry-size, registry-insert)
730         (registry-reindex, registry-collect-prune-candidates):
731         * gnus-registry.el (gnus-registry-fixup-registry)
732         (gnus-registry-remove-extra-data): Use slot names rather than initarg
733         names in `oref' and `oset'.
734
735 2015-02-27  Eric Abrahamsen  <eric@ericabrahamsen.net>
736         * lisp/nnimap.el (nnimap-split-incoming-mail): If a message is already
737         in the group it should be split to, don't re-copy it into the group.
738
739 2015-02-25  Adam Sjøgren  <asjo@koldfront.dk>
740
741         * message.el (message-insert-formatted-citation-line): Change %F to
742         fall back to email address if no first name could be determined.
743
744 2015-02-26  Katsumi Yamaoka  <yamaoka@jpl.org>
745
746         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
747         Fix point motion when removing displayed MIME part.
748         (gnus-article-edit-part): Make jumping to the next part really work
749         when deleting or stripping.
750         (gnus-mime-buttonize-attachments-in-header): Make header attachment
751         buttons identical to the ones in the article body so as to work deleting
752         and stripping.
753
754 2015-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
755
756         * mm-decode.el (mm-shr)
757         * mm-view.el (mm-inline-text-html-render-with-w3m):
758         Revert my bogus change that made the start marker of a part
759         the "moves after insertion" type.
760
761 2015-02-23  Tassilo Horn  <tsdh@gnu.org>
762
763         * mailcap.el (mailcap-mime-data): Support `pdf-view-mode' (from PDF
764         Tools: https://github.com/politza/pdf-tools) for viewing PDF
765         attachments in emacs.
766
767 2015-02-23  Magnus Henoch  <magnus.henoch@gmail.com>
768
769         * sasl.el (sasl-mechanism-alist): Refer to sasl-scram-rfc
770         instead of sasl-scram-sha-1, as the former is the name that can be
771         required.
772
773         * sasl-scram-rfc.el (sasl-scram-sha-1-steps)
774         (sasl-scram-sha-1-client-final-message)
775         (sasl-scram-sha-1-authenticate-server): Move to end of file.
776
777 2015-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
778
779         * gnus-art.el (gnus-mime-display-single): Avoid "End of buffer" error.
780
781 2015-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
782
783         * sasl-scram-rfc.el (sasl-cl-coerce, sasl-cl-mapcar-many, sasl-cl-map)
784         (sasl-string-prefix-p): New compatibility functions.
785
786 2015-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
787
788         * gnus-compat.el (process-live-p): Added new compat function for Emacs
789         23.
790
791 2015-02-14  Eric Abrahamsen  <eric@ericabrahamsen.net>
792
793         * nnimap.el (nnimap-get-groups): Correctly read unquoted group names
794         from the server LIST response.
795
796 2015-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
797
798         * nnimap.el (nnimap-retrieve-headers): If the server closes connection
799         during header retrieval, error out instead of interpreting the data in
800         the buffer as the only messages there.  This way, we don't mark
801         articles as read on a server hangup (bug#19035).
802
803         * mm-decode.el (mm-head-p): New function.
804         (mm-display-part): Go to a blank line when inserting parts internally.
805
806 2015-02-13  Magnus Henoch  <magnus.henoch@gmail.com>
807
808         * sasl-scram-rfc.el: New file.
809
810         * sasl.el (sasl-mechanisms): Remove SCRAM-MD5.
811         Add SCRAM-SHA-1 first.
812         (sasl-mechanism-alist): Remove SCRAM-MD5 entry.  Add SCRAM-SHA-1
813         entry (bug#17636).
814
815 2015-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
816
817         * gnus-msg.el (gnus-msg-mail): Don't let-bind `gnus-newsgroup-name' so
818         that we don't get a warning when setting the buffer-local variable
819         (bug#19573).
820
821         * nnmail.el (nnmail-expiry-target-group): Supply the info structure to
822         `gnus-request-group'.
823
824 2015-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
825
826         * gnus-art.el (gnus-article-browse-html-save-cid-content)
827         (gnus-article-browse-html-parts): Make cid file names relative if and
828         only if html doesn't specify <base> directory.
829
830 2015-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
831
832         * gnus-art.el (gnus-treat-buttonize): Don't re-buttonize URLs in HTML
833         parts, because that breaks filling (since buttons are in a bold face).
834
835 2015-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
836
837         * mm-decode.el (mm-convert-shr-links): Delete useless variable `face';
838         use gnus-overlays-at and gnus-overlay-put.
839
840 2015-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
841
842         * mm-decode.el (mm-shr): Only pass the fill column when not using
843         fonts, because limiting the width to what's appropriate for followups
844         doesn't really help when not using proportional fonts.
845
846 2015-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
847
848         * mm-decode.el (mm-convert-shr-links): Don't overwrite the faces from
849         shr, beacause that breaks folding.
850         (mm-shr): Don't shorten the width when using fonts.
851
852 2015-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
853
854         * gnus-start.el (gnus-save-newsrc-file-check-timestamp): Remove
855         variable; always check the newrc timestamp.
856         (gnus-save-newsrc-file): Always check timestamp.
857
858 2015-02-05  Timo Lilja  <timo.lilja@iki.fi>  (tiny change)
859
860         * mail-source.el (mail-source-call-script): If scripts exit with an
861         error, pop up an error buffer.
862
863 2015-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
864
865         * gnus-sum.el (gnus-extra-headers): Add the popular Gmail X-GM-LABELS
866         as a default.
867
868         * nnimap.el (nnimap-request-group-scan): Ensure that we've selected the
869         correct server.
870
871 2015-02-05  Vincent Bernat  <bernat@luffy.cx>  (tiny change)
872
873         * nnimap.el (nnimap-request-group-scan): Fix the function name.
874
875         * gnus-int.el (gnus-request-group-scan): Use the correct function name.
876
877 2015-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
878
879         * gnus-sum.el (gnus-select-newsgroup): Pass the group info along so
880         that nnimap works for non-activated backends.
881
882 2015-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
883
884         * mm-util.el (mm-with-unibyte-current-buffer): Don't emit a warning
885         message, since we already get an obsolescence message.  Use `declare'.
886
887 2015-02-04  Eric Abrahamsen  <eric@ericabrahamsen.net>
888
889         * nnir.el: Revert "Enable non-ASCII IMAP searches".
890
891 2015-01-30  Glenn Morris  <rgm@gnu.org>
892
893         * gnus-registry.el (gnus-registry-max-pruned-entries)
894         (gnus-registry-prune-factor, gnus-registry-default-sort-function):
895         Fix :version.
896         (gnus-registry-default-sort-function): Improve :type.
897
898 2015-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
899
900         * nnimap.el (nnimap-request-group): Allow running this function on
901         groups that don't exist in Gnus yet.
902         (nnimap-request-group): Revert previous patch since that made it
903         impossible to enter nnimap groups.
904
905         * message.el (message-smtpmail-send-it): Remove the mail header
906         separator before sending.
907
908 2015-01-28  Elias Oltmanns  <eo@nebensachen.de>
909
910         * nnimap.el (nnimap-find-expired-articles): Fix handling of
911         (expiry-wait . never).
912
913 2015-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
914
915         * nnimap.el (nnimap-request-group): Clear the buffer before returning
916         the data.
917
918 2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
919
920         * gnus-compat.el (string-bytes): Work for XEmacs.
921
922 2015-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
923
924         * gnus-compat.el (string-bytes): Avoid compilation error on XEmacs.
925
926         * nnir.el (nnir-imap-expr-to-imap): Check for literal+ capability in
927         IMAP.
928
929 2015-01-27  Eric Abrahamsen  <eric@ericabrahamsen.net>
930
931         * nnir.el (nnir-run-imap): Enable non-ASCII IMAP searches.
932
933         * nnmairix.el ("nnmairix"): Declare nnmairix as virtual.
934
935         * gnus-bcklg.el (gnus-backlog-enter-article): No virtual groups should
936         be added to the backlog.
937
938 2015-01-26  Tassilo Horn  <tsdh@gnu.org>
939
940         * Makefile.in (all total, warn, fail-on-warning): Call gnus-load.el
941         target with a recursive make call.
942
943 2015-01-26  Trevor Murphy  <trevor.m.murphy@gmail.com>
944
945         * nnimap.el (nnimap-header-parameters): Refactor and request
946         X-GM-LABELS if it's been announced.
947         (nnimap-transform-headers): Gather and output GM-LABELS.
948
949 2014-12-30  Peder O. Klingenberg  <peder@klingenberg.no>
950
951         * mm-decode.el (mm-display-part): Make non-string methods work.
952         Non-string methods are funcalled and work just fine, the test was
953         bogus.
954         * mm-decode.el (mm-display-external): Show "external" lisp viewers in
955         whole frame.
956
957 2015-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
958
959         * nnimap.el (nnimap-request-accept-article): Allow respooling using
960         nnimap.
961
962         * gnus-group.el (gnus-group-get-new-news-this-group): Explicitly
963         request rescans when being run interactively.
964
965         * nnimap.el (nnimap-request-group): Don't rescan the group here,
966         because that can be very slow in large groups.
967
968         * gnus-int.el (gnus-request-group-scan): New backend function.
969
970         * nnimap.el (nnimap-request-scan-group): Implement in on IMAP.
971
972 2015-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
973
974         * gnus-group.el (gnus-group-suspend): Close all backends.
975
976 2015-01-19  Paul Eggert  <eggert@cs.ucla.edu>
977
978         * dgnushack.el (dgnushack-compile-file): New function.
979         (dgnushack-compile): Use it (bug#19514).
980
981 2015-01-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
982
983         * nntp.el (nntp-send-authinfo): Error out if the password is wrong.
984
985 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
986
987         * registry.el: Don't use <class> as a variable.
988
989 2014-12-29  Paul Eggert  <eggert@cs.ucla.edu>
990
991         system-name's returned value can vary
992         Also, the system-name variable is now obsolete.
993         Fixes Bug#19438.
994         * message.el (message-make-fqdn):
995         * nnvirtual.el (nnvirtual-retrieve-headers)
996         (nnvirtual-update-xref-header): Prefer (system-name) to system-name,
997         and avoid naming locals 'system-name'.
998
999 2014-12-29  Lars Ingebrigtsen  <larsi@gnus.org>
1000
1001         * mm-decode.el (mm-shr): Bind `shr-width' to `fill-column' so that
1002         lines don't get overlong when responding.
1003
1004 2014-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1005
1006         * registry.el (cl-remf, cl-loop, cl-subseq):
1007         Alias to remf, loop, and subseq respectively for old Emacsen.
1008
1009 2014-12-19  Andreas Schwab  <schwab@linux-m68k.org>
1010
1011         * gnus-group.el (gnus-read-ephemeral-bug-group):
1012         Bind coding-system-for-read and coding-system-for-write only around
1013         with-temp-file, and make buffer unibyte.  Don't write temp file twice.
1014
1015 2014-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1016
1017         * registry.el (registry-db): Set default slot later.
1018         This is because its value is not a literal integer.
1019
1020 2014-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
1021
1022         * registry.el (registry-db): Fix default registry-db max-size.
1023
1024 2014-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1025
1026         * mm-util.el (mm-with-unibyte-current-buffer): Mark obsolete and
1027         add warning.
1028
1029         * gnus-art.el: Fix up compiler warnings.
1030         (article-display-face, article-display-x-face): Remove unused `face'.
1031         (gnus-article-browse-html-save-cid-content): Remove unused var `type'.
1032         (article-date-ut): Remove unused var `first'.
1033         (gnus-article-prepare): Remove unused var `gnus-article'.
1034         (gnus-mime-save-part-and-strip): Remove unused var `param'.
1035         (gnus-mime-inline-part): Remove unused vars `charset', `contents', and
1036         `coding-system' along with corresponding dead code.
1037         (gnus-mime-view-part-externally): Remove unused var
1038         `mm-user-display-methods'.
1039         (gnus-insert-mime-button): Let-bind gnus-tmp-id explicitly.
1040         (gnus-display-mime): Remove unused var `handle'.
1041         (gnus-mime-display-alternative): Remove unused var `props'.
1042         (gnus-article-read-summary-keys): Remove unused var `up-to-top'.
1043         (gnus-article-edit-done): Remove unused var `p'.
1044         (gnus-url-mailto): Remove unused var `to'.
1045         (gnus-treat-article): Let-bind gnus-treat-condition, part-number,
1046         total-parts, and gnus-treat-type explicitly.  Remove unused var `elem'.
1047
1048 2014-12-18  Eric Abrahamsen  <eric@ericabrahamsen.net>
1049
1050         * registry.el (registry-db): Consolidate the :max-hard and :max-soft
1051         slots into a :max-size slot.
1052         (registry-db-version): Add new variable for database version number.
1053         (registry-prune): Use :max-size slot. Accept and use a sort-function
1054         argument.
1055         (registry-collect-prune-candidates): Add new function for finding
1056         non-precious pruning candidates.
1057         (registry-prune-hard-candidates, registry-prune-soft-candidates):
1058         Remove obsolete functions.
1059         (initialize-instance): Upgrade registry version when starting.
1060
1061         * gnus-registry.el (gnus-registry-prune-factor): Add new variable.
1062         (gnus-registry-max-pruned-entries): Remove obsolete variable.
1063         (gnus-registry-cache-file): Change default
1064         filename extension to "eieio".
1065         (gnus-registry-read): Add new function, split out from
1066         `gnus-registry-load', that does the actual object reading.
1067         (gnus-registry-load): Use it. Add condition case handler to check for
1068         old filename extension and rename to the new one.
1069         (gnus-registry-default-sort-function): New variable to specify a sort
1070         function to use when pruning.
1071         (gnus-registry-save, gnus-registry-insert): Use it.
1072         (gnus-registry-sort-by-creation-time): Define a default sort function.
1073
1074         * tests/gnustest-registry.el (gnustest-registry-make-testable-db):
1075         Adjust test for new object signature.
1076         (gnustest-registry-pruning-test): Add new pruning test.
1077         (gnustest-registry-sort-function): Default sort function for testing.
1078         (gnustest-registry-pruning-sort-test): New test for sorting.
1079
1080 2014-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1081
1082         * gnus-art.el (gnus-article-mime-handles): Refactor out into own
1083         function for reuse.
1084         (gnus-mime-buttonize-attachments-in-header): Adjust.
1085
1086 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1087
1088         * message.el (message-change-subject): Really check whether the subject
1089         changed.
1090
1091 2014-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1092
1093         * mailcap.el (mailcap-mime-data): Add doc-view-mode as a viewer for
1094         PDFs.
1095         (mailcap-view-mime): New function.
1096
1097 2014-12-01  Glenn Morris  <rgm@gnu.org>
1098
1099         * gnus-cloud.el (gnus-cloud): Add :version tag.
1100
1101 2014-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1102
1103         * gnus-art.el (gnus-use-idna):
1104         * gnus-sum.el (gnus-summary-idna-message):
1105         * message.el (message-use-idna):
1106         Protect against nil value for idna-program.
1107
1108         * message.el (message-use-idna): Load Mule-UCS for XEmacs 21.4.
1109
1110 2014-11-26  John Mastro  <john.b.mastro@gmail.com>  (tiny change)
1111
1112         * auth-source.el (auth-source-macos-keychain-search-items): Return
1113         result of `auth-source-macos-keychain-result-append' (bug#19074).
1114
1115 2014-11-25  Glenn Morris  <rgm@gnu.org>
1116
1117         * gnus-start.el (gnus-save-newsrc-file-check-timestamp):
1118         Add :version tag.
1119
1120 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1121
1122         * pop3.el (pop3-open-server): Warn unless encrypted.
1123
1124         * nnimap.el (nnimap-open-connection-1): Warn unless encrypted.
1125
1126 2014-11-18  Paul Eggert  <eggert@cs.ucla.edu>
1127
1128         Port new time stamp handling to Emacs 23.2.
1129         This fix is for Gnus.  Problem reported by Katsumi Yamaoka.
1130         * time-date.el (time-add, time-subtract, time-less-p):
1131         Use eval-and-compile, not eval-when-compile.
1132
1133 2014-11-17  Albert Krewinkel  <albert@zeitkraut.de>
1134
1135         * message.el (message-valid-fqdn-regexp): Add non-internaional new
1136         TLDs.
1137
1138 2014-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1139
1140         Port new time stamp handling to old Emacs and to XEmacs.
1141         This is needed for Gnus, which copies time-date.el and which
1142         runs on older Emacs implementations.
1143         * time-date.el (with-decoded-time-value):
1144         Handle 'nil' and floating-point arg more compatibly with new Emacs.
1145         (encode-time-value, with-decoded-time-value):
1146         Obsolete only if new Emacs.
1147         (time-add, time-subtract, time-less-p): Define if not new Emacs.
1148
1149         Improve time stamp handling, and be more consistent about it.
1150         This implements a suggestion made in:
1151         http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
1152         Among other things, this means timer.el no longer needs to
1153         autoload the time-date module.
1154         * time-date.el (seconds-to-time, days-to-time, time-since)
1155         (with-decoded-time-value):
1156         Treat 'nil' as current time.  This is mostly for XEmacs.
1157         (encode-time-value, with-decoded-time-value): Obsolete.
1158         (time-add, time-subtract, time-less-p): Use no-op autoloads, for
1159         XEmacs.  Define only if XEmacs, as they're now C builtins in Emacs.
1160
1161 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1162
1163         * gnus-sum.el (gnus-summary-exit-no-update): Don't query about
1164         discarding changes in ephemeral groups.
1165
1166         * ietf-drums.el (ietf-drums-parse-address): Don't issue warnings about
1167         things the user isn't interested in.
1168
1169 2014-11-13  Julien Danjou  <jd@abydos>
1170
1171         * gnus-notifications.el (gnus-notifications-notify): Provide both
1172         app-icon and image-path.
1173
1174 2014-11-10  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
1175
1176         * mm-url.el (mm-url-encode-multipart-form-data):
1177         Restore to handle "multipart/form-data" by eww.
1178
1179 2014-11-07  Tassilo Horn  <tsdh@gnu.org>
1180
1181         * gnus-start.el (gnus-activate-group): Fix typo reported by Tim
1182         Landscheidt.
1183
1184 2014-10-29  Paul Eggert  <eggert@cs.ucla.edu>
1185
1186         Simplify use of current-time and friends.
1187         * gnus-delay.el (gnus-delay-article):
1188         * gnus-sum.el (gnus-summary-read-document):
1189         * gnus-util.el (gnus-seconds-today, gnus-seconds-month):
1190         * message.el (message-make-expires-date):
1191         Omit unnecessary call to current-time.
1192         * gnus-util.el (gnus-float-time): Simplify to an alias because
1193         time-to-seconds now behaves like float-time with respect to nil arg.
1194         (gnus-seconds-year): Don't call current-time twice to get the current
1195         time stamp, as this can lead to inconsistent results.
1196         * time-date.el (time-to-seconds) [!float-time]:
1197         Use current time if arg is nil, to be compatible with float-time.
1198         (time-date--day-in-year): New function, with most of the guts of
1199         the old time-to-day-in-year.
1200         (time-to-day-in-year): Use it.
1201         (time-to-days): Use it, to avoid decoding the same time stamp twice.
1202
1203 2014-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1204
1205         * gnus.el (gnus-mode-line-buffer-identification):
1206         Don't add image data for a non-graphic display (bug#18813).
1207
1208 2014-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1209
1210         * gnus.el (gnus-mode-line-buffer-identification): Don't shadow
1211         load-path, it blocks autoloading of find-image (bug#18813).
1212
1213 2014-10-24  enami tsugutomo  <tsugutomo.enami@jp.sony.com>
1214
1215         * nnimap.el (nnimap-wait-for-response): Ignore NOOP response requested
1216         to keep connection open (bug#18728).
1217
1218 2014-10-20  Glenn Morris  <rgm@gnu.org>
1219
1220         * Merge in all changes up to 24.4 release.
1221
1222 2014-10-15  Jorge A. Alfaro-Murillo  <jorge.alfaro-murillo@yale.edu>  (tiny change)
1223
1224         * message.el (message-insert-signature): Use `newline' instead of
1225         inserting explicit "\n".
1226
1227 2014-10-15  Sylvain Chouleur  <sylvain.chouleur@gmail.com>
1228
1229         * gnus-icalendar.el: Support vcal format timezones.
1230         (gnus-icalendar-event--decode-datefield): Use icalendar functions to
1231         compute dates with associated timezone.
1232         (gnus-icalendar-event-from-ical): Compute all timezones.
1233
1234 2014-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
1235
1236         * gnus-start.el (gnus-save-newsrc-file-check-timestamp): New option to
1237         check the newsrc.eld file's timestamp before saving it.
1238         (gnus-save-newsrc-file): Use it, with a prompt when the newsrc.eld
1239         timestamp has changed to be newer.
1240
1241 2014-10-06  Jan Tatarik  <jan.tatarik@gmail.com>
1242
1243         * gnus-icalendar.el (gnus-icalendar-identities):
1244         Include message-alternative-emails.
1245
1246 2014-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1247
1248         * ntlm.el (ntlm-string-make-unibyte, ntlm-secure-hash):
1249         New compatibility functions.
1250         (ntlm-build-auth-response): Use them.
1251
1252 2014-10-04  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1253
1254         * ntlm.el (ntlm-build-auth-request):
1255         Add NTLM2 Session support.  (Bug#15603)
1256
1257 2014-10-04  Alan Schmitt  <alan.schmitt@polytechnique.org>  (tiny change)
1258
1259         * nnimap.el (nnimap-process-expiry-targets): Reverse the list of
1260         expired messages only when it was built in reverse order.
1261
1262 2014-10-04  Peter Münster  <pmlists@free.fr>  (tiny change)
1263
1264         * gnus-delay.el (gnus-delay-send-queue): Remove `gnus-delay-header'
1265         last so it can be used in `message-send-hook'.
1266
1267 2014-09-29  Daiki Ueno  <ueno@gnu.org>
1268
1269         * mml.el (mml-parse-1): Error out if unknown mode is specified in
1270         <#secure> tag (bug#18513).
1271
1272 2014-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1273
1274         * parse-time.el: Require cl when compiling.
1275
1276 2014-09-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1277
1278         Use cl-lib as much as possible following the 2014-09-26 change
1279         in the Emacs trunk.
1280         * parse-time.el: Try requiring cl-lib.
1281         (parse-time-incf): Alias to cl-incf or incf.
1282         (digit-char-p): Remove.
1283         (parse-time-integer): Alias to cl-parse-integer or the one defined.
1284         (parse-integer): Rename to parse-time-integer.
1285         (parse-time-tokenize, parse-time-rules, parse-time-string)
1286         Use parse-time-incf and parse-time-integer.
1287
1288 2014-09-11  Paul Eggert  <eggert@cs.ucla.edu>
1289
1290         * gnus-cloud.el (gnus-cloud-parse-version-1): Fix misspelling
1291         of ":delete".
1292
1293 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1294
1295         * gnus-art.el (gnus-article-browse-html-save-cid-content)
1296         (gnus-article-browse-html-parts):
1297         Revert last change that breaks links other than cid contents.
1298
1299 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1300
1301         * gnus-art.el (gnus-article-browse-html-save-cid-content)
1302         (gnus-article-browse-html-parts): Make cid file names relative.
1303
1304 2014-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1305
1306         * mm-view.el (mm-display-inline-fontify): Make the working buffer
1307         temporarily displayed when running a mode function (at least org-mode
1308         requires it).
1309
1310 2014-08-14  Alan Schmitt  <alan.schmitt@polytechnique.org>
1311
1312         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
1313         the gnus-summary-article-expire-hook should be told where the function
1314         is going. In particular, the Gnus registry might want to know.
1315
1316 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1317
1318         * gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
1319
1320 2014-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1321
1322         * gnus-sum.el (gnus-summary-expire-articles): Revert.
1323
1324 2014-08-05  Eric Abrahamsen  <eric@ericabrahamsen.net>
1325
1326         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
1327         the gnus-summary-article-expire-hook should be told where the function
1328         is going. In particular, the Gnus registry might want to know.
1329
1330 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
1331
1332         Don't mishandle year-9999 dates (Bug#18176).
1333         * parse-time.el (parse-time-rules):
1334         Allow years up to most-positive-fixnum.
1335         * time-date.el (date-to-time):
1336         Pass "Specified time is not representable" errors through.
1337
1338 2014-07-31  Tassilo Horn  <tsdh@gnu.org>
1339
1340         * gnus-msg.el (gnus-inews-insert-gcc): Allow `gcc-self' to be a list of
1341         groups and t.
1342
1343 2014-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1344
1345         * gnus-utils.el (gnus-recursive-directory-files):
1346         Unify hard or symbolic links (bug#18063).
1347
1348 2013-07-17  Albert Krewinkel  <albert@zeitkraut.de>
1349
1350         * gnus-msg.el (gnus-configure-posting-style):
1351         Allow string replacements in values when matching against a header.
1352
1353 2014-07-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1354
1355         * gnus-start.el (gnus-dribble-read-file): Don't stop the auto-saving of
1356         the dribble buffer even when it is shrunk a lot.
1357         <http://thread.gmane.org/gmane.emacs.gnus.user/16923>
1358
1359 2014-06-26  Glenn Morris  <rgm@gnu.org>
1360
1361         * mm-util.el (help-function-arglist): Remove outdated declaration.
1362
1363 2014-06-24  Andreas Schwab  <schwab@linux-m68k.org>
1364
1365         * html2text.el (html2text-get-attr): Rewrite to handle spaces in quoted
1366         attribute values.  (Bug#17834)
1367
1368 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
1369
1370         * gnus-sum.el (gnus-summary-edit-article-done):
1371         Prefer point-marker to copy-marker of point.
1372
1373 2014-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1374
1375         * Makefile.in (install-el, install-el-elc): Compress .el files.
1376         (uninstall): Remove compressed .el files.
1377
1378 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1379
1380         * gnus-art.el (gnus-article-edit-part): Don't modifiy markers.
1381         (gnus-article-read-summary-keys):
1382         Don't bug out when there is no article in the summary buffer.
1383         (gnus-mime-buttonize-attachments-in-header):
1384         Improve criterion that finds parts to display.
1385
1386         * gnus-art.el (gnus-mm-display-part):
1387         * mm-decode.el (mm-shr):
1388         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
1389         (mm-insert-inline): Revert last changes.
1390
1391 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1392
1393         * gnus-art.el (gnus-mm-display-part):
1394         * mm-decode.el (mm-shr):
1395         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
1396         (mm-insert-inline): Set insertion type of end-marker, not only
1397         start-marker, of undisplayer so as to stay after inserted text.
1398
1399 2014-06-02  Andreas Schwab  <schwab@linux-m68k.org>
1400
1401         * html2text.el (html2text-get-attr): Fix typo when splitting value from
1402         attribute. (Bug#17613)
1403
1404 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1405
1406         * mm-view.el (mm-display-inline-fontify): Use font-lock-ensure.
1407         * gnus-cite.el (gnus-message-citation-mode): Use font-lock-flush.
1408
1409 2014-05-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1410
1411         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
1412         Don't delete next part button; keep spacing between buttons.
1413
1414 2014-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1415
1416         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
1417         Work for the last MIME part in an article.
1418         (gnus-mime-display-single): Suppress excessive newlines between parts.
1419
1420         * mm-uu.el (mm-uu-dissect): Assume that separators may be accompanied
1421         by leading or trailing newline.
1422
1423 2014-05-12  Sam Steingold  <sds@gnu.org>
1424
1425         * time-date.el (seconds-to-string): New function to pretty print time
1426         delay in seconds.
1427
1428 2014-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1429
1430         * gnus-art.el (gnus-mm-display-part): Don't put article out of sight
1431         while prompting a user for a file name, etc.
1432         (gnus-mime-display-single): Display part with a common appearance no
1433         matter whether MIME button is omitted or not; don't add duplicate entry
1434         to gnus-article-mime-handle-alist.
1435         (gnus-mime-buttonize-attachments-in-header): Use copied buttons.
1436
1437 2014-05-08  Adam Sjøgren  <asjo@koldfront.dk>
1438
1439         * mml2015.el (mml2015-display-key-image): New variable.
1440
1441 2014-05-08  Glenn Morris  <rgm@gnu.org>
1442
1443         * gnus-fun.el (gnus-grab-cam-face):
1444         Do not use predictable temp-file name.  (http://bugs.debian.org/747100)
1445         This is CVE-2014-3421.
1446
1447 2014-05-04  Glenn Morris  <rgm@gnu.org>
1448
1449         * gnus-registry.el (gnus-registry-install-p): Doc fix.
1450
1451 2014-05-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1452
1453         * gnus-art.el (gnus-mime-inline-part): Redisplay a button so as to show
1454         the displaying state of a part.
1455         (gnus-mm-display-part): Don't insert a newline in the beginning of
1456         a part like gnus-mime-inline-part doesn't; work for XEmacs.
1457
1458         * mm-decode.el (mm-display-part): Don't insert a newline in the top.
1459         (mm-shr): Make undisplayer unbreakable.
1460
1461         * mm-view.el (mm-inline-image-emacs, mm-inline-image-xemacs):
1462         Don't insert excessive newline.
1463         (mm-inline-text-html-render-with-w3m, mm-inline-text)
1464         (mm-insert-inline): Make undisplayer unbreakable.
1465
1466 2014-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1467
1468         * gnus.el: Ma Gnus v0.11 is released.
1469
1470 2014-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1471
1472         * gnus-art.el (gnus-mm-display-part):
1473         Highlight header attachment buttons.
1474
1475 2014-04-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1476
1477         * gnus-art.el (gnus-mm-display-part): Don't move point while toggling
1478         a part; redisplay a button (enbugged in 2014-02-05).
1479
1480 2014-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
1481
1482         * auth-source.el (auth-source-search, auth-source-search-backends):
1483         Treat :max 0 as an indicator that a boolean return is wanted, as
1484         documented. Reported by Joe Bloggs.
1485
1486 2014-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1487
1488         * gnus-icalendar.el: Require gnus-art.
1489
1490 2014-04-20  Jan Tatarik  <jan.tatarik@gmail.com>
1491
1492         * gnus-icalendar.el (gnus-icalendar-event->org-entry)
1493         (gnus-icalendar--update-org-event): put event timestamp in
1494         the org entry body instead of the drawer.
1495         (gnus-icalendar-event--get-attendee-names): list of participants should
1496         contain even attendees without common name attribute.
1497         (gnus-icalendar--update-org-event): don't generate duplicates of empty
1498         property tags in org drawers.
1499
1500 2014-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1501
1502         * gmm-utils.el (gmm-format-time-string): New function.
1503
1504         * message.el (message-insert-formatted-citation-line): Use the original
1505         author's time zone to express a date string.
1506
1507 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1508
1509         * gnus-srvr.el (gnus-tmp-how, gnus-tmp-name, gnus-tmp-where)
1510         (gnus-tmp-status, gnus-tmp-agent, gnus-tmp-cloud)
1511         (gnus-tmp-news-server, gnus-tmp-news-method, gnus-tmp-user-defined):
1512         Silence compiler warnings.
1513         (gnus-server-insert-server-line): Don't use dyn-bind var as argument.
1514
1515 2014-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1516
1517         * mml.el: Require url when compiling.
1518
1519         * gnus-cloud.el (gnus-cloud-parse-version-1):
1520         Use plist-get rather than CL's getf.
1521         (gnus-activate-group, gnus-subscribe-group): Declare.
1522
1523         * gnus-sum.el (gnus-mime-buttonize-attachments-in-header): Declare.
1524
1525 2014-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1526
1527         * gnus-sum.el (gnus-summary-toggle-header): Display header attachment
1528         buttons when toggling the header off.
1529
1530 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
1531
1532         * tls.el (tls-program): Reflow docstring.
1533
1534 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
1535
1536         * nnimap.el (nnimap-request-accept-article): Make respooling to nnimap
1537         groups work again.
1538
1539 2014-03-07  George McNinch  <gmcninch@gmail.com>  (tiny change)
1540
1541         * nnir.el (nnir-run-namazu): Parse namazu results that are larger than
1542         999 correctly (i.e. "1,342").
1543
1544 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
1545
1546         * gnus-agent.el (gnus-agent-update-files-total-fetched-for): Don't bug
1547         out if the directory doesn't exist.
1548
1549 2014-03-07  Daiki Ueno  <ueno@gnu.org>
1550
1551         * mml2015.el (mml2015-use): Don't check the availability of GnuPG
1552         commands here; instead, only check if epg-config.el is available.
1553
1554 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
1555
1556         * mml.el (mml-expand-html-into-multipart-related): Allow sending HTML
1557         messages with embedded images.
1558         (mml-generate-mime): Don't bug out if you don't have libxml.
1559
1560 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
1561
1562         * message.el (message-make-html-message-with-image-files): New command.
1563
1564 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
1565
1566         * gnus-group.el (gnus-group-make-group): Clarify prompt.
1567
1568         * mml.el (mml-insert-mime-headers): Allow `recipient-filename'.
1569
1570 2014-02-23  David Engster  <deng@randomsample.de>
1571
1572         * auth-source.el (auth-source-netrc-saver): Do not depend on `cl-lib'
1573         to stay compatible with older Emacsen, so replace `cl-loop' with
1574         `loop'.
1575
1576 2014-02-22  Daniel Colascione  <dancol@dancol.org>
1577
1578         * auth-source.el (auth-source-secrets-listify-pattern): New function.
1579         (auth-source-secrets-search): Don't pass invalid patterns to secrets.el;
1580         instead, build list of patterns.
1581
1582 2014-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1583
1584         * gnus-art.el (gnus-article-prepare, gnus-article-prepare-display):
1585         Display header attachment buttons by gnus-article-prepare-display
1586         rather than gnus-article-prepare so as to view in mml-preview as well.
1587
1588 2014-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
1589
1590         * auth-source.el (auth-sources): Add pointer to what the .gpg extension
1591         in `auth-sources' means and link to EPA docs.
1592
1593 2014-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
1594
1595         * nnmail.el (nnmail-expand-newtext): Further sub-match fixups
1596         (bug#12375).
1597
1598 2014-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1599
1600         * gnus-art.el (gnus-article-goto-part): Find a button in the body first.
1601         (gnus-mime-buttonize-attachments-in-header): Number hidden buttons.
1602
1603 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
1604
1605         * message.el (message-tab): Mention what happens on normal tabs
1606         (bug#11297).
1607
1608 2014-02-08  Glenn Morris  <rgm@gnu.org>
1609
1610         * auth-source.el (auth-sources): Doc fix.  (Bug#16642)
1611
1612 2014-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1613
1614         * gnus-art.el (gnus-mime-buttonize-attachments-in-header): Display
1615         buttons that are hidden in unselected alternative part as well.
1616         (gnus-mime-display-alternative): Redraw attachment buttons in header.
1617
1618         * gmm-utils.el (gmm-flet, gmm-labels): Add edebug spec.
1619
1620 2014-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
1621
1622         * gnus-srvr.el (gnus-server-toggle-cloud-server): New command and
1623         keystroke.
1624         (gnus-server-toggle-cloud-server): Only allow clouding applicable
1625         types.
1626
1627         * ietf-drums.el (ietf-drums-parse-address): Don't bug out when called
1628         with an empty string.
1629
1630 2014-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
1631
1632         * gnus-msg.el (gnus-summary-cancel-article): `user-mail-address' is
1633         buffer-local in some buffers, so bind it explicitly in the buffer we're
1634         trying to cancel the article in (bug#10808).
1635
1636 2014-02-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1637
1638         * gnus.el, gnus-xmas.el (gnus-copy-overlay, gnus-overlays-at):
1639         New functions.
1640
1641         * gnus-art.el (gnus-mime-display-attachment-buttons-in-header):
1642         New user option.
1643         (gnus-mime-buttonize-attachments-in-header): New function.
1644         (gnus-article-prepare): Use it.
1645         (gnus-mime-inline-part): Suppress extra newline.
1646         (gnus-mm-display-part): Save excursion;
1647         remove useless deleting and adding of buttons.
1648         (gnus-insert-mime-button): Allow insertion in the middle of a line.
1649
1650         * gnus-sum.el (gnus-summary-wash-mime-map, gnus-summary-article-menu):
1651         Add gnus-mime-buttonize-attachments-in-header.
1652
1653 2014-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
1654
1655         * nnimap.el (nnimap-request-articles): New command to download several
1656         articles at once.
1657
1658         * gnus.el (gnus-variable-list): Save Cloud variables.
1659
1660         * gnus-int.el (gnus-request-accept-article): Doc fix.
1661
1662 2014-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
1663
1664         * parse-time.el (parse-time-iso8601-regexp)
1665         (parse-iso8601-time-string): Copied from `url-dav' so that we can use
1666         it more generally.
1667
1668 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
1669
1670         * gnus-cloud.el: New file to provide the Emacs Cloud.
1671
1672         * dgnushack.el: Silence XEmacs w3 warning.
1673
1674         * gravatar.el (gravatar-retrieve-synchronously): XEmacs also has
1675         `url-retrieve-synchronously', apparently.
1676
1677         * dgnushack.el: Silence XEmacs dns.el warning.
1678
1679         * gnus-compat.el (gnus-compat): Declare `declare-function' only here
1680         instead of in all files.
1681
1682         * dns.el (network-interface-list): Define for XEmacs.
1683
1684         * gnus-notifications.el (gravatar-retrieve-synchronously): Declare for
1685         XEmacs.
1686
1687         * nnrss.el (libxml-parse-html-region): Silence compilation error.
1688
1689 2014-02-01  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1690
1691         * gnus-mlspl.el (gnus-group-split-fancy): Use `gnus-parameters' in
1692         `gnus-group-split-fancy'.
1693
1694 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
1695
1696         * message.el (message-remove-header): Doc fix.
1697         (message-forward-included-headers): New variable.
1698         (message-remove-ignored-headers): Use it.
1699
1700 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
1701
1702         * nnir.el (nnir-request-update-mark): Don't try to update the source
1703         group if we can't find it (bug#16611).
1704
1705 2014-01-31  Dave Abrahams  <dave@boostpro.com>
1706
1707         * gnus-sum.el (gnus-summary-open-group-with-article): New command.
1708
1709 2014-01-31  Magnus Henoch  <magnus.henoch@gmail.com>
1710
1711         * dns.el (dns-servers-up-to-date-p): New function to see whether the
1712         network interfaces changed.
1713         (dns-query): Use it to flush the data.
1714
1715 2013-09-04  Rasmus Pank Roulund  <emacs@pank.eu>
1716
1717         * gnus-fun.el (gnus-x-face-omit-files): Regexp to omit matched results
1718         from random face commands.
1719         (gnus-face-directory): Like `gnus-x-face-directory` for png files and
1720         Face.
1721         (gnus-face-omit-files): Like `gnus-x-face-omit-files` for Face.
1722         (gnus--random-face-with-type): Generic function returning a face-type
1723         as a string.
1724         (gnus--insert-random-face-with-type): Generic function inserting a face
1725         in a message buffer header.
1726         (gnus-random-x-face): Rewritten to use `gnus--random-face-with-type`.
1727         (gnus-insert-random-x-face-header): Rewritten to use
1728         `gnus--insert-random-face-with-type`.
1729         (gnus-random-face): Return random (png) Face as string.
1730         (nus-insert-random-face-header): Insert random (png) Face in a message
1731         buffer.
1732
1733 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1734
1735         * mm-url.el: Remove all usage of w3.
1736
1737         * nnrss.el: Ditto.
1738
1739         * mm-decode.el: Ditto.
1740
1741         * mm-view.el: Ditto.
1742
1743         * dgnushack.el: Remove mentions of urldir and w3-dir, since w3 is
1744         outdated and all Emacsen have url.el built-in.
1745
1746         * gnus-setup.el: Remove outdated file.
1747
1748 2014-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1749
1750         * gnus.el: Ma Gnus v0.9 is released.
1751
1752 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1753
1754         * nnimap.el (nnimap-transform-headers): Fix Davmail header parsing.
1755
1756 2014-01-31  Dave Abrahams  <dave@boostpro.com>
1757
1758         * gnus-salt.el (gnus-tree-highlight-article): Don't move point around
1759         in the summary buffer (bug#13769).
1760
1761 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1762
1763         * gnus-art.el (gnus-article-setup-buffer): Refresh the summary buffer
1764         name if we're using a single article buffer.  Otherwise, it may point
1765         to a killed buffer (bug#13756).
1766
1767 2014-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
1768
1769         * nnmail.el (nnmail-split-it): Instead of redoing the search to restore
1770         the match data, just save and restore it explicitly (bug#12375).
1771
1772         * gnus-sum.el (gnus-summary-read-group-1): Initialize the spam code if
1773         that's needed.
1774
1775         * spam.el (spam-initialize): Allow calling repeatedly, but only run the
1776         the code once (bug#9069).
1777
1778 2014-01-18  Steinar Bang  <sb@dod.no>
1779
1780         * gnus-setup.el (gnus-use-sendmail): We never use sendmail for mail
1781         reading.
1782
1783 2014-01-09  Ken Olum  <kdo@cosmos.phy.tufts.edu>  (tiny change)
1784
1785         * message.el (message-bury): Call bury-buffer with no argument
1786         in the message-return-action case too.
1787
1788 2014-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1789
1790         * gnus-sum.el (gnus-article-stop-animations): Declare it before using.
1791         (nnimap-split-fancy, nnimap-split-methods): Declare.
1792
1793         * mm-util.el (help-function-arglist): Declare.
1794
1795 2013-12-28  Glenn Morris  <rgm@gnu.org>
1796
1797         * gnus-sieve.el (gnus-sieve-select-method):
1798         * gravatar.el (gravatar-automatic-caching, gravatar-cache-ttl)
1799         (gravatar-rating, gravatar-size):
1800         * message.el (message-minibuffer-local-map):
1801         * sieve-manage.el (sieve-manage-authenticators)
1802         (sieve-manage-authenticator-alist): Specify custom types.
1803
1804         * hashcash.el (hashcash-program): Rename from hashcash-path.
1805         Update callers.
1806
1807         * gnus-icalendar.el (gnus-icalendar-org, gnus-icalendar):
1808         * gnus-sum.el (gnus-subthread-sort-functions): Add version.
1809         * gnus-sync.el (gnus-sync-file-encrypt-to): Add type and version.
1810
1811         * auth-source.el (auth-sources):
1812         * nnmairix.el (nnmairix-propagate-marks-upon-close):
1813         Fix custom types.
1814
1815         * tls.el (tls-certtool-program): Fix default value.
1816
1817 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
1818
1819         * gnus-sum.el (gnus-summary-respool-query): Special-case nnimap so that
1820         we get proper traces there, too.
1821
1822 2013-12-26  Sean Connor  <sconnor005@allyinics.org>  (tiny change)
1823
1824         * gnus-sum.el (gnus-summary-enter-digest-group): Don't discard previous
1825         value of the parameters if the current article has a Reply-To or From
1826         field.
1827
1828 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
1829
1830         * gnus.el (gnus-group-buffer): Remove duplicate definition.
1831
1832 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
1833
1834         * gnus-sum.el (gnus-summary-exit): Stop animations.
1835
1836 2013-12-19  Juri Linkov  <juri@jurta.org>
1837
1838         * gnus.el (gnus-suppress-keymap):
1839         * gnus-art.el (gnus-article-mode-map):
1840         * gnus-group.el (gnus-group-mode-map):
1841         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-backend-map):
1842         Remove [backspace] key binding because it shadows DEL (bug#16035).
1843
1844         * mm-decode.el (mm-viewer-completion-map): Remove duplicate definition.
1845
1846 2013-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1847
1848         * gnus-uu.el (gnus-uu-decode-binhex, gnus-uu-decode-binhex-view):
1849         Make sure work directory exists.
1850         (gnus-uu-digest-mail-forward): Store temporary files in work directory
1851         rather than tmp directory.
1852         (gnus-summary-prepare-exit-hook): Replace gnus-exit-group-hook, that is
1853         not necessarily always run, with it.
1854
1855 2013-12-18  Jan Tatarik  <jan.tatarik@gmail.com>
1856
1857         * gnus-icalendar.el (gnus-icalendar-identities): Make changing the
1858         value of gnus-icalendar-additional-identities work without restart.
1859
1860 2013-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1861
1862         * mm-util.el (mm-make-temp-file):
1863         Alias to make-temp-file for modern Emacsen.
1864
1865 2013-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1866
1867         * gnus-msg.el (gnus-setup-message): Fix the type of argument passed to
1868         nnir-article-number and nnir-article-group.
1869
1870 2013-12-03  Vitalie Spinu  <spinuvit@gmail.com>
1871
1872         * message.el (message-send-mail-with-sendmail):
1873         Don't kill error buffer if sending fails.
1874
1875 2013-11-28  Jan Tatarik  <jan.tatarik@gmail.com>
1876
1877         * gnus-icalendar.el (gnus-icalendar-event-from-ical)
1878         (gnus-icalendar-event->org-entry)
1879         (gnus-icalendar--update-org-event)
1880         (gnus-icalendar-event->gnus-calendar): Distinguish between
1881         required/optional/non-participant attendee status.  Fix bug causing
1882         the first required event participant to be omitted.
1883
1884 2013-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1885
1886         * gnus-art.el (article-de-quoted-unreadable)
1887         (article-de-base64-unreadable, gnus-mime-copy-part)
1888         * gnus-html.el (gnus-article-html)
1889         * mm-view.el (mm-inline-text-html-render-with-w3)
1890         (mm-inline-text-html-render-with-w3m-standalone)
1891         * rfc2231.el (rfc2231-decode-encoded-string):
1892         Allow overriding charset by mm-charset-override-alist.
1893
1894         * gnus-art.el (gnus-article-browse-html-parts):
1895         Replace LWSPs with `&nbsp;'s in header.
1896
1897         Work for broken Chinese articles.
1898
1899         * gnus-art.el (gnus-article-browse-html-save-cid-content):
1900         Exclude broken handles that gnus-summary-enter-digest-group may create.
1901         (gnus-article-browse-html-parts):
1902         Allow overriding charset by mm-charset-override-alist.
1903
1904 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
1905
1906         * gnus-icalendar.el (gnus-icalendar-additional-identities): New.
1907         (gnus-icalendar-identities): Support additional-identities.
1908
1909 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
1910
1911         * gnus-icalendar.el (gnus-icalendar-event:org-timestamp): Fix
1912         org-timestamp for events ending at midnight.
1913
1914 2013-11-21  Ivan Shmakov  <ivan@siamics.net>
1915
1916         * nndoc.el (nndoc-type-alist, nndoc-debbugs-db-type-p): Support debbugs
1917         .log files.
1918
1919 2013-11-20  David Engster  <deng@randomsample.de>
1920
1921         * lpath.el: Fix XEmacs warning for `beginning-of-visual-line'.
1922
1923 2013-11-20  Dave Goldberg  <david.goldberg6@verizon.net>
1924
1925         * message.el (message-beginning-of-line):
1926         Use beginning-of-visual-line when visual-line-mode is turned on.
1927
1928 2013-11-15  Jan Tatarik  <jan.tatarik@gmail.com>
1929
1930         * gnus-icalendar.el (gnus-icalendar-event->gnus-calendar)
1931         (gnus-icalendar-event-from-ical)
1932         (gnus-icalendar-event->org-entry)
1933         (gnus-icalendar--update-org-event): Required/optional participation,
1934         list of attendees synced to org.
1935
1936 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
1937
1938         * gnus-icalendar.el (gnus-icalendar-event:sync-to-org)
1939         (gnus-icalendar-event:inline-org-buttons): Allow for appointment
1940         cancellations to be synced to org if the original appt has an org
1941         outline.
1942
1943 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
1944
1945         * gnus-icalendar.el (gnus-icalendar--format-summary-line)
1946         (gnus-icalendar-event->org-entry)
1947         (gnus-icalendar--update-org-event)
1948         (gnus-icalendar-event->gnus-calendar): Fix empty location handling.
1949
1950 2013-11-12  Jan Tatarik  <jan.tatarik@gmail.com>
1951
1952         * gnus-icalendar.el (gnus-icalendar-event-from-ical):
1953         Fix timezone handling in gnus-icalendar export to org.
1954
1955 2013-11-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1956
1957         * gnus-salt.el (gnus--let-eval): Silence the Buildbot.
1958
1959 2013-11-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1960
1961         * gnus-cite.el (gnus-cite-add-face): Make non-sticky overlays.
1962
1963 2013-10-30  Glenn Morris  <rgm@gnu.org>
1964
1965         * gnus-group.el (gnus-group-browse-foreign-server):
1966         * gnus-int.el (gnus-start-news-server):
1967         Silence compiler obsolescence warning.
1968
1969 2013-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
1970
1971         * nnimap.el (nnimap-open-connection-1): `auth-source-search' for the
1972         `nnoo-current-server' first, then for the actual `nnimap-address' to
1973         allow netrc entries for the nnoo server to coexist with netrc entries
1974         for the `nnimap-address'.
1975
1976 2013-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1977
1978         * mm-decode.el (mm-dissect-buffer): Revert last change.
1979         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
1980         The problem that motivated those changes was attributed to a broken
1981         mail sender, and has been fixed.
1982
1983 2013-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1984
1985         * mm-decode.el (mm-dissect-buffer): Guess content-type if the first
1986         token is missing in the Content-Type header.
1987
1988         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
1989
1990 2013-09-18  Glenn Morris  <rgm@gnu.org>
1991
1992         * gnus-util.el (image-size): Declare.
1993
1994 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1995
1996         * gnus-icalendar.el (gnus-icalendar-event--find-attendee)
1997         (gnus-icalendar-event-from-ical)
1998         (gnus-icalendar-event--build-reply-event-body)
1999         (gnus-icalendar-event-reply-from-buffer)
2000         (gnus-icalendar-find-org-event-file)
2001         (gnus-icalendar-event->gnus-calendar, gnus-icalendar-reply)
2002         (gnus-icalendar-mm-inline): Use gmm-labels instead of labels or flet.
2003
2004         * mm-util.el (mm-special-display-p): Isolate XEmacs stuff.
2005
2006 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2007
2008         * gnus-salt.el (gnus-tree-mode): Use define-derived-mode.
2009         Use save-current-buffer.
2010         (gnus-tree-mode-map): Initialize in the declaration.
2011         (gnus-pick-mouse-pick-region): Remove unused var `fun'.
2012         (scroll-in-place): Defvar it.
2013         (gnus-tmp-*): Defvar them.
2014         (gnus-get-tree-buffer): Use derived-mode-p.
2015         (gnus--let-eval): New macro.
2016         (gnus-tree-highlight-node): Use it to avoid dynamic binding of
2017         non-prefixed variables.
2018         (gnus-tree-open, gnus-tree-close): Remove unused arg `group'.
2019
2020         * gnus-sum.el (gnus-summary-highlight): Remove `below' from the list of
2021         vars since it doesn't seem to be available.
2022         (gnus-set-global-variables, gnus-summary-read-group-1)
2023         (gnus-select-newsgroup, gnus-handle-ephemeral-exit)
2024         (gnus-summary-display-article, gnus-summary-select-article)
2025         (gnus-summary-next-article, gnus-offer-save-summaries)
2026         (gnus-summary-generic-mark): Use derived-mode-p.
2027         (gnus-summary-read-group-1, gnus-summary-exit)
2028         (gnus-summary-exit-no-update, gnus-kill-or-deaden-summary):
2029         Adjust calls to gnus-tree-close and gnus-tree-open.
2030
2031         * gnus-eform.el (gnus-edit-form-mode): Use define-derived-mode.
2032
2033         * gnus-agent.el (gnus-category-mode): Use define-derived-mode.
2034         (gnus-agent-mode): Use derived-mode-p.
2035         (gnus-agent-rename-group, gnus-agent-delete-group): Don't bind
2036         gnus-command-method and *-command-method to nil, but bind
2037         gnus-command-method to *-command-method instead!
2038         (gnus-agent-fetch-articles): Remove unused var `id'.
2039         (gnus-agent-fetch-headers): Remove unused arg `force'.
2040         (gnus-agent-braid-nov): Remove unused arg `group'.  Adjust callers.
2041         (gnus-agent-save-alist, gnus-agent-save-local): Remove unused `item'.
2042         (gnus-agent-short-article, gnus-agent-long-article)
2043         (gnus-agent-low-score, gnus-agent-high-score): Move declaration before
2044         first use.
2045         (gnus-agent-fetch-group-1): Remove unused vars `arts', `category',
2046         `score-param'.
2047         (gnus-tmp-name, gnus-tmp-groups): Defvar them.
2048         (gnus-get-predicate): Push in front of the cache, rather than end.
2049         (gnus-agent-expire-current-dirs, gnus-agent-expire-stats): Defvar them.
2050         (gnus-agent-expire-group-1): Use push.  Don't abuse dyn-binding.
2051         (gnus-agent-expire-unagentized-dirs): Don't rebind
2052         gnus-agent-expire-current-dirs since the defvar silences the warning.
2053         (gnus-agent-retrieve-headers): Remove unused var `cached-articles'.
2054         (gnus-agent-regenerate-group): Remove unused vars `point' and `dl'.
2055         (gnus-agent-regenerate): Simplify interactive spec and doc.
2056
2057 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
2058
2059         * gnus-int.el (gnus-open-server): Silence compiler.
2060
2061         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
2062
2063         * message.el (message-display-completion-list): Abolish.
2064         (message-completion-in-region): Use display-completion-list.
2065
2066 2013-09-17  Glenn Morris  <rgm@gnu.org>
2067
2068         * gnus-util.el (gnus-message-with-timestamp-1):
2069         Use `messages-buffer' function if available.  Ignore read-only.
2070
2071 2013-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2072
2073         * message.el (message-expand-group, message-completion-in-region):
2074         Correct the order of start and end of a region.
2075
2076 2013-09-13  Glenn Morris  <rgm@gnu.org>
2077
2078         * mml2015.el (gnus-create-image): Autoload it.
2079
2080         * gnus-spec.el (gnus-xmas-format): Fix weird error call.
2081
2082         * gnus-html.el (declare-function): Add compat stub for ancient Emacs.
2083         (image-size): Declare.
2084
2085 2013-09-12  Glenn Morris  <rgm@gnu.org>
2086
2087         * gnus-icalendar.el (gnus-icalendar-event--build-reply-event-body):
2088         Avoid using `find', which i) might not be defined at runtime;
2089         ii) does not work, since its default test is eql, not equal.
2090         (gnus-mime-action-alist): Declare.
2091
2092 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2093
2094         * score-mode.el (gnus-score-mode-map): Move initialization
2095         into declaration.
2096         (gnus-score-mode): Use define-derived-mode.
2097         * gnus-srvr.el (gnus-browse-mode): Use define-derived-mode.
2098         * gnus-kill.el (gnus-kill-file-mode-map): Move initialization
2099         into declaration.
2100         (gnus-kill-file-mode): Use define-derived-mode.
2101         (gnus-kill-file-edit-file, gnus-kill-file-enter-kill, gnus-kill):
2102         Use derived-mode-p.
2103         * gnus-group.el (gnus-group-mode): Use define-derived-mode.
2104         (gnus-group-setup-buffer, gnus-group-name-at-point)
2105         (gnus-group-make-web-group, gnus-group-enter-directory)
2106         (gnus-group-suspend): Use derived-mode-p.
2107         * gnus-cus.el (gnus-custom-mode): Use define-derived-mode.
2108         * gnus-bookmark.el (gnus-bookmark-bmenu-mode): Use define-derived-mode.
2109         * gnus-art.el (gnus-article-mode): Use define-derived-mode.
2110         (gnus-article-setup-buffer, gnus-article-prepare)
2111         (gnus-article-prepare-display, gnus-sticky-article)
2112         (gnus-kill-sticky-article-buffer, gnus-kill-sticky-article-buffers)
2113         (gnus-bind-safe-url-regexp, gnus-article-check-buffer)
2114         (gnus-article-read-summary-keys): Use derived-mode-p.
2115
2116 2013-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2117
2118         * mm-decode.el (mm-temp-files-delete): Fix file deletion logic.
2119
2120 2013-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2121
2122         * mm-util.el (mm-coding-system-priorities): Exclude iso-2022-jp-2 and
2123         shift_jis from the default value set for Japanese users.
2124
2125 2013-08-13  Glenn Morris  <rgm@gnu.org>
2126
2127         * gnus-icalendar.el (gnus-icalendar-org-capture-file): Fix type.
2128
2129         * gnus.el (gnus-valid-select-methods): Fix type.
2130
2131         * nnimap.el (nnimap-request-articles-find-limit): Fix type, version.
2132
2133 2013-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2134
2135         * mm-decode.el (mm-display-external): Run a timer for the temp files
2136         deletion after a viewer exits; add a deletion timer for the needsterm
2137         case, too.
2138
2139         * mm-decode.el (mm-display-external): Try to delete temporary files by
2140         using a 1-min. timer.
2141
2142 2013-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2143
2144         * mm-decode.el (mm-temp-files-to-be-deleted, mm-temp-files-cache-file):
2145         New internal variables.
2146         (mm-temp-files-delete): New function; add it to gnus-exit-gnus-hook.
2147         (mm-display-external): Use it to delete temporary files instead of
2148         using timers.
2149
2150 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2151
2152         * dgnushack.el (dgnushack-compile): Allow building on Emacs 23.
2153
2154 2013-08-06  Jan Tatarik  <jan.tatarik@gmail.com>
2155
2156         * gnus-icalendar.el (gnus-icalendar-event-from-ical): Replace pcase
2157         with cond for backwards compatability.
2158
2159 2013-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2160
2161         * mm-decode.el (mm-display-external): Bind process-connection-type to
2162         nil; don't delete a temp file immediately even if a viewer finishes,
2163         since it may be a shell script, like xdg-open, that launches a real
2164         viewer program belatedly.
2165
2166 2013-08-05  Dave Abrahams  <dave@boostpro.com>
2167
2168         * gnus-int.el (gnus-warp-to-article): Allow warping in all groups so
2169         that we can create nndoc groups that excerpt other groups.
2170
2171 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2172
2173         * gnus-delay.el (gnus-delay-article): Fix typo.
2174
2175         * gnus-group.el (gnus-group-delete-articles): Allow deleting only "old"
2176         articles.
2177
2178         * gnus-delay.el (gnus-delay-article): Run `message-send-hook' so that
2179         we can get spell-checking etc.
2180
2181 2013-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2182
2183         * rfc2047.el (rfc2047-encode-message-header): Unify charsets into
2184         a single one used for encoding the whole text in a header.
2185
2186 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2187
2188         * dgnushack.el (dgnushack-compile): `icalendar--decode-isodatetime'
2189         doesn't work properly on XEmacs.
2190
2191 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2192
2193         * message.el (message-ignored-news-headers): Delete X-Gnus-Delayed
2194         before sending.
2195
2196         * dgnushack.el (dgnushack-compile): Add a temporary check for
2197         gnus-icalendar.
2198
2199         * mm-decode.el (mm-command-output): New face.
2200         (mm-display-external): Use it.
2201
2202 2013-08-01  Kan-Ru Chen (陳侃如)  <kanru@kanru.info>  (tiny change)
2203
2204         * nnmbox.el (nnmbox-request-article): Don't change point.
2205
2206 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2207
2208         * gnus-icalendar.el (gnus-icalendar-event:inline-reply-buttons):
2209         Include `handle' parameter.
2210
2211 2013-08-01  Jan Tatarik  <jan.tatarik@gmail.com>
2212
2213         * gnus-icalendar.el: New file.
2214
2215 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2216
2217         * gnus-int.el (gnus-warp-to-article): Mention that warp means jump.
2218
2219         * gnus-uu.el (gnus-uu-mark-thread, gnus-uu-unmark-thread): Work with
2220         dummy roots, too.
2221
2222 2013-08-01  David Edmondson  <dme@dme.org>
2223
2224         * mml2015.el (mml2015-epg-key-image-to-string): Protect against bugging
2225         out on ttys.
2226
2227 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2228
2229         * gnus-start.el (gnus-dribble-save): Only save the dribble file if it's
2230         not empty.
2231
2232         * nnrss.el (nnrss-discover-feed): Indent.
2233
2234 2013-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2235
2236         * gnus-util.el (gnus-emacs-completing-read): Isolate XEmacs stuff.
2237
2238 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2239
2240         * gnus-start.el (gnus-read-active-for-groups): Always mark the data as
2241         dirty to ensure nnimap data being saved.
2242
2243 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
2244
2245         * gnus-sum.el (gnus-summary-make-menu-bar): Add "Current thread score"
2246         menu entry.
2247
2248         * gnus-score.el (gnus-summary-current-score): Use prefix arg to show
2249         the current thread's total score instead of the current article's
2250         score.
2251
2252         * gnus-sum.el (gnus-subthread-sort-functions): New defcustom.
2253         (gnus-sort-threads-recursively): Delete defcustom.
2254         (gnus-sort-threads-recursive): Adapt accordingly.
2255
2256 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
2257
2258         * gnus-sum.el (gnus-sort-subthreads-recursive): New function.
2259         (gnus-sort-threads-recursive): Use it.
2260         (gnus-sort-threads): Unconditionally call `gnus-sort-threads-recursive'
2261         again.  Now that determines how to sort subthreads.
2262
2263 2013-07-26  Tassilo Horn  <tsdh@gnu.org>
2264
2265         * gnus-sum.el (gnus-sort-threads-recursively): New defcustom.
2266         (gnus-sort-threads): Use it.
2267
2268 2013-07-25  Andreas Schwab  <schwab@linux-m68k.org>
2269
2270         * gnus-art.el (gnus-button-url-regexp): Make it match url in which
2271         punctuation characters follow parentheses (bug#14950).
2272
2273 2013-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2274
2275         * gnus.el (gnus-continuum-version):
2276         * gnus-msg.el (gnus-extended-version): Simplify.
2277
2278         * gnus.el (gnus-continuum-version-1): Remove.
2279         * gnus-msg.el (gnus-bug): Revert.
2280
2281         Calculate gnus-version correctly on Cygwin.
2282
2283         * gnus.el (gnus-continuum-version): Do main calculations in integers.
2284         (gnus-continuum-version-1): New function, return a string.
2285
2286         * gnus-msg.el (gnus-extended-version, gnus-bug):
2287         Use gnus-continuum-version-1 instead of gnus-continuum-version.
2288
2289 2013-07-19  Geoff Kuenning  <geoff@cs.hmc.edu>  (tiny change)
2290
2291         * gnus-art.el (gnus-treat-predicate): Allow functions as predicates
2292         (bug#13384).
2293
2294 2013-07-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2295
2296         * gnus-start.el (gnus-clean-old-newsrc): Remove the newsrc cleanups
2297         that were only relevant in a development version a long time ago.
2298
2299 2013-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2300
2301         * gnus-art.el (gnus-shr-put-image): Make it work as well for shr.el's
2302         that the old Emacs 24s bundle.
2303
2304 2013-07-10  David Engster  <deng@randomsample.de>
2305
2306         * gnus-start.el (gnus-clean-old-newsrc): Always remove 'unexist' marks
2307         if `gnus-newsrc-file-version' does not match `gnus-version'.  This
2308         fixes a bug in Emacs trunk where the 'unexist' marks were always
2309         removed at startup because "Gnus v5.13" was considered smaller than "Ma
2310         Gnus v0.03".
2311
2312 2013-07-10  Tassilo Horn  <tsdh@gnu.org>
2313
2314         * gnus.el (gnus-summary-line-format): Reference
2315         `gnus-user-date-format-alist' for the &user-date; format, not
2316         `gnus-summary-user-date-format-alist'.
2317
2318 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2319
2320         * nnml.el (nnml-request-compact-group): Don't bug out if we can't
2321         delete files (bug#13481).
2322
2323 2013-07-08  Tassilo Horn  <tsdh@gnu.org>
2324
2325         * gnus-registry.el (gnus-registry-remove-extra-data): New function.
2326
2327 2013-07-06  Lars Ingebrigtsen  <larsi@gnus.org>
2328
2329         * gnus-art.el (gnus-block-private-groups): Allow `global' methods to
2330         display images.
2331
2332         * gnus.el (gnus-valid-select-methods): Mark nnrss as global.
2333
2334         * message.el (message-cancel-news): According to
2335         <mailman.216.1372942181.12400.help-gnu-emacs@gnu.org>, "cancel" is
2336         preferred over "cmsg cancel" in the Subject.
2337
2338         * nnir.el (nnir-engines): Note that the group specs are regexps
2339         (bug#13238).
2340
2341         * gnus-msg.el (gnus-copy-article-buffer): If the article buffer has
2342         gotten read-only text properties, ensure that those aren't heeded when
2343         copying stuff over (bug#13434).
2344
2345         * mm-view.el (mm-inline-text-html): Don't bug out on multipart messages
2346         (bug#13762).
2347
2348 2013-07-05  David Kastrup  <dak@gnu.org>
2349
2350         * auth-source.el (auth-source-netrc-parse-one): Allow empty strings in
2351         authinfo file again (important for blank passwords).  This had been
2352         broken with 2013-06-15 change.
2353
2354 2013-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2355
2356         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
2357         Revert 2013-01-14 change.
2358
2359 2013-07-02  Daiki Ueno  <ueno@gnu.org>
2360
2361         * mml2015.el (mml2015-epg-key-image): Use 'gnus-create-image' instead
2362         of 'create-image' for XEmacs compatibility; check errors when decoding
2363         image.  Reported by Uwe Brauer.
2364
2365 2013-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2366
2367         * gnus-art.el (gnus-article-extend-url-button): Make it work again with
2368         gnus-button-push revised at 2011-01-19.
2369
2370 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2371
2372         * eww.el, shr.el, shr-color.el: Removed from the Gnus repository.  They
2373         now live in the lisp/net Emacs 24 repository.
2374
2375 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2376
2377         * eww.el (eww-update-header-line-format): Quote % characters.
2378
2379 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2380
2381         * eww.el (eww-process-text-input): Display passwords as asterisks.
2382
2383         * shr.el (shr-make-table-1): Protect against invalid column-spans.
2384
2385 2013-06-19  Tom Tromey  <tromey@redhat.com>
2386
2387         * eww.el (eww-top-url): Remove.
2388         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
2389         (eww-render): Set new variables.  Don't set eww-top-url.
2390         (eww-handle-link): Handle "prev", "home", and "contents".
2391         Downcase the rel text.
2392         (eww-top-url): Choose best top URL.
2393
2394 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2395
2396         * eww.el: Rewrite to implement form elements "by hand" instead of
2397         relying in widget.el.  Using widget.el leads to too many
2398         user interface inconsistencies.
2399         (eww-self-insert): Implement entering commands in text fields.
2400         (eww-process-text-input): New function to make text input field editing
2401         work.
2402         (eww-submit): Rewrite to use the new-style form methods.
2403         (eww-select-display): Display the correct selected item.
2404         (eww-change-select): Implement changing the select value.
2405         (eww-toggle-checkbox): Implement radio/checkboxes.
2406         (eww-update-field): Fix compilation error.
2407         (eww-tag-textarea): Implement <textarea>.
2408
2409         * shr.el (shr-urlify): Use `keymap' instead of `local-map' so that we
2410         don't shadow mode-specific bindings.
2411
2412         * eww.el (eww-browse-url): Don't push stuff onto history if there's
2413         nothing to push.
2414
2415         * shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
2416
2417 2013-06-19  Glenn Morris  <rgm@gnu.org>
2418
2419         * gnus-group.el (gnus-mark-article-as-read): Fix declaration.
2420
2421 2013-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
2422
2423         * auth-source.el (auth-source-netrc-parse-entries): Remove debugging.
2424
2425 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2426
2427         * shr.el (shr-make-table-1): Implement <td rowspan>.
2428         (shr-table-horizontal-line): Allow nil as a value, and change the
2429         default.
2430         (shr-insert-table-ruler): Respect the nil value.
2431
2432 2013-06-18  Tom Tromey  <tromey@barimba>
2433
2434         * eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
2435         New defvars.
2436         (eww-open-file): New defun.
2437         (eww-render): Initialize new variables.
2438         (eww-display-html): Handle "link" and "a".
2439         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
2440         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
2441         (eww-back-url): Rename from eww-previous-url.
2442         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url): New
2443         defuns.
2444
2445 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2446
2447         * shr.el (shr-tag-table): Insert the images after the table, so that
2448         they're not covered by the table colourisation, which often looked
2449         awkward.
2450         (shr-tag-dl, shr-tag-dt, shr-tag-dd): Add support for <dl>, <dt> and
2451         <dd>.
2452         (shr-make-table-1): Implement <td colspan=> support.
2453         (shr-insert-document): Use one less than window width if `shr-width' is
2454         nil, since otherwise things may get one character too wide.
2455
2456 2013-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2457
2458         * eww.el (eww-detect-charset): Improve regexp; move backward.
2459
2460 2013-06-18  Glenn Morris  <rgm@gnu.org>
2461
2462         * mm-decode.el (widget-convert-button): Autoload.
2463
2464         * sieve-manage.el (mm-enable-multibyte): Autoload.
2465
2466         * shr.el (libxml-parse-html-region): Declare.
2467         (shr-render-buffer): Explicit error if no libxml2 support.
2468
2469 2013-06-17  Teodor Zlatanov  <tzz@lifelogs.com>
2470
2471         * auth-source.el (auth-source-current-line): New function.
2472         (auth-source-netrc-parse-entries): When a data token is "machine",
2473         assume we're in the wrong place and abort parsing the current line.
2474
2475 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2476
2477         * eww.el (eww-tag-select): Don't render totally empty <select> forms.
2478         (eww-convert-widgets): Don't bug out if the first widget starts at the
2479         beginning of the buffer.
2480         (eww-convert-widgets): Fix last patch.
2481         (eww-tag-input): Support <input type=image>.
2482
2483         * shr.el (shr-insert-table): Respect border-collapse: collapse.
2484         (shr-tag-base): Protect against base specs that are degenerate.
2485         (shr-ensure-paragraph): Don't delete empty lines that have text
2486         properties, because these may be input fields.
2487
2488         * eww.el (eww-convert-widgets): Put `help-echo' on input fields so that
2489         we can navigate to them.
2490
2491         * shr.el (shr-colorize-region): Put the colours over the entire region.
2492         (shr-inhibit-decoration): New variable.
2493         (shr-add-font): Use it to inhibit text property decorations while doing
2494         preliminary table renderings.  This speeds up typical Wikipedia page
2495         renderings by 15%.
2496         (shr-tag-span): Don't respect the <title>, because that overwrites the
2497         help-echo from links inside the spans.
2498         (shr-next-link): Use `help-echo' for navigation, so that we can
2499         navigate to form elements, too.
2500
2501         * eww.el (eww-button): New face.
2502         (eww-convert-widgets): Use it to make submit buttons more button-like.
2503
2504         * mm-decode.el (mm-convert-shr-links): Override the shr local map, so
2505         that Gnus commands work.
2506
2507         * shr.el (shr-render-td): Support horizontal alignment.
2508
2509         * eww.el (eww-put-color): Removed.
2510         (eww-colorize-region): Use `add-face-text-property'.
2511
2512         * shr.el (shr-add-font): Append face data, so that we get the correct
2513         precedence: The innermost value (which is applied first) wins.
2514         (shr-make-overlay): Obsolete function.
2515
2516         * mm-decode.el (mm-convert-shr-links): New function to convert
2517         new-style shr URL links into widgets.
2518         (mm-shr): Use it.
2519
2520         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
2521         widget commands, since we're no longer using widgets for links.
2522
2523         * shr.el (shr-next-link): New command.
2524         (shr-previous-link): New command.
2525         (shr-urlify): Don't use `widget-convert', because that's slow.
2526         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
2527         because collecting the overlays and reapplying them when generating
2528         tables is slow.
2529         (shr-insert-table): Ditto.
2530
2531 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2532
2533         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
2534         * shr.el (browse-url): Require `url'.
2535         * eww.el (url): Require format-spec.
2536
2537 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2538
2539         * eww.el (eww-display-html): Default to using the entire window width.
2540         (eww-browse-url): Don't add a User-Agent header (twice), because that
2541         makes Bing refuse connection.
2542
2543         * shr.el (shr-make-table): Cache the table rendering at the table
2544         level, and not the <td> level.  This is a bit faster.
2545
2546         * eww.el (eww-render): Go to the correct ID when given URLs ending with
2547         #id.
2548
2549         * shr.el (shr-tag-li): Don't require a new paragraph, since other
2550         browsers don't.
2551         (shr-expand-url): Respect #anchor links.
2552         (shr-parse-base): Chop off the anchor before using.
2553         (shr-descend): Respect display: none.
2554         (shr-descend): Allow marking elements that have certain IDs.
2555
2556         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
2557
2558         * shr.el (shr-expand-url): Don't bug out on zero-length links.
2559
2560         * eww.el (eww-tag-textarea): Support <textarea>.
2561
2562 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
2563
2564         * shr.el (shr-dom-to-xml): Fixed function call.
2565
2566         * eww.el (eww): New group.
2567         (eww-header-line-format): New custom variable.
2568         (eww-current-title): New variable.
2569         (eww-display-html): Update header and handle title tag.
2570         (eww-update-header-line-format): New function.
2571         (eww-tag-title): New function.
2572
2573         * shr.el (shr-dom-to-xml): New function.
2574         (shr-tag-svg): Add support for the SVG tag.
2575         (shr-bullet): New custom variable.
2576         (shr-tag-li): Support custom bullet in unordered lists.
2577
2578 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2579
2580         * shr.el (shr-expand-url): Respect // URLs.
2581
2582         * eww.el (eww-tag-body): Override the shr body rendering so that we can
2583         put a background colour onto the entire buffer.
2584         (eww-render): When being redirected, use the redirect URL as the new
2585         base URL.
2586
2587         * shr.el (shr-parse-base): Fix parsing error.
2588
2589         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
2590
2591         * shr.el (shr-parse-base): New function.
2592         (shr-expand-url): Use it to expand relative URLs reliably.
2593
2594 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
2595
2596         * auth-source.el (auth-source-search-collection): Fix docstring.
2597         (auth-source-netrc-parse): Refactor and improve netrc parser to support
2598         single-quoted strings and multiline entries.
2599         (auth-source-netrc-parse-next-interesting)
2600         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
2601         functions to support parser.
2602
2603 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2604
2605         * eww.el (eww-submit): Get submit button logic right when hitting RET
2606         on non-submit buttons.
2607
2608         * shr.el: Remove shr-preliminary-table-render, since that can't really
2609         be used for anything in practice.
2610
2611 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
2612
2613         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
2614         (sieve-manage-quit).
2615
2616 2013-06-14  Glenn Morris  <rgm@gnu.org>
2617
2618         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
2619
2620 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
2621
2622         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
2623         control the maximum size of photo ID image.
2624         (mml2015-epg-key-image-to-string): Respect it.
2625
2626 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2627
2628         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
2629         instead of the final one so that we can more easily distinguish them.
2630
2631         * eww.el (eww-submit): Compute the submission URL correctly.
2632
2633 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2634
2635         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
2636         Use plist-get rather than CL's getf.
2637         (sieve-manage-parse-capability): Avoid CL's remove-if.
2638
2639 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
2640
2641         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
2642         (sieve-manage-quit).
2643
2644 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2645
2646         * shr.el (shr-expand-url): Expansion should chop off the bits after the
2647         last slash.
2648
2649         * eww.el (eww-tag-select): Use the first value as the default value.
2650
2651 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
2652
2653         * eww.el (eww): Prepend urls with http:// if scheme is missing.
2654         (eww-mode): Use `define-derived-mode'.
2655         (eww-parse-headers): Parse headers from beginning of buffer so that
2656         file:// links work.
2657
2658 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2659
2660         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
2661
2662 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2663
2664         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
2665         to handle them at all.
2666
2667 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2668
2669         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
2670         work, too.
2671         (eww-tag-select): Implement <select>.
2672
2673 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
2674
2675         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
2676         stream managing functions by using open-protocol-stream to do most of
2677         the work.  Has the nice benefit of enabling STARTTLS.
2678         Wait for capabilities after STARTTLS: following RFC5804, the server
2679         sends new capabilities after successfully establishing a TLS connection
2680         with the client.  The client should update the cached list of
2681         capabilities, but we just ignore the answer for now.
2682         (sieve-manage-network-p, sieve-manage-network-open)
2683         (sieve-manage-starttls-p, sieve-manage-starttls-open)
2684         (sieve-manage-forward, sieve-manage-streams)
2685         (sieve-manage-stream-alist): Remove unneeded functions neither in the
2686         API, nor called by any other function.
2687         Enable Multibyte for SieveManage buffers: The parser won't properly
2688         handle umlauts and line endings unless multibyte is turned on in the
2689         process buffer.
2690
2691 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2692
2693         * eww.el (eww-tag-input): Support password fields.
2694         (eww-submit): Support POST.
2695
2696 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2697
2698         * eww.el (eww-tag-form): Protect against degenerate forms.
2699
2700         * shr.el (shr-expand-url): Expand URLs that start with a slash
2701         correctly.
2702
2703         * eww.el (eww-submit): Get submit button logic right.
2704
2705         * shr.el (shr-final-table-render): New variable to signal when we're
2706         doing the final table rendering so that we can collect more data at
2707         that point.
2708
2709         * eww.el (eww-submit): Make form submission work.
2710         (eww-tag-input): Implement submit buttons.
2711         (eww-click-radio): Implement radio and checkboxes.
2712         (eww-submit): Handle hidden elements.
2713
2714         * shr.el (shr-descend): Allow other packages to override (or provide)
2715         rendering of elements.
2716         (shr-expand-url): Strip query strings from URLs before expanding them.
2717
2718         * eww.el: Don't require cl-lib.
2719         (eww-tag-form): Start form support.
2720
2721         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
2722
2723         * eww.el: Start writing a new, tiny web browser.
2724         (eww-previous-url): New command.
2725         (eww-quit): New command.
2726
2727 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
2728
2729         * sieve.el: Put point at beginning of buffer when viewing a script.
2730         (sieve-open-server): Respect the PORT parameter.  Show the correct port
2731         number in sieve-buffer's header.  Fixed code to also work with a string
2732         as port specifier.  Properly close the connection on pressing 'q'.  Make
2733         sieve-manage-quit close the connection and process buffer.  Also, remove
2734         duplicate keybinding for 'q'.
2735
2736 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
2737
2738         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
2739         make it easier to read.
2740         (mm-pkcs7-enveloped-magic): Ditto.
2741
2742 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
2743
2744         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
2745         before `image-type-available-p' to avoid loading the image libraries
2746         needlessly.
2747
2748 2013-06-05  David Engster  <deng@randomsample.de>
2749
2750         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
2751         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
2752         to see whether the group was synced before.
2753
2754 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
2755
2756         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
2757         when opening the connection.
2758         Suggested by João Távora <joaotavora@gmail.com> in
2759         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
2760
2761 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2762
2763         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
2764         assume Date header begins with "Date", that may be customized into
2765         something like "X-Sent" using gnus-article-time-format.
2766         (article-transform-date): Allow multi-line Date header.
2767
2768 2013-06-02  David Engster  <deng@randomsample.de>
2769
2770         * registry.el (initialize-instance, registry-lookup)
2771         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
2772         (registry-lookup-secondary-value, registry-search, registry-delete)
2773         (registry-insert, registry-reindex, registry-size, registry-prune): Do
2774         not wrap methods in `eval-and-compile'.  This breaks due to latest
2775         changes in EIEIO (introduction of eieio-core.el).
2776
2777 2013-05-30  Glenn Morris  <rgm@gnu.org>
2778
2779         * nnmail.el (nnmail-fancy-expiry-target):
2780         Also bind mail-dont-reply-to-names.
2781
2782         * spam-stat.el (spam-stat-save):
2783         No need to tweak font-lock in temp buffers.
2784
2785         * shr.el (shr-put-image): Silence compiler.
2786
2787 2013-05-29  Glenn Morris  <rgm@gnu.org>
2788
2789         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
2790
2791         * gnus-group.el (gnus-sequence-of-unread-articles)
2792         (gnus-summary-add-mark, gnus-mark-article-as-read)
2793         (gnus-group-make-articles-read): Declare.
2794
2795         * gnus-sum.el (gnus-parameter-list-identifier)
2796         (gnus-article-stop-animations, gnus-stop-downloads)
2797         (gnus-article-only-boring-p, article-goto-body)
2798         (gnus-flush-original-article-buffer, article-narrow-to-head)
2799         (gnus-article-hidden-text-p, gnus-delete-wash-type)
2800         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
2801
2802         * gnus.el: No need to eval-and-compile autoloads.
2803
2804         * gravatar.el (help-function-arglist): Autoload.
2805
2806         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
2807
2808         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
2809
2810         * spam.el: No need to load spam-report when compiling.
2811         No need to eval-and-compile autoloads.
2812         (spam-report-resend-to): Declare.
2813         (spam-report-resend-register-routine): Require 'spam-report.
2814
2815 2013-05-24  Julien Danjou  <julien@danjou.info>
2816
2817         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
2818         setup.
2819
2820 2013-05-23  Glenn Morris  <rgm@gnu.org>
2821
2822         * gnus-util.el (rmail-swap-buffers-maybe)
2823         (rmail-maybe-set-message-counters, rmail-count-new-messages)
2824         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
2825         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
2826
2827         * mm-decode.el: No need to load term when compiling.
2828         (term-mode, term-char-mode): Declare.
2829
2830         * mm-util.el: No need to load jka-compr when compiling.
2831         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
2832
2833         * nnmaildir.el: Require is automatically eval-and-compile.
2834         (nnmail): Require at run-time too.
2835
2836         * registry.el (registry-size): Move definition before use.
2837
2838 2013-05-22  Daiki Ueno  <ueno@gnu.org>
2839
2840         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
2841         signed data to conform the standard.  (Bug#14232)
2842
2843 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
2844
2845         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
2846         double angle quotation mark.
2847
2848 2013-05-20  Glenn Morris  <rgm@gnu.org>
2849
2850         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
2851
2852 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
2853
2854         * message.el (message-insert-formatted-citation-line): handle finding
2855         first/lastname when more than 2 names appear.
2856
2857 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
2858
2859         * shr.el (shr-tag-span): New function.
2860
2861 2013-05-18  Glenn Morris  <rgm@gnu.org>
2862
2863         * message.el (message-mode): Use message-mode-abbrev-table,
2864         with text-mode-abbrev-table as parent.  (Bug#14413)
2865
2866 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2867
2868         * message.el (message-expand-group): Decode group names.
2869
2870 2013-05-16  Julien Danjou  <julien@danjou.info>
2871
2872         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
2873         app-icon.
2874
2875 2013-05-15  Glenn Morris  <rgm@gnu.org>
2876
2877         * shr-color.el (shr-color-visible-luminance-min)
2878         (shr-color-visible-distance-min): Use shr-color group.
2879
2880 2013-05-11  Glenn Morris  <rgm@gnu.org>
2881
2882         * gnus-vm.el: Make it loadable without VM.
2883         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
2884         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
2885
2886 2013-05-09  Glenn Morris  <rgm@gnu.org>
2887
2888         * mml1991.el: Make it loadable.  (Bug#13456)
2889
2890         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
2891         * gnus-async.el (gnus-async-post-fetch-function):
2892         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
2893         * gnus-html.el (gnus-html-image-cache-ttl):
2894         * gnus-notifications.el (gnus-notifications-timeout):
2895         * gnus-picon.el (gnus-picon-properties):
2896         * gnus-util.el (gnus-completion-styles):
2897         * gnus.el (gnus-other-frame-resume-function):
2898         * message.el (message-user-organization-file)
2899         (message-cite-reply-position):
2900         * nnir.el (nnir-summary-line-format)
2901         (nnir-retrieve-headers-override-function):
2902         * shr-color.el (shr-color-visible-luminance-min):
2903         * shr.el (shr-blocked-images):
2904         * spam-report.el (spam-report-resend-to):
2905         * spam.el (spam-summary-exit-behavior): Fix custom types.
2906
2907         * gnus-salt.el (gnus-selected-tree-face): Fix default.
2908
2909 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2910
2911         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
2912         because of let-binding help-xref-following.  (Bug#14356)
2913
2914 2013-05-06  Glenn Morris  <rgm@gnu.org>
2915
2916         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
2917
2918 2013-05-04  Andrew Cohen  <cohen@bu.edu>
2919
2920         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
2921         entering into the registry.
2922
2923 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2924
2925         * gnus.el: Ma Gnus v0.7 is released.
2926
2927 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2928
2929         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
2930         (Bug#14304)
2931
2932 2013-04-27  Glenn Morris  <rgm@gnu.org>
2933
2934         * gnus.el (gnus-list-debbugs):
2935         Use require rather than autoload.  (Bug#14262)
2936
2937 2013-04-27  Julien Danjou  <julien@danjou.info>
2938
2939         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
2940         port to "sieve" now that it has an official IANA port assigned.
2941
2942 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2943
2944         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
2945         Don't set the MAILHOST environment variable permanently (Bug#14271).
2946
2947 2013-04-26  Glenn Morris  <rgm@gnu.org>
2948
2949         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
2950
2951 2013-04-25  Andrew Cohen  <cohen@bu.edu>
2952
2953         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
2954         string values of 'gcc-self.  Thanks to Saroj Thirumalai.
2955
2956 2013-04-24  Andrew Cohen  <cohen@bu.edu>
2957
2958         * nnir.el (nnir-close-group): Make sure we are in the right group.
2959
2960         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
2961         dependency table from all newly retrieved headers.
2962
2963 2013-04-16  David Edmondson  <dme@dme.org>
2964
2965         Support <img src="data:...">.
2966
2967         * shr.el (shr-image-from-data): New function.
2968         (shr-tag-img): Use it.
2969
2970 2013-04-14  Andrew Cohen  <cohen@bu.edu>
2971
2972         * nnir.el (nnir-request-set-mark): Make sure we are in the right
2973         group.
2974
2975 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2976
2977         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
2978         corresponding to any existing group (Bug#14166).
2979
2980 2013-04-10  Andrew Cohen  <cohen@bu.edu>
2981
2982         * nnir.el (number-sequence): No longer used.
2983         (nnir-request-set-mark): New function.
2984         (nnir-request-update-info): Improve marks updating.
2985         (nnir-request-scan): Don't duplicate marks updating.
2986         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
2987         Use 'assq rather than 'assoc.  Quote anonymous function.
2988         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
2989         Use 'gnus-group-prefixed-p.
2990         (gnus-summary-create-nnir-group): Make sure server for method is open.
2991
2992 2013-04-04  Andrew Cohen  <cohen@bu.edu>
2993
2994         * nnir.el (gnus-nnir-group-p): New function.
2995         (nnir-possibly-change-group): Use it.
2996
2997         * gnus-msg.el (gnus-setup-message): Use it.
2998
2999 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3000
3001         * mml.el (mml-minibuffer-read-description): Use `default' insted of
3002         `initial-input' for the argument name.
3003         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
3004
3005 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
3006
3007         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
3008         (used by MH-E).
3009
3010 2013-04-01  Andrew Cohen  <cohen@bu.edu>
3011
3012         * nnir.el (nnir-request-update-mark): Improve mark updating in original
3013         group.
3014
3015         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
3016         fix compilation.
3017
3018 2013-03-31  Andrew Cohen  <cohen@bu.edu>
3019
3020         * nnir.el (nnir-method-default-engines): And another typo.
3021
3022 2013-03-30  Andrew Cohen  <cohen@bu.edu>
3023
3024         * nnir.el (nnir-method-default-engines): Fix typo.
3025
3026 2013-03-29  Andrew Cohen  <cohen@bu.edu>
3027
3028         * nnir.el: Define 'number-sequence for xemacs.
3029         (gnus-summary-create-nnir-group): New function to create an nnir group
3030         from an nnir summary buffer based on the current query.
3031         (nnir-request-create-group): Update to allow nnir group creation based
3032         on the current query.
3033
3034 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3035
3036         * nndraft.el (nndraft-request-expire-articles):
3037         Make expiry target always `delete'.
3038
3039 2013-03-27  Andrew Cohen  <cohen@bu.edu>
3040
3041         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
3042         buffer use the posting-style and gcc of the original article group.
3043         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
3044
3045         * nnir.el: Fix byte-compile warning.  nnoo-define-skeleton should come
3046         after other deffoos.
3047
3048 2013-03-25  Andrew Cohen  <cohen@bu.edu>
3049
3050         * nnir.el: Major rewrite.  Cleaner separation between searches and group
3051         management.  Marks are now shown in nnir summary buffers.  Rudimentary
3052         support for real (i.e. not ephemeral) nnir groups.
3053         (gnus-summary-make-nnir-group): New function for initiating searches
3054         from a summary buffer.
3055
3056 2013-03-18  Sam Steingold  <sds@gnu.org>
3057
3058         * message.el (message-bury): Minor cleanup.
3059
3060 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
3061
3062         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
3063
3064 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3065
3066         * nndir.el (nndir-request-list): Remove 2nd argument passed to
3067         nnml-request-list.  (Bug#13873)
3068         (nndir-request-newsgroups): Remove, unused.
3069
3070         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
3071
3072 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
3073
3074         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
3075         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
3076         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
3077
3078 2013-03-03  Ted Phelps  <phelps@gnusto.com>
3079
3080         * shr.el: Make all the overlays set the `evaporate' property so that
3081         they're removed properly.
3082
3083 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
3084
3085         * mml2015.el (mml2015-epg-key-image): Wrap epg-gpg-program in
3086         shell-quote-argument.
3087
3088 2013-02-22  David Engster  <deng@randomsample.de>
3089
3090         * gnus-registry.el (gnus-registry-save): Provide class name when
3091         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
3092         `condition-case' to stay compatible with older EIEIO versions which
3093         only accept one argument.
3094
3095 2013-02-17  Daiki Ueno  <ueno@gnu.org>
3096
3097         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
3098         (epg-user-id-validity): Autoload.
3099         (mml2015-epg-check-user-id): New function.
3100         (mml2015-epg-check-sub-key): New function split from
3101         mml2015-epg-find-usable-key.
3102         (mml2015-epg-find-usable-key): Accept context, name, usage, and
3103         optional name-is-key-id, to handle the case when user-id is unusable.
3104         Reported by Łukasz Stelmach <stlman@poczta.fm>.
3105
3106 2013-02-17  Glenn Morris  <rgm@gnu.org>
3107
3108         * shr.el (shr-put-image): Use image-multi-frame-p if available.
3109
3110 2013-02-16  Glenn Morris  <rgm@gnu.org>
3111
3112         * shr.el (shr-put-image): Only animate images that specify a delay.
3113         This is consistent with the old image-animated-p behavior.
3114
3115 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3116
3117         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
3118         for XEmacs.
3119
3120 2013-02-13  Juri Linkov  <juri@jurta.org>
3121
3122         * gnus-art.el (gnus-article-mode-map):
3123         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
3124         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
3125
3126 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
3127
3128         * auth-source.el (auth-source-format-prompt): Don't get confused by
3129         any "\" in replacement text.  (Bug#13637)
3130
3131 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
3132
3133         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
3134         (gnus-backend-trace): Honour gnus-backend-trace.
3135
3136         * mml.el (mml-insert-part): Insert closing tag.
3137
3138         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
3139
3140 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3141
3142         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
3143         able to find the article, which can happen in debbugs groups,
3144         apparently.
3145
3146 2013-01-16  Glenn Morris  <rgm@gnu.org>
3147
3148         * smiley.el (smiley-style): Make the file loadable in batch mode.
3149
3150 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3151
3152         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
3153         imap process running.
3154
3155 2013-01-14  Julien Danjou  <julien@danjou.info>
3156
3157         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
3158         Compare addresses against addresses, not against the full From field.
3159
3160 2013-01-13  Richard Stallman  <rms@gnu.org>
3161
3162         * message.el (message-forward-make-body-mime): New args BEG, END
3163         specify what part of FORWARD-BUFFER to use.  Do the work directly
3164         instead of calling `mml-insert-buffer'.
3165
3166 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
3167
3168         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
3169         cross-reference(s).
3170
3171         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
3172         cross-reference(s).
3173
3174 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
3175
3176         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
3177         and point-max-marker.
3178         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
3179
3180 2013-01-11  Julien Danjou  <julien@danjou.info>
3181
3182         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
3183         max are almost equal.  Also return the correct value for V which is
3184         already between 0 and 1.
3185
3186 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
3187
3188         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
3189         to mml2015-encrypt-to-self.
3190         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
3191
3192 2013-01-09  Daiki Ueno  <ueno@gnu.org>
3193
3194         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
3195         mml-smime-epg-find-usable-secret-key.
3196
3197 2013-01-08  Glenn Morris  <rgm@gnu.org>
3198
3199         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
3200
3201 2013-01-07  Daiki Ueno  <ueno@gnu.org>
3202
3203         * mml-smime.el: Support signing by sender.
3204         Requested by Uwe Brauer.
3205         (mml-smime-sign-with-sender): New user option analogous
3206         to mml2015-sign-with-sender.
3207         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
3208         (mml-smime-epg-find-usable-secret-key): New helper function copied from
3209         mml2015.el.
3210
3211 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3212
3213         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
3214         isn't running, because Gnus will probably not know how to handle the
3215         Gcc header (bug#11941).
3216
3217         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
3218         articles.
3219
3220 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3221
3222         * nnfolder.el (nnfolder-recursive-directory-files): New function.
3223         (nnfolder-generate-active-file): Make this function work with recursive
3224         folder names.
3225
3226 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
3227
3228         * nntp.el (nntp-open-connection): Use HELP as the capability command
3229         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
3230         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
3231
3232 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
3233
3234         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
3235         place holder since this gives `Invalid face reference: nil' messages.
3236         Use the `default' face instead.  It has the same effect here, even
3237         though it is not no-op.
3238
3239         * gnus-util.el
3240         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
3241
3242 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
3243
3244         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
3245         non-string posting styles (bug#13285).
3246
3247 2012-12-27  Glenn Morris  <rgm@gnu.org>
3248
3249         * plstore.el (plstore-passphrase-callback-function):
3250         Use plstore-get-file.
3251
3252 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
3253
3254         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
3255         stderr.
3256
3257 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3258
3259         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
3260
3261         * gnus-compat.el (set-buffer-multibyte): Remove.
3262
3263 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
3264
3265         * mml2015.el (mml2015-epg-key-image): Use --attribute-fd rather than
3266         temporary file to get PGP key image.  Pass no-show-photos when
3267         extracting image to avoid having it pop up twice.
3268
3269 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
3270
3271         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
3272         eligible for treatment.
3273
3274         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
3275         lines.  This makes summary commands with hidden threads work more
3276         reliably.
3277
3278         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
3279         button to mark the hidden citations (bug#9395).
3280
3281 2012-12-26  Daiki Ueno  <ueno@gnu.org>
3282
3283         * mml2015.el (mml2015-epg-signature-to-string): New function.
3284         (mml2015-epg-verify-result-to-string): New function.
3285         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
3286         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
3287         instead of epg-verify-result-to-string.
3288         (epg-signature-key-id, epg-signature-to-string): Autoload.
3289         (epg-verify-result-to-string): Remove autoload.
3290
3291 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
3292
3293         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
3294         ID image from GPG public key.
3295         (mml2015-epg-key-image-to-string): New function.
3296
3297 2012-12-25  Leo Liu  <sdl.web@gmail.com>
3298
3299         * plstore.el (plstore-passphrase-callback-function): Fix error when
3300         error when plstore-cache-passphrase-for-symmetric-encryption is set
3301         (bug#13264).
3302
3303 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
3304
3305         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
3306         buffer to the article buffer here, because that clobbers multiple
3307         article buffers.
3308
3309         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
3310         buffer always points to the right summary buffer.
3311
3312 2012-12-25  John Wiegley  <jwiegley@gmail.com>
3313
3314         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
3315         the password (bug#12097).
3316
3317 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
3318
3319         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
3320         (bug#13263).
3321
3322         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
3323         buffer exists before using it (bug#12475).
3324
3325         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
3326         offline groups (bug#11937).
3327
3328         * message.el (message-yank-original): When using customize to set the
3329         value of `message-cite-style', the variable it set to a symbol that's
3330         the name of the variable, which must then be dereferenced (bug#12616).
3331
3332 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
3333
3334         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
3335         the `face' property with a list whose car is the face specified in the
3336         format string and whose cdr is (nil).
3337         * lisp/gnus-util.el
3338         (gnus-put-text-property-excluding-characters-with-faces):
3339         Change accordingly.
3340         (gnus-get-text-property-excluding-characters-with-faces): New function.
3341         * lisp/gnus-sum.el (gnus-summary-highlight-line):
3342         * lisp/gnus-salt.el (gnus-tree-highlight-node):
3343         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
3344
3345 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
3346
3347         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
3348         login methods.
3349         (nnimap-login): Respect the `nnimap-authenticator' variable.
3350
3351         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
3352         mark state when moving articles.  Otherwise unticked articles will get
3353         their ticks back after moving.
3354
3355 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
3356
3357         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
3358
3359         * message.el (message-ignored-news-headers): Always remove
3360         X-Message-SMTP-Method to avoid information leakage if the user
3361         mistakenly inserts the header into news messages.
3362
3363         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
3364
3365         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
3366         right than four characters, this command would move point to
3367         `point-max'.  Don't do that.
3368
3369         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
3370         to nil to allow re-selecting groups that gain articles.
3371         (gnus-bug-group-download-format-alist): Update the URL.
3372
3373 2012-12-23  Andreas Schwab  <schwab@suse.de>
3374
3375         * shr.el (shr-tag-em): Render em as italic, not bold.
3376
3377 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
3378
3379         * gnus-int.el (gnus-backend-trace): Factor out into its own function
3380         for reuse.
3381         (gnus-open-server): Use it to add more tracing.
3382         (gnus-finish-retrieve-group-infos): Add backend tracing.
3383         (gnus-backend-trace): Also note the elapsed seconds.
3384
3385 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
3386
3387         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
3388         Set epa-file-encrypt-to from variable to avoid querying.
3389
3390 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
3391
3392         * sieve-mode.el (sieve-font-lock-keywords):
3393         Keywords should be word delimited.  (Bug#13173)
3394
3395 2012-12-13  Andreas Schwab  <schwab@suse.de>
3396
3397         * tls.el (tls-program): Update customize type.
3398
3399 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3400
3401         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
3402         instead of <pre> to align message header.
3403
3404 2012-12-12  Sam Steingold  <sds@gnu.org>
3405
3406         * gnus.el (gnus-other-frame-resume-function): Add user option.
3407         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
3408
3409 2012-12-06  Sam Steingold  <sds@gnu.org>
3410
3411         * gnus-start.el (gnus-before-resume-hook): Add.
3412         (gnus-1): Run it when Gnus is alive.
3413
3414 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3415
3416         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
3417         * gnus-art.el (article-unsplit-urls)
3418         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
3419         * gnus-registry.el (gnus-registry-get-article-marks)
3420         * message.el (message-goto-body): Use it.
3421         (message-called-interactively-p): Remove.
3422
3423         * spam-stat.el (spam-stat-called-interactively-p): New macro.
3424         (spam-stat-score-buffer): Use it.
3425
3426         * spam.el: Silence the warnings against BBDB functions when compiling.
3427
3428         * gnus-score.el (gnus-score-decode-text-parts):
3429         Use append+mapcar instead of the cl function mapcan.
3430
3431 2012-12-05  Sam Steingold  <sds@gnu.org>
3432
3433         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
3434         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
3435         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
3436
3437 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3438
3439         * gmm-utils.el (gmm-called-interactively-p): Revert.
3440         This seems to cause Emacs to get stuck!
3441         * gnus-art.el (article-unsplit-urls)
3442         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
3443         * gnus-registry.el (gnus-registry-get-article-marks)
3444         * message.el (message-goto-body)
3445         (message-called-interactively-p): Revert.
3446
3447         * gmm-utils.el (gmm-called-interactively-p): New function.
3448         * gnus-art.el (article-unsplit-urls)
3449         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
3450         * gnus-registry.el (gnus-registry-get-article-marks)
3451         * message.el (message-goto-body): Use it.
3452         (message-called-interactively-p): Remove.
3453
3454         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
3455         * gnus-sync.el (gnus-sync-lesync-call)
3456         * message.el (message-read-from-minibuffer): Use it.
3457
3458 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3459
3460         * gmm-utils.el (gmm-flet): Remove.
3461         * gnus-sync.el (gnus-sync-lesync-call)
3462         * message.el (message-read-from-minibuffer): Don't use it.
3463
3464 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3465
3466         * gmm-utils.el (gmm-labels): Use cl-labels if available.
3467
3468 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3469
3470         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
3471
3472         * gnus-sync.el (gnus-sync-lesync-call)
3473         * message.el (message-read-from-minibuffer): Use gmm-flet.
3474
3475         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
3476
3477         * gnus-util.el (gnus-macroexpand-all): Remove.
3478
3479 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
3480
3481         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
3482         to TAB, not [tab].
3483         (gnus-summary-article-map): Likewise.
3484
3485         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
3486         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
3487
3488 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
3489
3490         * time-date.el: Commentary fix.
3491
3492 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3493
3494         * color.el: Don't require cl.
3495         (color-complement): `caddr' -> `nth 2'.
3496
3497         * time-date.el (time-to-seconds): De-obsolete.
3498
3499 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3500
3501         * message.el (message-get-reply-headers):
3502         Make sure the reply goes to the author if it is a wide reply.
3503
3504 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
3505
3506         * gnus-score.el (gnus-score-body):
3507         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
3508         scoring by body.
3509
3510 2012-11-16  Glenn Morris  <rgm@gnu.org>
3511
3512         * gnus-diary.el (nndiary-request-create-group-functions)
3513         (nndiary-request-update-info-functions)
3514         (gnus-subscribe-newsgroup-functions)
3515         (nndiary-request-accept-article-functions):
3516         Use new names for hooks rather than obsolete aliases.
3517
3518 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3519
3520         * dgnushack.el (define-obsolete-variable-alias): Simplify.
3521
3522 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3523
3524         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
3525         in meta tag with the one the part specifies in its header.
3526
3527 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
3528
3529         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
3530         by default.
3531
3532 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3533
3534         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
3535         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
3536
3537 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3538
3539         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
3540         and a runtime function for it, of which the XEmacs version takes only
3541         two arguments.
3542
3543 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3544
3545         * nndiary.el (nndiary-request-create-group-functions)
3546         (nndiary-request-update-info-functions)
3547         (nndiary-request-accept-article-functions):
3548         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
3549         "-hooks" suffix.
3550
3551 2012-10-19  Julien Danjou  <julien@danjou.info>
3552
3553         * gnus-art.el: Require gnus-util because it uses
3554         `gnus-timer--function'.
3555
3556 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
3557
3558         * starttls.el (starttls-extra-arguments): Doc fix.
3559
3560 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3561
3562         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
3563         it.
3564
3565 2012-10-06  Glenn Morris  <rgm@gnu.org>
3566
3567         * gnus-notifications.el (gnus-notifications):
3568         Add missing group :version tag.
3569         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
3570         (gnus-gcc-post-body-encode-hook):
3571         * gnus-sync.el (gnus-sync-lesync-name)
3572         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
3573
3574 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
3575
3576         * color.el (color-hsl-to-rgb): Fix incorrect results for
3577         small and large hue values.  (Bug#12559)
3578
3579 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3580
3581         New UIDL implementation.
3582
3583         * mail-source.el (mail-sources, mail-source-keyword-map):
3584         Add :leave as a pop3 keyword.
3585         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
3586
3587         * pop3.el (pop3-leave-mail-on-server): Allow number.
3588         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
3589         (pop3-movemail): Add UIDL support.
3590         (pop3-send-streaming-command): Take a list of mail numbers instead of
3591         the number of mails.
3592         (pop3-write-to-file): Add X-UIDL header.
3593         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
3594         (pop3-uidl-add-xheader): New functions.
3595
3596         * message.el (message-ignored-resent-headers):
3597         Add X-Content-Length and X-UIDL headers.
3598
3599 2012-10-05  Glenn Morris  <rgm@gnu.org>
3600
3601         * color.el (color-name-to-rgb, color-rgb-to-hex)
3602         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
3603         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
3604         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
3605         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
3606
3607 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3608
3609         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
3610         a user about whether to delete temp files if once a user answered as n.
3611
3612 2012-09-25  Chong Yidong  <cyd@gnu.org>
3613
3614         * password-cache.el (password-read-and-add): Use a declare form to mark
3615         this function obsolete.
3616
3617 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3618
3619         * lpath.el: Bind mail-encode-mml for old Emacsen.
3620
3621 2012-09-17  Richard Stallman  <rms@gnu.org>
3622
3623         * message.el (message-in-body-p): Don't set mark or modify buffer.
3624
3625         * mml.el (mml-attach-file): Doc fix.
3626         (mml-attach-external, mml-attach-buffer, mml-attach-file):
3627         Set mail-encode-mml when in Mail mode.
3628         Simplify code to set HEAD and move back to HEAD.
3629         (mml-insert-multipart, mml-insert-part):
3630         Set mail-encode-mml when in Mail mode.
3631
3632 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3633
3634         * gnus-util.el (gnus-timer--function): New function.
3635
3636         * gnus-art.el (gnus-article-stop-animations): Use it.
3637
3638 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3639
3640         Fix glitches caused by addition of psec to timers.
3641         * gnus-art.el (gnus-article-stop-animations): Use timer--function
3642         rather than raw access to timer vector.
3643
3644 2012-09-11  Julien Danjou  <julien@danjou.info>
3645
3646         * gnus-notifications.el (gnus-notifications): Check for nil values in
3647         ignored addresses check.
3648
3649 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3650
3651         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
3652
3653 2012-09-07  Chong Yidong  <cyd@gnu.org>
3654
3655         * gnus-util.el
3656         (gnus-put-text-property-excluding-characters-with-faces): Restore.
3657
3658         * gnus-salt.el (gnus-tree-highlight-node):
3659         * gnus-sum.el (gnus-summary-highlight-line):
3660         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
3661
3662 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
3663
3664         * gnus-util.el: Fix compilation error on XEmacs 21.4.
3665
3666 2012-09-06  Juri Linkov  <juri@jurta.org>
3667
3668         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
3669         scheme for buffer names to be more consistent with other group and
3670         article buffer names in Gnus.
3671
3672 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
3673
3674         * gnus-util.el
3675         (gnus-put-text-property-excluding-characters-with-faces): Removed.
3676
3677         * gnus-compat.el: Define compat function `add-face' from Wolfgang
3678         Jenkner.
3679
3680         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
3681
3682         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
3683
3684         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
3685
3686 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3687
3688         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
3689         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
3690
3691         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
3692         string-prefix-p in Emacs >=23.2.
3693
3694         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
3695         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
3696         instead of string-match-p.
3697         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
3698
3699 2012-09-06  Kenichi Handa  <handa@gnu.org>
3700
3701         * qp.el (quoted-printable-decode-region): Fix previous change; handle
3702         lowercase a..f.
3703
3704 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
3705
3706         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
3707
3708 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
3709
3710         * nnimap.el (nnimap-request-move-article): Decode the group name when
3711         doing internal moves to avoid charset issues.
3712
3713         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
3714         TIME is set.
3715
3716 2012-09-05  Juri Linkov  <juri@jurta.org>
3717
3718         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
3719         than one group at a time (bug#11961).
3720
3721 2012-09-05  Julien Danjou  <julien@danjou.info>
3722
3723         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
3724         this hide the real reason with a message giving absolutely no hint.
3725
3726 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
3727
3728         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
3729         to the backend (bug#11804).
3730
3731         * message.el (message-insert-newsgroups): Don't insert newsgroup
3732         duplicates (bug#12275).
3733
3734 2012-09-05  John Wiegley  <johnw@newartisans.com>
3735
3736         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
3737         sieve rules.
3738
3739 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
3740
3741         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
3742         function.
3743
3744         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
3745
3746         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
3747
3748 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
3749
3750         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
3751         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
3752         This should make nnmaildir more usable with offlineimap.
3753
3754 2012-09-05  Julien Danjou  <julien@danjou.info>
3755
3756         * nnimap.el (nnimap-request-list): Revert change that made listing
3757         synchronous.
3758         (nnimap-get-responses): Restore.
3759
3760 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
3761
3762         * dgnushack.el: XEmacs 21.5 compilation fix.
3763
3764         * gnus-notifications.el (gnus-notifications-notify): Use it.
3765
3766         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
3767         warnings on XEmacs.
3768
3769 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3770
3771         Better seeds for (random).
3772         * gnus-sync.el (gnus-sync-lesync-setup):
3773         * message.el (message-canlock-generate, message-unique-id):
3774         Change (random t) to (random), now that the latter is more random.
3775
3776 2012-08-31  Dave Abrahams  <dave@boostpro.com>
3777
3778         * nnimap.el (nnimap-change-group): Document result value
3779
3780         * auth-source.el (auth-sources): Fix macos keychain access.
3781
3782         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
3783         allow the backend `request-head' function to determine the group
3784         name on its own.
3785         (gnus-request-expire-articles): Filter out negative article numbers
3786         during expiry (Bug#11980).
3787
3788         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
3789         O(N^2) to O(N).  This makes warping into huge groups tolerable.
3790
3791         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
3792         you've found the article when you haven't.
3793
3794         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
3795         that nnimap-change-group can return t.
3796
3797 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3798
3799         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
3800
3801 2012-08-30  Julien Danjou  <julien@danjou.info>
3802
3803         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
3804         `gnus-notifications-timeout'.
3805         (gnus-notifications-timeout): Add.
3806         (gnus-notifications-action): New function.
3807         (gnus-notifications-notify): Add :action using
3808         `gnus-notifications-action'.
3809         (gnus-notifications-id-to-msg): New variable.
3810         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
3811         notifications id to messages.
3812
3813 2012-08-30  Kenichi Handa  <handa@gnu.org>
3814
3815         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
3816         once.
3817
3818 2012-08-29  Julien Danjou  <julien@danjou.info>
3819
3820         * gnus-notifications.el: New file.
3821         (gnus-notifications-notify): New function.
3822         (gnus-notifications): Use `gnus-notifications-notify'.
3823
3824 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3825
3826         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
3827         transfer encoding first; bind gnus-newsgroup-charset to the charset
3828         that the article specifies (Bug#12209).
3829
3830 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3831
3832         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
3833         (gnus-group-customize-done): Encode values posting-style holds.
3834
3835         * gnus-msg.el (gnus-summary-resend-message)
3836         (gnus-configure-posting-styles): Decode values posting-style group
3837         parameter holds.
3838
3839 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3840
3841         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
3842         `name' and `address' in Resent-From header.
3843
3844 2012-08-14  Chong Yidong  <cyd@gnu.org>
3845
3846         * gnus-art.el (article-display-face): Handle failure in
3847         gnus-create-image (Bug#11802).
3848
3849 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3850
3851         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
3852         Use defsetf.
3853
3854 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
3855
3856         * auth-source.el (auth-source-plstore-search)
3857         (auth-source-secrets-search): Ignore :require and :type in search spec.
3858
3859 2012-08-06  Julien Danjou  <julien@danjou.info>
3860
3861         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
3862         `nnimap-request-move-article'.
3863
3864         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
3865         Remove autoload, already handled by gnus.el.
3866
3867         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
3868
3869         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
3870         supported by nnimap actually.  Reverts previous change.
3871
3872         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
3873         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
3874         to-buffer argument that is already supported.
3875
3876 2012-08-05  Julien Danjou  <julien@danjou.info>
3877
3878         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
3879         Add autoload.
3880
3881 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3882
3883         * gnus.el (gnus-valid-select-methods): Fix custom type.
3884
3885 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
3886
3887         * auth-source.el (auth-sources, auth-source-backend-parse)
3888         (auth-source-macos-keychain-search)
3889         (auth-source-macos-keychain-search-items)
3890         (auth-source-macos-keychain-result-append)
3891         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
3892         auth-source.el through the /usr/bin/security utility.
3893         (auth-sources): Fix syntax error.
3894         (auth-source-macos-keychain-result-append): Fix variable name.
3895         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
3896
3897 2012-07-27  Julien Danjou  <julien@danjou.info>
3898
3899         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
3900         Emacs < 24.1
3901
3902 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3903
3904         * message.el (message-kill-address): Don't kill last newline.
3905         (message-skip-to-next-address): Don't move to the next header.
3906         (message-fill-field-address): Work properly.
3907
3908 2012-07-25  Julien Danjou  <julien@danjou.info>
3909
3910         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
3911
3912 2012-07-24  Julien Danjou  <julien@danjou.info>
3913
3914         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
3915
3916         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
3917         (nntp-async-timer-handler): Remove, unused.
3918
3919         * nnimap.el (nnimap-get-responses): Remove, unused.
3920
3921         * nnheader.el (mail-header-set-extra): Remove, unused.
3922
3923         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
3924         unused.
3925
3926         * mm-view.el (mm-view-sound-file): Remove, unused.
3927
3928         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
3929         (mm-url-encode-multipart-form-data): Remove, unused.
3930
3931         * message.el (message-remove-signature, message-make-host-name)
3932         (message-fill-address): Remove, unused.
3933
3934         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
3935         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
3936         unused.
3937
3938         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
3939         (gnus-xmas-call-region): Remove, unused.
3940
3941         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
3942
3943         * gnus-util.el (gnus-extract-address-component-name)
3944         (gnus-extract-address-component-email, gnus-sortable-date)
3945         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
3946         (gnus-process-live-p): Remove, unused.
3947
3948         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
3949
3950         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
3951         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
3952         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
3953         function.
3954
3955         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
3956
3957         * gnus-score.el (gnus-summary-score-crossposting)
3958         (gnus-score-regexp-bad-p): Remove, unused.
3959
3960         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
3961
3962         * gnus-range.el (gnus-sublist-p): Remove, unused.
3963
3964         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
3965         unused.
3966
3967         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
3968
3969         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
3970         (gnus-request-associate-buffer): Remove, unused.
3971
3972         * gnus-group.el (gnus-group-set-method-info)
3973         (gnus-group-set-params-info): Remove, unused.
3974
3975         * gnus-fun.el (gnus-shell-command-to-string)
3976         (gnus-shell-command-on-region): Remove, unused.
3977
3978         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
3979
3980         * gnus-art.el (gnus-article-text-type-exists-p)
3981         (article-translate-characters, gnus-article-hide-text-of-type)
3982         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
3983         Remove, unused.
3984
3985 2012-07-22  Andrew Cohen  <cohen@bu.edu>
3986
3987         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
3988
3989 2012-07-21  Julien Danjou  <julien@danjou.info>
3990
3991         * message.el (message-dont-reply-to-names): Replace deprecated
3992         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
3993         (message-get-reply-headers): Ditto.
3994
3995 2012-07-18  Julien Danjou  <julien@danjou.info>
3996
3997         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
3998         `sieve-upload-and-kill'.
3999
4000         * sieve.el (sieve-bury-buffer): Remove function.
4001         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
4002         (sieve-upload-and-kill): New function, mapped to C-c C-c.
4003
4004 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
4005
4006         * shr.el (shr-expand-url): Handle URL starting with `//'.
4007
4008 2012-07-13  Chong Yidong  <cyd@gnu.org>
4009
4010         * smime.el (smime-certificate-info): Set buffer-read-only directly,
4011         instead of calling toggle-read-only with a (bogus) argument.
4012
4013 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
4014
4015         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
4016         of initial input when reading the author to restrict the summary to.
4017
4018 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4019
4020         * mm-decode.el (mm-shr):
4021         Allow overriding charset by mm-charset-override-alist.
4022
4023 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
4024
4025         * gnus-art.el (gnus-article-view-part):
4026         Toggle subparts of multipart/alternative part.
4027
4028 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4029
4030         * shr.el (shr-render-buffer): New command.
4031         (shr-visit-file): Use it.
4032
4033 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4034
4035         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
4036         Set no-byte-compile and no-update-autoloads.
4037
4038 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4039
4040         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
4041
4042 2012-06-25  Julien Danjou  <julien@danjou.info>
4043
4044         * nnimap.el (nnimap-request-articles-find-limit): Rename from
4045         `nnimap-request-move-articles-find-limit' since we do not use it only
4046         for move operations.
4047         (nnimap-request-accept-article): Use
4048         `nnimap-request-articles-find-limit' to limit search by message-id.
4049
4050 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
4051
4052         Support higher-resolution time stamps (Bug#9000).
4053
4054         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
4055         VARLIST.  It's optional, for backward compatibility.
4056         (encode-time-value): New optional arg PICO.  New type 3.
4057         (time-to-seconds) [!float-time]: Support the new picoseconds
4058         component if it's used.
4059         (seconds-to-time, time-subtract, time-add):
4060         Support ps-resolution time stamps as well.
4061
4062 2012-06-19  Julien Danjou  <julien@danjou.info>
4063
4064         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
4065
4066         * nnimap.el (nnimap-log-buffer): Check that
4067         `window-point-insertion-type' is boundp, since it's not available in
4068         XEmacs.
4069
4070 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
4071
4072         * nnimap.el (nnimap-log-buffer): Add this, setting
4073         `window-point-insertion-type' in the buffer to t.
4074         (nnimap-log-command): Use nnimap-log-buffer.
4075
4076 2012-06-19  Julien Danjou  <julien@danjou.info>
4077
4078         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
4079         argument to be able to limit the search.
4080         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
4081         (nnimap-request-move-articles-find-limit): Add this to limit the search
4082         by Message-Id after a message move.
4083         (nnimap): Add defgroup.
4084
4085 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
4086
4087         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
4088
4089 2012-06-15  Julien Danjou  <julien@danjou.info>
4090
4091         * nnimap.el (nnimap-find-article-by-message-id): Use
4092         `nnimap-possibly-change-group' rather than its own EXAMINE call.
4093         (nnimap-possibly-change-group): Add read-only argument.
4094         (nnimap-request-list): Use nnimap-possibly-change-group rather than
4095         issuing EXAMINE manually.
4096         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
4097         with read-only argument.
4098         (nnimap-change-group): Rename from `nnimap-possibly-change-group'.  We
4099         cannot possibly change because we need to be sure that it's either
4100         read-write or read-only.
4101
4102 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4103
4104         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
4105         being bound to a lambda form.
4106
4107 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
4108
4109         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
4110         articles when fetch-old is non-nil (bug#11370).
4111
4112 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
4113
4114         * gnus-picon.el (gnus-picon-properties): New defcustom.
4115         (gnus-picon-create-glyph): Use it.
4116
4117 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4118
4119         * gnus-group.el (gnus-group-get-new-news): Respect
4120         `gnus-group-use-permanent-levels', as documented (bug#11638).
4121
4122 2012-06-10  Dave Abrahams  <dave@boostpro.com>
4123
4124         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
4125         groups (bug#11641).
4126
4127 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
4128
4129         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
4130         is an integer to avoid later problems.
4131
4132 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4133
4134         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
4135         locales.
4136
4137         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
4138         on a handle.
4139
4140         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
4141         address as the default.
4142         (gnus-summary-insert-old-articles): Don't include unexisting messages.
4143
4144         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
4145         makes no sense to query the user about internal files.
4146
4147         * gnus-spec.el: Remove all the byte-compilation stuff, since
4148         benchmarking shows that it doesn't help when entering large summary
4149         buffers.
4150
4151         * gnus-xmas.el (gnus-xmas-define): Remove.
4152
4153         * gnus-util.el (gnus-byte-code): Remove.
4154
4155         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
4156         grouplens stuff.
4157
4158 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4159
4160         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
4161         (bug#11514).
4162
4163 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
4164
4165         * message.el (message-buffers): Return all buffers derived from Message
4166         to make `gnus-dired-attach' work with mu4e.
4167
4168 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4169
4170         * nntp.el: Stop the `letf' madness.
4171         (nntp--report-1): New var.
4172         (nntp-report): Merge nntp-report-1 into it.
4173         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
4174         the nntp-report function.
4175
4176         * auth-source.el: Fix comment-style to follow the convention.
4177
4178 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
4179
4180         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
4181         (mm-dissect-singlepart): Don't guess the MIME type of
4182         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
4183         set.
4184         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
4185         toplevel MIME type is multipart/encrypted.
4186
4187 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4188
4189         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
4190         a string so that Gcc works (bug#11514).
4191
4192 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4193
4194         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
4195         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
4196
4197 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4198
4199         * gnus-win.el (gnus-configure-frame): Don't signal an error when
4200         jumping to *Server* from a dedicated *Group* window.
4201         (gnus-configure-frame): CSE.
4202
4203         * gnus-registry.el: Minor style cleanup.
4204         (gnus-registry--set/remove-mark): New function, extracted from
4205         gnus-registry-install-shortcuts.
4206         (gnus-registry-install-shortcuts): Use it.
4207
4208 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4209
4210         * nnspool.el (news-path): Use eval-and-compile.
4211
4212 2012-05-24  Glenn Morris  <rgm@gnu.org>
4213
4214         * nnspool.el (news-directory, news-path, news-inews-program):
4215         Move here from paths.el.  Don't see a need for these to be autoloaded.
4216
4217         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
4218         Merge in doc from paths.el version.  Don't see any need for this to be
4219         autoloaded, or for the warning about users not setting it.
4220
4221 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
4222
4223         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
4224         format.  In particular, add an optional argument and a docstring.
4225
4226         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
4227
4228         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
4229         current before calling `gnus-groups-to-gnus-format'.
4230         Note that this was already the case for `gnus-active-to-gnus-format'.
4231
4232 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
4233
4234         Fix minor Y10k bug.
4235         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
4236
4237 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4238
4239         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
4240         message once it's actually open.
4241
4242 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4243
4244         * gnus.el: Ma Gnus v0.5 is released.
4245
4246 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4247
4248         * auth-source.el (auth-source--aput-1, auth-source--aput)
4249         (auth-source--aget): New functions and macros.
4250         Use them instead of aput/aget.
4251
4252 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
4253
4254         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
4255
4256 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
4257
4258         * plstore.el (plstore-called-interactively-p): New compat macro copied
4259         from message.el.
4260         (plstore-mode): Use it.
4261
4262 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
4263
4264         * plstore.el: Revive the editing feature.
4265         (plstore-mode): New mode to edit plstore file.
4266         (plstore-mode-toggle-display, plstore-mode-original)
4267         (plstore-mode-decoded): New command.
4268         (plstore--encode, plstore--decode, plstore--write-contents-functions)
4269         (plstore--insert-buffer, plstore--make): New function.
4270         (plstore-open, plstore-save): Simplify by using them.
4271
4272 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
4273
4274         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
4275
4276 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
4277
4278         * tls.el (open-tls-stream): Remove unused binding.
4279
4280 2012-04-16  Glenn Morris  <rgm@gnu.org>
4281
4282         * nndraft.el (nndraft-request-list): Fix declaration.
4283
4284 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4285
4286         * mm-decode.el (mm-dissect-buffer): Doc fix.
4287
4288         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
4289         don't have a current group.
4290
4291         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
4292         buffer if it doesn't exist.
4293
4294         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
4295         given, mark the group as ephemeral with the current window conf.
4296
4297         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
4298         buffer exists, which it doesn't if we haven't started Gnus.
4299         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
4300
4301 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4302
4303         * mml.el (mml-generate-mime): Allow specifying what the top-level part
4304         type is.
4305
4306         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
4307         `unexists' entries.
4308         (gnus-clean-old-newsrc): Fix last checkin.
4309
4310         * nnimap.el (nnimap-update-info): None of the articles below the active
4311         low-water mark exist.
4312
4313         * dgnushack.el: Get rid of XEmacs compilation warning.
4314
4315         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
4316         would have gotten if we posted to the group, and use that to compare
4317         against the message we want to cancel (bug#10808).
4318
4319         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
4320         on XEmacs.
4321
4322 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
4323
4324         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
4325         `scroll-margin'.
4326
4327 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
4328
4329         * gnus-cite.el (gnus-dissect-cited-text): A single line without
4330         citation prefix within a block of cited text should be considered part
4331         of that block *only* if it is a blank line.
4332
4333 2012-04-09  Chong Yidong  <cyd@gnu.org>
4334
4335         * binhex.el, hashcash.el, uudecode.el:
4336         Remove * characters from the front of variable docstrings.
4337
4338 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4339
4340         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
4341         before kinsoku-bol characters nor within kinsoku-eol characters.
4342
4343 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4344
4345         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
4346         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
4347         (gnus-sync-read): Use mapc instead of mapcar.
4348
4349         * mm-archive.el: Require mm-decode for some macros.
4350         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
4351         the byte compiler.
4352         (mm-archive-decoders): New function that returns the value of
4353         the mm-archive-decoders variable.
4354
4355         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
4356         instead.
4357         (mm-dissect-singlepart): Use the function mm-archive-decoders.
4358
4359         * nnimap.el (gnus-refer-thread-use-nnir):
4360         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
4361
4362 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4363
4364         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
4365
4366 2012-03-12  Peter Münster  <pmrb@free.fr>
4367
4368         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
4369         (gnus-demon-cancel): Ditto.
4370         (gnus-demon-run-callback): When function cannot be called due to low
4371         idleness, call it when idleness reaches the expected value, instead of
4372         waiting another timer period.
4373         (gnus-demon-init): Add `time' to arguments of call-back.
4374
4375 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4376
4377         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
4378
4379         * gnus.el: Register gnus-registry functions.
4380
4381         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
4382         indent.
4383
4384         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
4385         enabled before warping.
4386
4387 2012-03-22  Dave Abrahams  <dave@boostpro.com>
4388
4389         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
4390         registry about each article retrieved.
4391
4392         * gnus-int.el (gnus-select-group-with-message-id): New function.
4393         (gnus-try-warping-via-registry): Ditto.
4394         (gnus-warp-to-article): Fall back on the registry.
4395
4396 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
4397
4398         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
4399         inboxes.
4400
4401 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4402
4403         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
4404
4405 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4406
4407         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
4408         gnus-gcc-self-resent-messages may be a group parameter.
4409         (gnus-summary-resend-message): Don't encode encoded words in header
4410         when Gcc'ing resent message.
4411
4412 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4413
4414         * shr.el (shr-insert): Treat non-breaking space just like normal
4415         space.  This seems to produce more pleasing results.
4416         (shr-insert): Only insert a blank line if we're starting from an image.
4417         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
4418         (shr-ensure-paragraph): Consider lines with white space to be blank.
4419
4420 2012-03-15  Elias Pipping  <pipping@lavabit.com>
4421
4422         * Makefile.in: Respect DESTDIR.
4423
4424 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
4425
4426         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
4427         and gnus-gcc-post-body-encode-hook.
4428
4429 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4430
4431         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
4432         messages that don't exist.
4433
4434         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
4435
4436 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4437
4438         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
4439         Remove.
4440
4441         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
4442
4443         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
4444
4445 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4446
4447         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
4448         have a group name.
4449
4450         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
4451         a multibyte buffer (bug#7410).
4452         (article-wash-html): Parse the original article buffer to get the
4453         unencoded data (bug#7410).
4454
4455         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
4456         .newsrc.el files.
4457
4458 2012-04-05  Bastien Guerry  <bzg@altern.org>
4459
4460         * color.el (color-lighten-name): Fix typo.
4461
4462 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4463
4464         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
4465         "#" to avoid having them interpreted as comments.
4466
4467 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4468
4469         * shr.el (shr-insert): Update the text state properly to avoid
4470         inserting spurious paragraph starts.
4471
4472 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4473
4474         * shr.el (shr-table-widths): Divide the extra width more fairly over
4475         the TDs (bug#10973).
4476         (shr-render-td): Don't delete too much padding.
4477         (shr-natural-width): Compute the natural width more correctly.
4478         (shr-insert): Allow the natural width to be computed for tables again.
4479         (shr-tag-table-1): Rework how the natural widths are computed by
4480         rendering the table a third time.
4481         (shr-natural-width): Removed.
4482         (shr-buffer-width): New function.
4483         (shr-expand-newlines): Use it.
4484
4485         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
4486         using a `gnus-use-full-window' setup (bug#11013).
4487
4488 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4489
4490         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
4491         24.1 release.
4492
4493 2012-03-10  David Edmondson  <dme@dme.org>
4494
4495         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
4496         'Forwarded Message' header and the start of the message.
4497
4498 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4499
4500         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
4501         isn't running (bug#10897).
4502
4503 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4504
4505         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4506         This is inconsistent with all the other stream functions, which leave
4507         the setting up to the higher levels (if so wanted) (bug#10931).
4508
4509 2012-02-28  Glenn Morris  <rgm@gnu.org>
4510
4511         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
4512         mm-decode.el: Standardize possessive apostrophe usage.
4513
4514 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4515
4516         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
4517
4518 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
4519
4520         * parse-time.el (parse-time-string): Allow extractor to return nil.
4521
4522 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4523
4524         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
4525
4526 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
4527
4528         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
4529
4530 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
4531
4532         * mm-decode.el (mm-shr): Remove "soft hyphens".
4533
4534         * nnimap.el (nnimap-request-list): Return the group names encoded as
4535         utf8.  Otherwise non-European group names don't work.
4536         (nnimap-request-newgroups): Ditto.
4537
4538         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
4539         the default in `read-string' (bug#10757).
4540
4541         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
4542         topics (bug#10843).
4543
4544         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
4545         buffer.  Suggested by Herbert Valerio Riedel.
4546         (nnimap-request-move-article): Delete the message from the correct IMAP
4547         server.
4548
4549 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
4550
4551         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
4552         Reported by Peter Münster.
4553
4554 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
4555
4556         * shr.el (shr-image-fetched): Make sure we really kill the right
4557         buffer.
4558
4559 2012-02-16  Leo Liu  <sdl.web@gmail.com>
4560
4561         * gnus-start.el (gnus-1): Avoid duplicate entries.
4562
4563 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
4564
4565         * imap.el: Remove.
4566
4567         * nntp.el (nntp-coding-system-for-read): Remove.
4568         (nntp-coding-system-for-write): Ditto.
4569         (nntp-open-connection): Just use `binary' directly.
4570
4571         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
4572         Gnus 0.3.
4573
4574 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
4575
4576         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
4577         application/octet-stream parts really is.
4578
4579         * gnus-sum.el (gnus-propagate-marks): Remove.
4580
4581 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
4582
4583         * shr.el (shr-rescale-image): Undo previous change; see
4584         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
4585
4586 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4587
4588         * gnus.el: Ma Gnus v0.3 is released.
4589
4590 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
4591
4592         * gnus-sum.el (gnus-summary-local-variables): Make
4593         `gnus-newsgroup-unexist' into a local variable.
4594
4595 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
4596
4597         * registry.el (registry-usage-test, registry-persistence-test): Move to
4598         tests/gnustest-registry.el.
4599         (registry-make-testable-db, registry-match-test)
4600         (registry-instantiation-test): Move to tests/gnustest-registry.el.
4601
4602         * gnus-registry.el (gnus-registry-misc-test)
4603         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
4604
4605         * tests/gnustest-registry.el: New file with the registry and
4606         gnus-registry ERT tests.
4607
4608 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4609
4610         * gnus-msg.el (gnus-summary-resend-message): Make
4611         gnus-summary-resend-message-insert-gcc be last item in
4612         message-header-setup-hook.
4613
4614 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
4615
4616         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
4617         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
4618         Remove.
4619         (nnfolder-open-server): Don't use marks.
4620         (nnfolder-request-delete-group): Ditto.
4621         (nnfolder-request-rename-group): Ditto.
4622         (nnfolder-request-set-mark, nnfolder-request-marks)
4623         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
4624         (nnfolder-save-marks, nnfolder-open-marks): Remove.
4625
4626         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
4627         (nnml-marks-modtime): Remove.
4628         (nnml-request-delete-group): Don't use marks.
4629         (nnml-request-rename-group): Ditto.
4630         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
4631         (nnml-save-marks, nnml-open-marks): Remove.
4632
4633         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
4634         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
4635         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
4636         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
4637         (nntp-server-to-method-cache): Remove.
4638
4639         * shr.el (shr-rescale-image): Fix wrong merge.
4640
4641 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
4642
4643         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
4644         too-wide lines.
4645
4646 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
4647
4648         * nnimap.el (nnimap-record-commands): New variable.
4649         (nnimap-log-command): Use it.
4650         (nnimap-make-process-buffer): Add a space to the process buffer.
4651         (nnimap-transform-headers): Don't bug out on header lines containing
4652         stuff that look like IMAP length encodings.
4653
4654         * shr.el (shr-rescale-image): Allow viewing large images.
4655
4656 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
4657
4658         * nnml.el (nnml-request-compact-group): Delete the marks file after
4659         compaction (bug#10800).
4660
4661         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
4662         group exit.
4663
4664         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
4665         QRESYNC/FETCH output.
4666
4667 2012-02-11  Glenn Morris  <rgm@gnu.org>
4668
4669         * sieve-manage.el (sieve-manage-default-stream):
4670         * shr.el (shr):
4671         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
4672         (nnir-retrieve-headers-override-function)
4673         (nnir-imap-default-search-key, nnir-notmuch-program)
4674         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
4675         (nnir-method-default-engines):
4676         * message.el (message-cite-reply-position):
4677         * gssapi.el (gssapi-program):
4678         * gravatar.el (gravatar):
4679         * gnus-sum.el (gnus-refer-thread-use-nnir):
4680         * gnus-registry.el (gnus-registry-unfollowed-addresses)
4681         (gnus-registry-max-pruned-entries):
4682         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
4683         * gnus-int.el (gnus-after-set-mark-hook)
4684         (gnus-before-update-mark-hook):
4685         * gnus-async.el (gnus-async-post-fetch-function):
4686         * auth-source.el (auth-source-cache-expiry):
4687         Add missing :version tags to new defcustoms and defgroups.
4688
4689 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
4690
4691         * gnus-sum.el (gnus-adjust-marked-articles): Add to
4692         `gnus-newsgroup-unexist'.
4693
4694         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
4695         marks.
4696         (gnus-article-special-mark-lists): Put the `unexist' in the special
4697         marks list instead.
4698
4699         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
4700         articles in the list of articles to be selected.
4701
4702         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
4703         articles.
4704         (nnimap-update-info): Keep track of unexisting articles.
4705         (nnimap-update-qresync-info): Ditto.
4706
4707 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
4708
4709         * message.el (message-default-send-mail-function): Made into own
4710         function for reuse by emacsbug.el.
4711
4712 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
4713
4714         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
4715         `gnus-sloppily-equal-method-parameters' to avoid a warning.
4716
4717 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
4718
4719         * mm-archive.el (mm-archive-dissect-and-inline): New function.
4720         (mm-archive-dissect-and-inline): Fix up the undisplayer.
4721
4722         * gnus-compat.el: Define `timer-set-function'.
4723
4724         * mm-decode.el (mm-display-external): Output the text from the command
4725         in the buffer after the command finished.  This makes text-based
4726         commands behave better.
4727
4728 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
4729
4730         * gnus-compat.el: Add a compat for the old `url-retrieve'.
4731
4732 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4733
4734         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
4735         23.1.
4736
4737 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4738
4739         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
4740
4741 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4742
4743         * message.el (smtpmail-smtp-user): Silence compiler warning.
4744
4745 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4746
4747         * message.el (message-multi-smtp-send-mail): Also allow specifying the
4748         SMTP user name.
4749
4750 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4751
4752         * gnus-sum.el (gnus-summary-show-thread):
4753         next-single-char-property-change may return nil in XEmacs.
4754         (gnus-summary-article-map): Fix typo.
4755
4756 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
4757
4758         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
4759         running.
4760
4761         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
4762
4763         * gnus.el (gnus-server-extend-method): Don't add an -address component
4764         if the method already has one (bug#9676).
4765
4766 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
4767
4768         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
4769         of an initial-input for consistency (bug#10757).
4770
4771         * dgnushack.el: Fix XEmacs compilation warning.
4772
4773         * shr.el: Inhibit getting and sending cookies when fetching pictures.
4774
4775         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
4776
4777 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4778
4779         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
4780         lines that are narrower than the window width.  Otherwise background
4781         "blocks" will look less readable.
4782
4783 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4784
4785         * nnimap.el (nnimap-transform-headers): Remove unused variable.
4786         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
4787         have newlines within the strings, and where the UID comes after the
4788         BODYSTRUCTURE element (bug#10537).
4789
4790         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
4791         (bug#10732).
4792
4793         * shr.el (shr-insert-document): Add doc string.
4794         (shr-visit-file): Ditto.
4795         (shr-remove-trailing-whitespace): New function.
4796         (shr-insert-document): Use it to clean up trailing whitespace as the
4797         final step (bug#10714).
4798
4799 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4800
4801         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
4802         buffer if `gnus-kill-summary-on-exit' is nil.
4803
4804 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4805
4806         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
4807         when just reading a single group from "without" Gnus.
4808
4809 2012-02-06  Chong Yidong  <cyd@gnu.org>
4810
4811         * gnus-sum.el (gnus-summary-show-thread):
4812         next-single-char-property-change never returns nil (Bug#8657).
4813
4814 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
4815
4816         * message.el (message-multi-smtp-send-mail): New function.
4817         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
4818         header to implement multi-SMTP functionality.
4819
4820         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
4821         (gnus-agentize): Don't set it.
4822         (gnus-agent-send-mail): Don't use it.
4823
4824         * gnus-sum.el (gnus-summary-widget-backward): New function and
4825         keystroke.
4826
4827         * gnus-compat.el: More the compat functions more compatible.
4828
4829         * shr.el (shr-put-image): Remove underlines from sliced images.
4830         (shr-zoom-image): Compute the region to be replaced more correctly.
4831
4832 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4833
4834         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
4835         (gnus-summary-resend-message-insert-gcc): New function.
4836         (gnus-summary-resend-message): Modify message-header-setup-hook and
4837         message-sent-hook to make it work for Gcc.
4838         (gnus-inews-do-gcc): Update the number of unread articles of groups
4839         that messages are Gcc'd to.
4840
4841         * message.el (message-resend): Run message-sent-hook to do Gcc.
4842
4843 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
4844
4845         * lpath.el: Fix an XEmacs compilation warning.
4846
4847         * gnus-compat.el: Require `help-fns' to fix compilation error.
4848
4849         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
4850         a higher level to silence compilation.
4851
4852         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
4853         parameter to allow controlling the scaling.
4854
4855         * shr.el (shr-zoom-image): New command and keystroke.
4856         (shr-put-image): Take a `size' flag to say how to scale the image.
4857
4858         * gnus-compat.el: Redefine `delete-directory' to provide recursive
4859         deletion unless already defined.
4860
4861         * gnus.el (gnus-compat): Require it.
4862
4863         * gnus-compat.el: New file.
4864
4865         * gnus-start.el (gnus-clean-old-newsrc): New function.
4866         (gnus-read-newsrc-file): Use it.
4867
4868         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
4869         Use recursive deletion.
4870         (mm-dissect-archive): Add support for zip files.
4871
4872         * gnus-util.el (gnus-recursive-directory-files): New function.
4873
4874         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
4875         (mm-archive-decoders): Add tgz support.
4876
4877         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
4878         Otherwise inserting text into the Gnus buffer can look odd.
4879
4880         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
4881
4882         * mm-archive.el (mm-archive-decoders): Add support for tar.
4883
4884         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
4885
4886         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
4887
4888 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
4889
4890         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
4891
4892         * mm-archive.el: New file.
4893
4894         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
4895
4896         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
4897
4898         * message.el (message-goto-*): Make all the `message-goto-*' commands
4899         push the mark before moving point.  This makes it easier to go back to
4900         where you came from after editing whatever you jumped to.
4901
4902 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4903
4904         * gnus.el: Ma Gnus v0.1 is released.
4905
4906 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
4907
4908         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
4909         without reconnecting.
4910         (nnimap-possibly-change-group): Ditto.
4911         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
4912         connection has died before being called.
4913
4914 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
4915
4916         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
4917         an initial sync unless we're really doing one.
4918
4919         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
4920         address parameter if one already exists (bug#9676).
4921
4922         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
4923         not the prefix, as documented (bug#10689).
4924
4925 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
4926
4927         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
4928         the "server".
4929
4930         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
4931         the real error message with the useless "previously known to be down".
4932         Which isn't even correct.
4933
4934         * nntp.el (nntp-open-connection): Report the error message if the nntp
4935         server can't be reached.
4936
4937         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
4938         groups we do a total scan for.
4939         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
4940         doing that.
4941
4942 2012-01-31  Jim Meyering  <jim@meyering.net>
4943
4944         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
4945         Correct a comment (insert "not") and hide nominally-doubled "to".
4946
4947 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
4948
4949         * gnus.el (gnus-version): Change name to "Ma Gnus".
4950
4951 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
4952
4953         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
4954         section in the manual.
4955
4956 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
4957
4958         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
4959         words.
4960         (rfc2047-encode-string): Ditto.
4961         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
4962         understand folded filename="..." parameters, for instance.
4963
4964         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
4965         the message for greater debuggability.
4966
4967 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
4968
4969         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
4970         instead of setting it locally, since the latter doesn't seem to have
4971         any effect (most of the time).
4972
4973 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
4974
4975         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
4976         function call.
4977
4978 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
4979
4980         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
4981         seconds, and make the repeat clause with HH:MM specs work as
4982         documented.
4983
4984 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
4985
4986         * proto-stream.el (proto-stream-capability-open): Fall back on
4987         :end-of-command if :end-of-capability doesn't exist.
4988
4989 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4990
4991         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
4992         bound globally in old Emacsen and XEmacsen.
4993
4994 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
4995
4996         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
4997         so that previous errors don't prohibit getting new news.
4998
4999         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
5000
5001         * nntp.el (nntp-retrieve-group-data-early): Ditto.
5002
5003 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
5004
5005         * gnus.el (gnus-group-find-parameter): Check for liveness of the
5006         buffer, not of the string which is its name.
5007
5008 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
5009
5010         * proto-stream.el (proto-stream-capability-open): Wait for
5011         :end-of-capability, not :end-of-command.
5012
5013         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
5014         non-server-marks groups.
5015         (gnus-group-make-articles-read): Ditto.
5016
5017         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
5018         methods (bug#9676).
5019
5020         * gnus.el (gnus-method-ephemeral-p): New function.
5021
5022 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5023
5024         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
5025         left-to-right.
5026
5027 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
5028
5029         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
5030         warning.
5031
5032 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
5033
5034         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
5035         macroexpand the nnir things, since they haven't been defined yet, and
5036         nnir requires gnus-sum.
5037
5038 2012-01-24  Julien Danjou  <julien@danjou.info>
5039
5040         * color.el (color-rgb-to-hsl): Fix value computing.
5041         (color-hue-to-rgb): New function.
5042         (color-hsl-to-rgb): New function.
5043         (color-clamp, color-saturate-hsl, color-saturate-name)
5044         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5045         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5046
5047 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5048
5049         * mm-decode.el (mm-interactively-view-part): Fix prompt.
5050
5051 2012-01-19  Julien Danjou  <julien@danjou.info>
5052
5053         * color.el (color-name-to-rgb): Use the white color to find the max
5054         color component value and return correctly computed values.
5055         (color-name-to-rgb): Add missing float conversion for max value.
5056
5057 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
5058
5059         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
5060         logical server name in addition to the actual machine address.
5061
5062         * auth-source.el (auth-source-user-and-password): Add convenience
5063         wrapper to search by just host and optionally user.
5064
5065 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5066
5067         * shr.el (shr-visit-file): Move point to the beginning of the buffer
5068         after rendering.
5069
5070 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
5071
5072         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
5073         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
5074         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
5075
5076 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5077
5078         * gnus-sum.el (gnus-summary-read-group): Document more parameters
5079         (bug#9693).
5080         (gnus-summary-setup-buffer): Document return value (bug#9697).
5081
5082         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
5083         since ido doesn't work on symbols (bug#9632).
5084
5085         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
5086         when getting a single value as when getting all the values.  This means
5087         that atoms like `gcc-self' work cumulatively, like variable settings,
5088         instead of getting the value from the last matching clause.
5089         (gnus-group-find-parameter): Protect against the group buffer not
5090         existing (bug#9585).
5091
5092 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5093
5094         * gnus-start.el (gnus-activate-group): Document more parameters
5095         (bug#9694).
5096
5097         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
5098         (bug#9692).
5099
5100         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
5101         article was fetched, so that it can be expired later (bug#9958).
5102         (gnus-agent-summary-fetch-series): Add doc string.
5103         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
5104         (bug#9517).
5105
5106         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
5107         retrieval is happening.
5108
5109         * gnus.el (gnus-parameters): Doc fix.
5110
5111 2012-01-06  Dave Abrahams  <dave@boostpro.com>
5112
5113         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
5114         show the thread after expansion.
5115
5116 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5117
5118         * gnus-art.el (article-narrow-to-head): If the head is completely
5119         empty, narrow to the empty region (bug#9764).
5120
5121         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
5122         read, and then mark them as unread only when the unread mark is used.
5123         This makes `C-- T k' actually work, even though it's confusing.
5124
5125         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
5126         alive before we try to find its window.
5127
5128 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
5129
5130         * mm-decode.el (mm-display-external): Use a longer timeout for the
5131         deletion to allow slow programs to display the file.
5132
5133 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5134
5135         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
5136         prompt to be less confusing.
5137
5138         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
5139         argument to `message-reply'.  This broke `special-display-*' frame
5140         pop-uping (bug#10238).
5141
5142 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5143
5144         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
5145         systems, since these allegedly don't work there.
5146
5147 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
5148
5149         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
5150         live buffer.
5151
5152 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5153
5154         * nnir.el (nnir-retrieve-headers): Protect against the article not
5155         existing on the server (bug#10335).
5156
5157 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
5158
5159         * gnus-agent.el (gnus-agent-load-local): Recompute
5160         gnus-agent-article-local on changing method.
5161
5162 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5163
5164         * gnus.el (gnus-parameters): Note precedence.
5165
5166 2012-01-04  Leo Liu  <sdl.web@gmail.com>
5167
5168         * nndraft.el (nndraft-update-unread-articles): Don't move point around
5169         in the group buffer.
5170
5171 2012-01-04  Julien Danjou  <julien@danjou.info>
5172
5173         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
5174         change.
5175
5176 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5177
5178         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
5179         too.
5180
5181         * nntp.el (nntp-retrieve-group-data-early): Use it.
5182
5183 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5184
5185         * nntp.el (nntp-retrieval-in-progress): New variable.
5186         (nntp-make-process-buffer): Make it buffer-local.
5187
5188         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
5189         2010.
5190         (gnus-demon-init): Use it to compute the time if time is on the form
5191         "04:23".
5192
5193         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
5194
5195         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
5196         status in the correct buffer.
5197
5198 2012-01-03  Leo Liu  <sdl.web@gmail.com>
5199
5200         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
5201         when opening topics (bug#10407).
5202
5203 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
5204
5205         * gnus-cus.el (gnus-score-customize):
5206         * gnus-sum.el (gnus-sort-gathered-threads):
5207         * message.el (message-shorten-references):
5208         * nnmairix.el (nnmairix-request-group):
5209         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
5210
5211 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
5212
5213         * gnus-agent.el (gnus-agent-regenerate-group):
5214         * gnus-int.el (gnus-retrieve-group-data-early):
5215         * mm-util.el (mm-codepage-ibm-list):
5216         * nndiary.el (Commentary, nndiary-get-new-mail):
5217         * nnir.el (nnir):
5218         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
5219
5220 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5221
5222         * mm-view.el (mm-display-inline-fontify): Add comment.
5223
5224 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
5225
5226         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
5227         * ntlm.el (ntlm-smb-dohash): Spelling fix.
5228
5229 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
5230
5231         * gnus-art.el (gnus-split-methods):
5232         * gnus-msg.el (gnus-configure-posting-styles):
5233         * gnus-spec.el (gnus-parse-simple-format):
5234         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
5235         * message.el (message-do-actions): Spelling fix.
5236
5237 2011-12-15  Juri Linkov  <juri@jurta.org>
5238
5239         * mm-decode.el (mm-inline-media-tests): Add missing
5240         `mm-handle-media-subtype'.
5241
5242 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
5243
5244         * gnus-group.el (gnus-group-tool-bar):
5245         * gnus-sum.el (gnus-summary-tool-bar):
5246         * message.el (message-tool-bar):
5247         * rfc2231.el (rfc2231-parse-string): Spelling fix.
5248
5249 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
5250
5251         * plstore.el (plstore--insert-buffer): Spelling fix.
5252
5253 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
5254
5255         * message.el (message-valid-fqdn-regexp): Update with newly approved
5256         top-level domain names ".tel" and ".asia".
5257
5258 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5259
5260         * gnus-sum.el (gnus-summary-show-article): Don't load shr
5261         unconditionally.
5262
5263 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5264
5265         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
5266         pop-to-buffer-same-window for old Emacsen.
5267
5268 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
5269
5270         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
5271
5272 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
5273
5274         * netrc.el (netrc-credentials): Spelling fix.
5275
5276 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
5277
5278         * gnus-fun.el (gnus-fun-ppm-change-string):
5279         * gnus-msg.el (gnus-inews-do-gcc):
5280         * gnus-sum.el (gnus-summary-find-for-reselect):
5281         * gnus.el (gnus-summary-cancelled):
5282         * message.el (message-cancel-hook, message-send-news):
5283         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
5284         * nnir.el (nnir-run-hyrex):
5285         * nntp.el (nntp-with-open-group-function):
5286         * pgg.el (pgg-pending-timers): Spelling fix.
5287
5288 2011-12-04  Chong Yidong  <cyd@gnu.org>
5289
5290         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
5291         change (Bug#10200).
5292
5293 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5294
5295         * compface.el (uncompface):
5296         * gnus-art.el (gnus-article-x-face-command): Update the header format
5297         of icon data for the most recent icontopbm program.
5298
5299 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5300
5301         * gnus-msg.el (gnus-inews-do-gcc):
5302         * message.el (message-send-mail):
5303         * mml.el (mml-generate-mime): Share the value of the buffer-local
5304         `message-options' variable between a draft buffer and temprary working
5305         buffers.
5306
5307 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5308
5309         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
5310
5311 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5312
5313         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
5314         for Cygwin.
5315
5316 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
5317
5318         * gnus-group.el (gnus-group-prepare-flat):
5319         * mm-bodies.el (mm-encode-body):
5320         * mml.el (mml-preview):
5321         * nnml.el (nnml-request-compact-group):
5322         * pop3.el (pop3-stream-type): Spelling fix.
5323
5324 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
5325
5326         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
5327
5328 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
5329
5330         * color.el (color-rgb-to-hsl):
5331         * gmm-utils.el (gmm-tool-bar-style):
5332         * gnus-group.el (gnus-group-prepare-flat):
5333         * gnus-topic.el (gnus-topic-prepare-topic):
5334         * mm-decode.el (mm-discouraged-alternatives):
5335         * rfc2047.el (rfc2047-encode-1):
5336         * starttls.el: Spelling fix.
5337
5338 2011-11-24  Glenn Morris  <rgm@gnu.org>
5339
5340         * binhex.el (binhex-begin-line): Give it basic doc-string.
5341
5342         * starttls.el, tls.el: Fix case of "GnuTLS".
5343
5344 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
5345
5346         * gnus-group.el (gnus-group-highlight): Fix typo.
5347
5348 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
5349
5350         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
5351         value of `delete-file', that returns nil for a local file but returns t
5352         for a remote file using ssh.
5353
5354 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
5355
5356         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
5357
5358 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5359
5360         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
5361         avoid later breakage.
5362
5363 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5364
5365         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
5366         article buffers' name.
5367
5368 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5369
5370         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
5371         by Paul Eggert's spellfixes two days ago.
5372
5373 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5374
5375         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
5376         doesn't have it.
5377
5378         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
5379         buffer-local instead of binding them to avoid warnings.  Also demote
5380         errors (bug#10063).
5381         (font-lock-mode-hook): Shut up byte compiler.
5382
5383 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
5384
5385         * mm-util.el (mm-charset-after):
5386         * nnir.el (nnir-run-hyrex):
5387         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
5388         (ntlm-get-password-hashes, ntlm-md4hash):
5389         * smime.el: Fix typo.
5390
5391 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
5392
5393         * gnus-agent.el (gnus-agent-expire-group-1):
5394         * nndiary.el (nndiary-last-occurence):
5395         * nnimap.el (nnimap-request-set-mark):
5396         * nnmairix.el (nnmairix-only-use-registry):
5397         * gnus-group.el (gnus-group-prepare-flat):
5398         * gnus-sum.el (gnus-decode-encoded-word-methods):
5399         * message.el (message-wash-subject):
5400         * nntp.el (nntp-retrieve-headers-with-xover):
5401         * smime.el (smime-certificate-directory): Spelling fix.
5402
5403 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
5404
5405         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
5406
5407         * color.el:
5408         * gnus-agent.el (gnus-agent-possibly-alter-active):
5409         * gnus-dired.el (gnus-dired-print):
5410         * mail-parse.el:
5411         * nnmairix.el (nnmairix-request-group):
5412         * shr.el (shr-image-displayer):
5413         * sieve-manage.el:
5414         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
5415
5416 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
5417
5418         * gnus-sum.el (gnus-auto-select-subject):
5419         * spam-report.el (spam-report-resend): Spelling fix.
5420
5421 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
5422
5423         * gnus-agent.el (gnus-agent-get-undownloaded-list):
5424         * gnus-art.el (gnus-default-article-saver):
5425         * gnus-srvr.el (gnus-server-copy-server):
5426         * gnus.el (gnus-sloppily-equal-method-parameters):
5427         * html2text.el (html2text-format-tag-list):
5428         * message.el (message-narrow-to-head):
5429         * nndiary.el:
5430         * nnmairix.el (nnmairix-determine-original-group-from-registry):
5431         * sieve.el: Spelling fix.
5432
5433 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
5434
5435         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
5436         * gnus-sum.el (gnus-summary-make-menu-bar):
5437         * gnus-uu.el (gnus-uu-decode-postscript)
5438         (gnus-uu-decode-postscript-and-save):
5439         * mailcap.el (mailcap-print-command):
5440         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
5441         Fix typos.
5442
5443 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
5444
5445         * gnus-art.el (gnus-article-part-wrapper):
5446         * html2text.el (html2text-fix-paragraphs):
5447         * mm-decode.el (mm-image-fit-p):
5448         * rfc2047.el (rfc2047-encode-message-header):
5449         * shr-color.el (shr-color-visible-distance-min)
5450         (shr-color-relative-to-absolute, set-minimum-interval)
5451         (shr-color-visible): Fix typos.
5452
5453 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
5454
5455         * gmm-utils.el (gmm-tool-bar-item):
5456         * gnus-art.el (gnus-treat-body-boundary):
5457         * gnus-diary.el (gnus-user-format-function-d):
5458         * gnus-start.el (gnus-get-unread-articles):
5459         * pgg-gpg.el (pgg-gpg-update-agent):
5460         * smime.el (smime-cert-by-ldap-1): Spelling fix.
5461
5462 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
5463
5464         * gnus-topic.el (gnus-group-prepare-topics):
5465         * gnus-uu.el (gnus-extract-view):
5466         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
5467
5468 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
5469
5470         * spam.el: Move BBDB autoloads.
5471         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
5472         BBDB 2 and 3.
5473         (spam-check-BBDB): Use it.
5474         (spam-enter-ham-BBDB): Use it.
5475
5476 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
5477
5478         * smime.el (smime-draw-buffer): Spelling fix.
5479
5480 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
5481
5482         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
5483         for scanning exactly one level.
5484         * gnus-start.el (gnus-get-unread-articles): Ditto.
5485
5486 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5487
5488         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
5489         slightly clearer.
5490
5491 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
5492
5493         * gnus-sync.el: More commentary about setup.
5494
5495 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5496
5497         * message.el (message-send-and-exit): Document `arg'.
5498
5499 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5500
5501         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
5502
5503 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
5504
5505         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
5506
5507         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
5508         we don't use `bound-and-true-p'.
5509
5510 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
5511
5512         * gnus-util.el (gnus-bound-and-true-p): Remove.
5513         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
5514         * nnir.el: Use it.
5515         * nnmairix.el: Use it.
5516
5517 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5518
5519         * gnus-sync.el: Improve docs about CouchDB admins.
5520
5521         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
5522         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
5523         for reasons unknown.
5524         * nnir.el: Use it.
5525         * nnmairix.el: Use it.
5526
5527         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
5528         * nnir.el: Ditto.
5529         * nnmairix.el: Ditto.
5530
5531         * gnus-registry.el (gnus-registry-enabled): Default to nil.
5532
5533 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
5534
5535         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
5536         not needed.  Provide xmlplistread list function to produce XML plist
5537         output for non-Gnus LeSync clients.
5538
5539 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
5540
5541         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
5542
5543         * gnus-sync.el: Add LeSync synchronization backend and logic to read
5544         and save against it.  Group subscriptions, read marks, other marks,
5545         subscription levels, topic names, and topic offsets (the group's
5546         position within the topic) are saved.  This is an experimental backend
5547         and may change significantly.  Load json.el from the gnus-fallback-lib
5548         if it's not available otherwise.
5549         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
5550
5551 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5552
5553         * message.el (message-completion-function): Make sure
5554         message-tab-body-function is not attempted if one of
5555         message-completion-alist fails to find a completion (bug#9158).
5556
5557 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
5558
5559         * mml.el (mml-quote-region): Quote <#secure> tag.
5560         (mml-generate-mime-1): Unquote <#secure> tag.
5561
5562 2011-10-20  Chong Yidong  <cyd@gnu.org>
5563
5564         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
5565         calling a minor mode from Lisp with nil arg enables it, so we have to
5566         make the wording a bit ambiguous here).
5567
5568 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
5569
5570         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
5571         * nnir.el (nnir-mode): Use it.
5572         * nnmairix.el (nnmairix-determine-original-group-from-registry):
5573         Use it.
5574
5575         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
5576         * nnmairix.el (gnus-registry-enabled): Ditto.
5577
5578 2011-10-17  Dave Abrahams  <dave@boostpro.com>
5579
5580         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
5581         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
5582         only while we need to find out if it should be t or nil.
5583         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
5584         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
5585         the registry is installed.  Set it to nil when it's unloaded.
5586         (gnus-registry-install-p): Provide user guidance for the initial value
5587         of `gnus-registry-install' when it's 'ask, otherwise return its value.
5588         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
5589         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
5590         * nnmairix.el (nnmairix-determine-original-group-from-registry):
5591         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
5592         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
5593         `gnus-registry-install'.
5594
5595 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
5596
5597         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
5598         previous change.
5599         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
5600         primary key is marked as disabled.
5601
5602 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
5603
5604         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
5605         primary key is marked as disabled.
5606
5607 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
5608
5609         * html2text.el (html2text-clean-anchor): Check for quotes around
5610         `href' value.
5611
5612 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
5613
5614         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
5615         searching.  Drop `bbdb-cache'.
5616
5617 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5618
5619         * message.el (message-signed-or-encrypted-p): Exclude header when
5620         checking if there is signed or encrypted body in text/plain message.
5621
5622 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
5623
5624         * html2text.el (html2text-get-attr): Correctly handle attribute values
5625         containing "=".
5626
5627 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
5628
5629         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
5630         handle bindings.
5631
5632 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5633
5634         * gnus-win.el (gnus-configure-windows): Protect against reading
5635         ephemeral groups outside of Gnus.
5636
5637 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5638
5639         * shr.el (shr-tag-img): Don't get images displayed in tables.
5640
5641 2011-10-03  Glenn Morris  <rgm@gnu.org>
5642
5643         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
5644         the "maintainer" version of debbugs.gnu.org reports.
5645
5646 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5647
5648         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
5649         make asynchronous adjacent image insertion work better.
5650
5651 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
5652
5653         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
5654         documentation.
5655
5656 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5657
5658         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
5659         `gnus-asynchronous' isn't shadowed.
5660
5661 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5662
5663         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
5664
5665         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
5666         (nnimap-insert-partial-structure): The charset parameter isn't
5667         case-sensitive.
5668
5669         * nnheader.el (nnheader-message-maybe): New function.
5670
5671         * shr.el (shr-tag-table): Render totally broken tables better.
5672
5673         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
5674         computing the boundary.
5675
5676 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5677
5678         * pop3.el (pop3-number-of-responses): Remove.
5679         (pop3-wait-for-messages): Rewrite to take linear time instead of
5680         exponential time.
5681
5682 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5683
5684         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
5685         re-fetch images.
5686
5687         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
5688         re-fetch images when hitting `g' in Gnus.
5689
5690 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5691
5692         * mml.el (mml-inhibit-compute-boundary): New internal variable.
5693         (mml-compute-boundary): Don't check collision if it is non-nil.
5694         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
5695         before checking collision.
5696
5697 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5698
5699         * message.el (message-indent-citation): Really make sure there's a
5700         newline at the end.
5701
5702         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
5703         Fix suggested by John Wiegley.
5704
5705         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
5706
5707         * gnus-art.el (gnus-treat-hide-citation): Add doc.
5708
5709         * message.el (message-default-send-rename-function): Break out into its
5710         own function.
5711
5712         * ecomplete.el (ecomplete-display-matches): Revert patch since it
5713         doesn't work under XEmacs.
5714
5715         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
5716         of "imaps" to word around Windows problems.
5717         (nnimap-open-connection-1): Use it.
5718
5719         * message.el (message-indent-citation): Revert last change which made
5720         `F' not work.
5721
5722 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
5723
5724         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
5725         terminal as well.
5726
5727 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
5728
5729         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
5730         because it displays images using overlays that aren't easy to copy to
5731         the article buffer.
5732
5733 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
5734
5735         * message.el (message-indent-citation): Fix empty line removal at the
5736         end of the citation.
5737
5738 2011-09-20  Julien Danjou  <julien@danjou.info>
5739
5740         * auth-source.el (auth-source-netrc-create): Use default value for
5741         password if specified.  Evaluate default.
5742         (auth-source-plstore-create): Ditto.
5743         (auth-source-plstore-create, auth-source-netrc-create): Fix default
5744         value evaluation.
5745         (auth-source-netrc-create): Typo fix.
5746         (auth-source-plstore-create): Ditto.
5747
5748         * password-cache.el (password-cache-remove): Remove entries even if the
5749         value is nil, so that password with a nil value (negative caching) is
5750         possible to invalidate.
5751
5752         * auth-source.el (auth-source-format-cache-entry): New function.
5753
5754 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5755
5756         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
5757
5758 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5759
5760         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
5761
5762 2011-09-19  Julien Danjou  <julien@danjou.info>
5763
5764         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
5765         which work with things that are not ASCII.
5766
5767 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5768
5769         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
5770
5771 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5772
5773         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
5774         message level.
5775
5776 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5777
5778         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
5779
5780 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5781
5782         * gnus.el (gnus-interactive-exit): Update defcustom spec.
5783
5784 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5785
5786         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
5787         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
5788
5789 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
5790
5791         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
5792         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
5793         articles.
5794
5795 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
5796
5797         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
5798         (message-mail-other-window, message-mail-other-frame)
5799         (message-news-other-window, message-news-other-frame):
5800         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
5801         instead of setting buffer display varibles.
5802
5803 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5804
5805         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
5806
5807         * gnus-sum.el (gnus-fetch-headers): Bump message level.
5808
5809 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5810
5811         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
5812         duplicates" to a higher level.
5813
5814         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
5815         most egregious messages.
5816
5817 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5818
5819         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
5820
5821 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
5822
5823         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
5824         up the file (bug#9351).
5825
5826 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5827
5828         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
5829         it does with all other backends, but decode the names immediately after
5830         getting them.
5831
5832         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
5833         decoding nnimap groups.
5834
5835         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
5836         newsrc file.  It doesn't seem like an important optimization any more.
5837
5838 2011-09-10  Dave Abrahams  <dave@boostpro.com>
5839
5840         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
5841         overflows.
5842
5843 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5844
5845         * gnus.el (gnus-article-mark-lists): Remove `recent'.
5846         (gnus-interactive-exit): Extend to `quiet'.
5847
5848         * gnus-sum.el (gnus-offer-save-summaries): Use it.
5849
5850         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
5851         string.
5852
5853         * plstore.el (plstore--get-buffer): Silence compiler warnings by
5854         renaming function arguments from `this'.
5855
5856         * gnus-sum.el (gnus-newsgroup-recent): Remove.
5857
5858         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
5859         has been renamed.
5860         (gnus-lrm-string-p): Include RLM and PDF, too.
5861
5862         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
5863         (bug#9225).
5864
5865 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
5866
5867         Add autoload cookies for functions used by sendmail.el.
5868         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
5869
5870         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
5871
5872 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5873
5874         * gnus-art.el (article-date-ut): Work properly even when there are
5875         things like Date header in the body; work for forwarded parts.
5876
5877 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
5878
5879         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
5880         original-article-buffer.
5881
5882 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
5883
5884         * nnir.el (nnir-compose-result): Fix matching of server type.
5885         (nnir-run-swish++): Ditto.
5886         (nnir-run-namazu): Ditto.
5887         (nnir-run-notmuch): Ditto.
5888
5889 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5890
5891         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
5892         (bug#9405).
5893
5894         * gnus-score.el (gnus-summary-increase-score): Doc clarification
5895         (bug#9421).
5896
5897         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
5898         (bug#9425).
5899
5900         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
5901         thing (bug#9426).
5902
5903 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5904
5905         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
5906         the error message.
5907
5908 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
5909
5910         * message.el (message-setup-1): Return t (Bug#9392).
5911
5912 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
5913
5914         * gnus-sum.el: When adding article headers to a summary buffer also
5915         update gnus-newsgroup-articles (bug#9386).
5916
5917 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5918
5919         * auth-source.el: Autoload help-mode.
5920
5921 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5922
5923         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
5924         names.
5925
5926 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
5927
5928         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
5929         mm-replace-in-string for compatibility issues.
5930         * mml2015.el (mml2015-epg-verify): Ditto.
5931
5932 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5933
5934         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
5935
5936         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
5937
5938 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5939
5940         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
5941         continue on and do the clean-up phase (bug#9188).
5942
5943         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
5944         just ignore groups that can't be opened instead of erroring out
5945         (bug#9225).
5946
5947         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
5948         nil since some many people are fuddy-duddies.
5949
5950         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
5951         images.
5952
5953         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
5954         instead.
5955
5956         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
5957
5958         * gnus-util.el (gnus-process-live-p): Copy over compat function.
5959
5960         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
5961         processing.
5962
5963         * nntp.el (nntp-kill-buffer): Kill the process before killing the
5964         buffer to avoid warnings.
5965
5966 2011-08-20  Simon Josefsson  <simon@josefsson.org>
5967
5968         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
5969         specified to reduce precision.
5970
5971 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5972
5973         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
5974         bodystructures (bug#9314).
5975
5976 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5977
5978         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
5979         Make button keymap non-sticky after buttons.
5980
5981 2011-08-18  David Engster  <dengste@eml.cc>
5982
5983         * nnmairix.el (nnmairix-request-set-mark)
5984         (nnmairix-goto-original-article): Remove adding of article to registry,
5985         since `gnus-registry-add-group' isn't available anymore.
5986         (nnmairix-determine-original-group-from-registry):
5987         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
5988         available anymore.
5989
5990 2011-08-12  Simon Josefsson  <simon@josefsson.org>
5991
5992         * starttls.el (starttls-any-program-available): Define as obsolete
5993         function.
5994
5995 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5996
5997         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
5998         versions which Gnus use when appropriate.
5999
6000         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
6001         a pretty destructive command.
6002
6003         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
6004
6005 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6006
6007         * message.el (message-fix-before-sending): Make a different warning
6008         about NUL characters (bug#9270).
6009
6010         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
6011         from custom (bug#9260).
6012
6013         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
6014         things work in Emacs 22 and XEmacs, too.
6015
6016         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
6017         default From.
6018
6019         * gnus-spec.el (gnus-lrm-string-p): New macro.
6020         (gnus-lrm-string): New constant.
6021         (gnus-summary-line-format-spec): LRM-ify the from.
6022         (gnus-tilde-max-form): LRM-ify string chopping.
6023
6024         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
6025
6026         * message.el (message-is-yours-p): Allow disabling canlock checking
6027         (bug#9295).
6028         (message-shoot-gnksa-feet): Add `canlock-verify'.
6029         (message-auto-save-directory): Use ~/ as the auto-save directory if the
6030         message directory isn't writable (bug#9304).
6031
6032         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
6033         non-world-readable.
6034
6035 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6036
6037         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
6038         articles.
6039
6040 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
6041
6042         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
6043         copy-list.
6044
6045 2011-08-12  Sam Steingold  <sds@gnu.org>
6046
6047         * gnus-score.el (gnus-score-find-alist): Keep the score files already
6048         in the reverse order to avoid modifying the cache with `nreverse'.
6049         (gnus-all-score-files): Do not modify the value returned by
6050         `gnus-score-find-alist' because it lives in a cache variable.
6051         (gnus-current-home-score-file): No need to `nreverse' the return value
6052         of `gnus-score-find-alist', it is already in the correct order.
6053
6054 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
6055
6056         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
6057         type MESSAGE and subtype RFC822 is slightly different from those of
6058         type TEXT.
6059
6060 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
6061
6062         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
6063         This allows article-referral to work from an nnir group.
6064
6065 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
6066
6067         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
6068
6069 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
6070
6071         * mml1991.el (mml1991-epg-find-usable-key)
6072         (mml1991-epg-find-usable-secret-key): New function.
6073         (mml1991-epg-sign): Check if signing key is usable.
6074         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
6075
6076 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
6077
6078         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
6079         server-variables only.  This should fix a bug introduced with commit
6080         e1889675b7f4adf057833c5513c9374134c4e053.
6081         (nnir-run-query): 'nnir-search-engine should not be set from the global
6082         environment.
6083
6084 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
6085
6086         * nnir.el (nnir-search-thread): Position point on referring article
6087         line.
6088         (nnir-warp-to-article): Clean up summary buffers.
6089
6090         * nnimap.el (nnimap-request-thread): Whitespace fix.
6091
6092 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
6093
6094         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
6095
6096 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6097
6098         * starttls.el (starttls-available-p): Rename from
6099         `starttls-any-program-available' and changed return convention.
6100
6101 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
6102
6103         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
6104         `unix-sync' unless it's defined.
6105
6106 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
6107
6108         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
6109         `aref' for XEmacs compatibiltiy.
6110
6111 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6112
6113         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
6114
6115 2011-07-31  Dave Abrahams  <dave@boostpro.com>
6116
6117         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
6118         closures, quote the form properly (bug#9194).
6119
6120 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6121
6122         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
6123         (gnus-summary-insert-new-articles): Protect against servers that are
6124         down.
6125
6126 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
6127
6128         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
6129         in mm handle if none is specified.
6130
6131 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
6132
6133         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
6134
6135 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
6136
6137         * nnir.el (nnir-search-thread): New function to make an nnir group
6138         based on a thread query.
6139
6140         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
6141         of nnir in thread referral.
6142         (gnus-summary-refer-thread): Use it.
6143
6144         * nnimap.el (nnimap-request-thread): Use it.
6145
6146 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6147
6148         * shr.el (shr-tag-comment): Ignore HTML comments.
6149
6150 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
6151
6152         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
6153         argument.
6154         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
6155         Use `nnir-address' to handle server info rather than passing an arg.
6156
6157         * nnimap.el (nnimap-make-thread-query): New utility function to format
6158         an imap thread search query.
6159         (nnimap-request-thread): Use it.
6160
6161         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
6162         right select-method if we are not going back to the group buffer.
6163
6164 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6165
6166         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
6167         enter invalid buffer configurations into the quit form (bug#9107).
6168         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
6169         unplugged/plugged.
6170
6171         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
6172         keep track of which ones are unread (bug#9061).
6173
6174         * gnus.el (gnus-refer-article-method): Allow entering any sexp
6175         (bug#9055).
6176
6177         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
6178         (bug#9041).
6179
6180         * gnus-html.el (mm-util): Require (bug#9073).
6181
6182         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
6183         (gnus-summary-refer-thread): Use it to remove duplicates in the
6184         un-threaded view (bug#9053).
6185         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
6186
6187 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
6188
6189         * nnir.el (nnir-read-server-parm): Use default value from global
6190         variable.  Without this the default search engine parameters aren't
6191         used at all.
6192
6193 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6194
6195         * message.el (message-unique-id): Don't use the undocumented return
6196         value from (random t) (bug#9118).
6197
6198 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6199
6200         * message.el (message-auto-save-directory): If the ~/Mail directory
6201         doesn't exist, use ~ as the auto-save directory (bug#4432).
6202
6203         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
6204         hasn't already been started.
6205
6206 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6207
6208         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
6209
6210         * message.el (message-reply): Work around mysterious bug where
6211         `message-mode' seems to overwrite the locally bound `subject' variable.
6212
6213 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
6214
6215         * nnimap.el (nnimap-request-thread): Ensure search is performed in
6216         correct group.
6217
6218         * gnus-int.el (gnus-request-thread): Add group argument.
6219
6220         * gnus-sum.el (gnus-summary-refer-thread): Use it.
6221
6222 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6223
6224         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
6225
6226         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
6227         renamed to `debbugs-gnu-*'.
6228
6229 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
6230
6231         * plstore.el: Revert the editing feature since it is not urgent.
6232         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
6233         (plstore-mode-decoded): Remove.
6234
6235 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6236
6237         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
6238         isn't very interesting any more, and it leaks potentially secret data.
6239         (gnus-debug): Remove.
6240
6241         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
6242         use of :custom-show.
6243
6244 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
6245
6246         * plstore.el: Add documentation.
6247         (plstore-mode): New mode to edit plstore file.
6248         (plstore-mode-toggle-display, plstore-mode-original)
6249         (plstore-mode-decoded): New command.
6250         (plstore--encode, plstore--decode, plstore--write-contents-functions)
6251         (plstore--insert-buffer, plstore--make): New function.
6252         (plstore-open, plstore-save): Simplify by using them.
6253
6254 2011-07-06  Glenn Morris  <rgm@gnu.org>
6255
6256         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
6257
6258 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6259
6260         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
6261         no longer is much used.
6262         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
6263         Articles".
6264
6265 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
6266
6267         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
6268         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
6269         `notmuch' backend.
6270
6271 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6272
6273         * mm-decode.el (mm-text-html-renderer): Doc fix.
6274
6275         * gnus-msg.el (gnus-bug): Fix the MML tag.
6276
6277         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
6278
6279 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
6280
6281         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
6282         secondary methods if started with `gnus-no-server'.
6283
6284 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
6285
6286         * message.el (message-return-action): Fix typo in docstring.
6287
6288 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6289
6290         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
6291         bug reports at once.
6292
6293         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
6294
6295 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6296
6297         * nndraft.el: Require gnus-group.
6298         (nndraft-request-list): Declare.
6299
6300         * nndraft.el (nndraft-update-unread-articles): Don't show group having
6301         no unread article unless it matches gnus-permanently-visible-groups.
6302
6303         * nndraft.el (nndraft-update-unread-articles): New function.
6304         (nndraft-request-associate-buffer): Use it to update the number of
6305         unread articles for the nndraft groups in the group buffer when saving
6306         or killing a draft message.
6307
6308 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6309
6310         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
6311         systems to binary before writing and reading the mbox files.
6312
6313         * gnus.el (gnus-summary-line-format): Link to the info node for %U
6314         instead of trying to list them all (bug#8978).
6315
6316 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6317
6318         * pop3.el (pop3-open-server): Use :end-of-capability.
6319
6320 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6321
6322         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
6323         the id is always a number.
6324
6325         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
6326
6327         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
6328         debbugs mode, if possible.
6329
6330 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
6331
6332         * auth-source.el (auth-source-token-passphrase-callback-function):
6333         Reindent.
6334         (epg-context-operation): Remove unnecessary autoload.
6335
6336 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6337
6338         * gnus.el (gnus-list-debbugs): New command.
6339
6340         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
6341         mboxstat instead of the maintbox, since the stat seems to be fuller.
6342
6343         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
6344         summary buffers.
6345
6346         * message.el (message-get-reply-headers): Delete all duplicates,
6347         instead of the first.
6348         (message-get-reply-headers): Ensure that we have progress while
6349         deleting duplicates.
6350
6351         * gnus-msg.el (gnus-configure-posting-styles): Get the local
6352         gnus-posting-style value from the summary buffer to make it easier to
6353         make that a per-buffer conf.
6354
6355 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
6356
6357         * nnir.el (nnir-run-imap): Allow halting a search when an article is
6358         found by setting `shortcut' in 'query.
6359         (nnir-request-article): Use `shortcut' setting when requesting article
6360         by Message-ID.
6361
6362 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
6363
6364         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
6365         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
6366         Bring the pseudo-headers back too.
6367
6368 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6369
6370         * auth-source.el (auth-source-token-passphrase-callback-function):
6371         Simplify and remove EPA dependency.
6372
6373 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
6374
6375         * nnir.el (nnir-request-article): Fix error message text.
6376
6377 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6378
6379         * auth-source.el (plstore-delete): Autoload.
6380         (auth-source-plstore-search): Support delete operation.
6381         * plstore.el (plstore-delete): New function.
6382
6383 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6384
6385         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
6386         mark actually existing articles as unread rather than the ones that
6387         active asserts.
6388
6389 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6390
6391         * nntp.el (nntp-record-command):
6392         * gnus-util.el (gnus-message-with-timestamp-1):
6393         Use format-time-string rather than decoding time stamps by hand.
6394         This is simpler and insulates the code from potential changes to
6395         current-time format.
6396
6397 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6398
6399         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
6400
6401 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6402
6403         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
6404         (plstore-save): Support public key encryption.
6405         (plstore--init-from-buffer): New function.
6406         (plstore-open): Use it; fix error when opening a non-existent file.
6407         (plstore-revert): Use plstore--init-from-buffer.
6408
6409 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6410
6411         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
6412
6413 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6414
6415         * mml2015.el (mml2015-use): Replace string-match-p with string-match
6416         for old Emacsen.
6417
6418 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
6419
6420         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
6421         is not fully working.
6422
6423 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6424
6425         * dgnushack.el: Autoload sha1 on XEmacs.
6426
6427         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
6428         quit window configuration.
6429
6430         * auth-source.el (epg-context-set-passphrase-callback):
6431         Remove duplicate autoload.
6432
6433 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
6434
6435         * nnir.el (nnir-request-article): Allow requesting articles by
6436         Message-ID with nnimap.
6437
6438         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
6439         current server.
6440
6441 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
6442
6443         * auth-source.el: Autoload EPA/EPG functions.
6444         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
6445         changed when EPA/EPG is not available.
6446         (auth-source-backend): Rename "arg" member to "data".
6447         (auth-source-backend-parse, auth-source-plstore-search)
6448         (auth-source-plstore-create): Use it.
6449
6450 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
6451
6452         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
6453         `gnus-refer-article-methods'.
6454
6455 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
6456
6457         * auth-source.el: Require EPA and EPG.
6458         (auth-source-passphrase-alist): New variable.
6459         (auth-source-passphrase-callback-function)
6460         (auth-source-token-passphrase-callback-function): Callbacks for the
6461         netrc field encryption (GPG tokens).
6462         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
6463         Symmetric encryption and decryption of the netrc GPG tokens.
6464         (auth-source-netrc-normalize): Use them, simplifying the closure.
6465
6466 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6467
6468         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
6469         is available.
6470
6471 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6472
6473         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
6474         non-nil, and `nnimap-split-methods' is nil, use the former.
6475
6476 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
6477
6478         * plstore.el (plstore-revert): New function.
6479         (plstore-open): Use it; hide the buffer from user.
6480
6481 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
6482
6483         * auth-source.el (auth-source-backend): New member "arg".
6484         (auth-source-backend-parse): Handle new backend 'plstore.
6485         * plstore.el: New file.
6486
6487 2011-06-30  Glenn Morris  <rgm@gnu.org>
6488
6489         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
6490
6491 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6492
6493         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
6494         expiring articles to.
6495
6496         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
6497         variations as ASCII (bug#5458).
6498
6499 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6500
6501         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
6502
6503 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6504
6505         * message.el (message-point-in-header-p): Tweak the function to default
6506         to saying that we're not in the headers if there is no separator at
6507         all.  This makes it possible to use the Message version of `M-q' in
6508         buffers with no headers (bug#7987).
6509         (message-point-in-header-p): Fix last checkin to work with an empty
6510         mail-header-separator, too.
6511
6512         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
6513         again, save the choice via customize.
6514
6515 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6516
6517         * message.el (message-send-mail-function): Add `sendmail-query-once'.
6518
6519         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
6520         ended the connection, bail out before waiting infinitely on a new
6521         connection.
6522
6523 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
6524
6525         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
6526         reports.
6527
6528         * gnus.el (gnus-bug-package): Use "gnus."
6529         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
6530
6531 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6532
6533         * dgnushack.el: Make the timer warning go away on XEmacs.
6534
6535         * gnus-art.el (gnus-article-stop-animations): New function to stop any
6536         animations going on at article exit time.
6537
6538         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
6539         since removing it breaks people upgrading.
6540
6541         * shr.el (shr-put-image): Use the new interface for animating images.
6542         (shr-put-image): Animate for 60 seconds.
6543
6544         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
6545         avoid compiler warnings.
6546
6547         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
6548         error with `find-file-hooks' on Emacs 22.
6549         (with-auth-source-epa-overrides): Ugly hack to Wrap the
6550         `find-file-hook' things in `symbol-value' to avoid compilation warnings
6551         on all architectures.
6552
6553         * spam.el (spam-stat): Require in a normal fashion without binding
6554         `spam-stat-install-hooks' to avoid compilation warnings.
6555
6556         * spam-stat.el (spam-stat-install-hooks): Remove.
6557         (spam-stat-install-hooks): Don't run automatically.
6558
6559 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
6560
6561         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
6562         and keystroke.
6563
6564 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6565
6566         * auth-source.el (auth-source-netrc-cache): Move forward.
6567
6568 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6569
6570         * proto-stream.el (proto-stream-open-starttls): Use
6571         `gnutls-available-p' to see whether we have built-in support.
6572
6573         * auth-source.el (auth-source-netrc-create): Don't query the bits that
6574         we already know.
6575         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
6576         (auth-source-netrc-create): Don't prompt for the stuff we already know.
6577
6578 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6579
6580         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
6581         %S format, since that looks odd.
6582         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
6583         file, especially when saving.
6584
6585 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
6586
6587         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
6588         article found.
6589
6590 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
6591
6592         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
6593         `auth-source-save-secrets' with a more sensitive alist that can be
6594         configured per file.  Experimental, so defaults to 'never.
6595         (auth-source-netrc-create): Use it.  Still experimental code.
6596         (with-auth-source-epa-overrides): Use `find-file-hooks' if
6597         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
6598
6599 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
6600
6601         * auth-source.el (auth-source-save-secrets): New variable to control if
6602         secret tokens should be saved encrypted.
6603         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
6604         to `auth-source-netrc-normalize'.
6605         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
6606         on the EPA variables being defined.
6607         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
6608         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
6609         the lexical-let closure.
6610         (auth-source-netrc-create): Create "gpg:" tokens according to
6611         `auth-source-save-secrets'.
6612
6613 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6614
6615         * gnus-group.el (gnus-group-update-group): Add new argument
6616         `info-unchanged' that stops updating dribble buffer.
6617
6618         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
6619         deletes lines matching to it in dribble buffer.
6620
6621         * gnus-agent.el (gnus-agent-fetch-group-1):
6622         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
6623         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
6624         * gnus-start.el (gnus-group-change-level):
6625         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
6626
6627         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
6628         if newsgroup info is not changed.
6629
6630         * gnus-group.el (gnus-group-get-new-news-this-group):
6631         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
6632         Don't update dribble buffer.
6633
6634 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
6635
6636         * gnus-registry.el (gnus-registry-remove-ignored): New function to
6637         remove entries with groups we ignore.
6638
6639 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6640
6641         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
6642         the underline comes at the bottom.
6643
6644 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
6645
6646         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
6647         `gnus-registry-user-format-function-M' and declare the latter obsolete.
6648         (gnus-registry-article-marks-to-names): Rename from
6649         `gnus-registry-user-format-function-M2'.
6650
6651 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6652
6653         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
6654         ephemeral group.
6655
6656 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6657
6658         * shr.el (shr-browse-image): Copy the URL if called interactively.
6659
6660 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6661
6662         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
6663         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
6664         done, then unselected articles may be marked as read.
6665
6666         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
6667         since not doing this seems to lead to a race condition in pop3-logon.
6668
6669         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
6670         so that the call chain it correct when we call "upwards".
6671
6672         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
6673         in read-only groups.
6674
6675         * gnus-group.el (gnus-group-mark-article-read): Ditto.
6676
6677         * message.el (message-cite-reply-position): Doc string fix.
6678
6679         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
6680         avoid regexp overflow.
6681         (nnimap-transform-split-mail): Ditto.
6682
6683         * pop3.el (pop3-retr): Error out if the server closes the connection.
6684
6685 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6686
6687         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
6688         mm-with-unibyte-current-buffer.  The buffer should not contain any
6689         multibyte chars anyway at this stage.
6690
6691 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6692
6693         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
6694         at the end of lines.
6695
6696 2011-05-29  Julien Danjou  <julien@danjou.info>
6697
6698         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
6699
6700 2011-05-27  Glenn Morris  <rgm@gnu.org>
6701
6702         * gnus-group.el (gnus-bug-group-download-format-alist):
6703         Use the "maintainer" version of debian reports as well.
6704
6705 2011-05-26  Glenn Morris  <rgm@gnu.org>
6706
6707         * gnus-group.el (gnus-bug-group-download-format-alist):
6708         Use the "maintainer" version of debbugs.gnu.org reports.
6709
6710 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6711
6712         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
6713
6714 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6715
6716         * gnus-cus.el (gnus-agent-customize-category):
6717         * gnus-delay.el (gnus-delay-send-queue):
6718         * gnus.el (gnus-other-frame):
6719         Don't quote lambda expressions with `quote'.
6720
6721 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
6722
6723         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
6724         the thread moves us backwards and so we loop forever.
6725
6726 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6727
6728         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
6729         whitespace in base64 data lines.
6730
6731 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
6732
6733         * gnus-registry.el (gnus-registry-user-format-function-M):
6734         Use `mapconcat'.
6735         (gnus-registry-user-format-function-M2): Use to see the full text of
6736         the marks.  Make "," the mark text separator.
6737
6738         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
6739         authentication with auth-source.
6740
6741 2011-05-17  Glenn Morris  <rgm@gnu.org>
6742
6743         * gnus-group.el (gnus-import-other-newsrc-file):
6744         Use insert-file-contents.
6745
6746 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
6747
6748         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
6749         1000 iterations.
6750
6751 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6752
6753         * nntp.el (nntp-open-connection): Check if process-type is available.
6754
6755 2011-05-16  Julien Danjou  <julien@danjou.info>
6756
6757         * shr.el (shr-tag-del): Add support for del tag.
6758
6759 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6760
6761         * gnus-html.el (gnus-html-put-image): Register a displayer.
6762
6763         * shr.el (shr-image-displayer): Don't remove text props from alt text.
6764
6765 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
6766
6767         * registry.el (prune-factor): New initialization parameter defaulting
6768         to 0.1.
6769         (registry-prune-hard): Use it.
6770
6771         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
6772         0.1 expicitly.
6773
6774 2011-05-13  Glenn Morris  <rgm@gnu.org>
6775
6776         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
6777         is bound, since this function requires sendmail.
6778
6779 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
6780
6781         * registry.el (registry-usage-test): Disable pruning test.
6782
6783 2011-05-11  David Engster  <dengste@eml.cc>
6784
6785         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
6786         Bind set-network-process-option for XEmacs.
6787
6788 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
6789
6790         * registry.el (registry-prune-hard-candidates)
6791         (registry-prune-soft-candidates): Helper methods for registry pruning.
6792         (registry-prune): Use them.  Make the sort function optional.
6793
6794 2011-05-10  Jim Meyering  <meyering@redhat.com>
6795
6796         * shr.el (shr-colorize-region): Fix typo "on on -> on".
6797
6798 2011-05-10  Julien Danjou  <julien@danjou.info>
6799
6800         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
6801         symbol and not a list.
6802
6803 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6804
6805         * gnus-art.el (gnus-article-mode): Move binding of
6806         shr-put-image-function here from gnus-article-prepare-display.
6807
6808         * shr.el (shr-put-image-function): New variable.
6809         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
6810         (shr-put-image): Return scaled image.
6811
6812         * gnus-art.el (gnus-shr-put-image): New function.
6813         (gnus-article-prepare-display): Bind shr-put-image-function to it.
6814
6815         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
6816         original ones, as deletable.
6817
6818 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6819
6820         * nntp.el (nntp-open-connection): Set TCP keepalive option.
6821
6822 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
6823
6824         * registry.el (registry-full): Add convenience method.  Fix logic.
6825         (registry-insert): Use it.  Fix logic here too.
6826
6827         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
6828         `registry-prune' if `registry-full' returns t.
6829         (gnus-registry-handle-action)
6830         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
6831         (gnus-registry-usage-test): Use it.
6832
6833 2011-05-07  Julien Danjou  <julien@danjou.info>
6834
6835         * shr.el (shr-link): Make shr-link inherit from link by default.
6836
6837 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
6838
6839         * shr.el (shr-urlify, shr-link): Fix shr-link face.
6840
6841 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
6842
6843         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
6844         error out because the face is not a list.
6845
6846 2011-05-05  Glenn Morris  <rgm@gnu.org>
6847
6848         * proto-stream.el (gnutls-negotiate): Fix declarations.
6849
6850         * gnus-start.el (gnus-propagate-marks): Declare.
6851
6852 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
6853
6854         * registry.el (registry-reindex): Fix percentage message.
6855
6856         * proto-stream.el (network-stream-open-starttls): Adjust to call
6857         `gnutls-negotiate' with :process and :hostname arguments.
6858
6859 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
6860
6861         * shr.el: Add shr-link face for links.
6862         (shr-urlify): Use it.
6863
6864         * registry.el (registry-insert): Make error message more helpful.
6865
6866 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6867
6868         * gnus-html.el (gnus-html-schedule-image-fetching):
6869         Use url-queue-retrieve, if it exists.
6870
6871         * shr.el (shr-tag-img): Ditto.
6872
6873         * gnus.el: Autoload more gnus-agent functions.
6874
6875         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
6876         agent if we haven't already (bug#8502).
6877
6878         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
6879         into the Agent, too.
6880
6881         * gnus-agent.el (gnus-agent-store-article): New function.
6882
6883         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
6884         and moved from that file for reuse.
6885
6886         * pop3.el (pop3-open-server): Error messages are "-ERR".
6887
6888 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6889
6890         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
6891         (open-tls-stream): Remove superfluous tls/starttls autoloads.
6892
6893 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6894
6895         * gnus.el: No Gnus v0.17 is released.
6896
6897 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6898
6899         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
6900         buffer has moved to a different frame.
6901
6902 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6903
6904         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
6905         to get the conversion from unibyte to multibyte buffers to work on
6906         Emacs 22.
6907
6908         * nntp.el (nntp-request-article): Slight clean-up.
6909
6910 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6911
6912         * shr.el (shr-strike-through): New face.
6913         (shr-tag-s): Use it to provide <s> support.
6914         (shr-tag-s): Remove duplicate definition.
6915
6916 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
6917
6918         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
6919         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
6920
6921 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
6922
6923         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
6924         `gnutls-negotiate'.
6925         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
6926
6927 2011-04-23  Glenn Morris  <rgm@gnu.org>
6928
6929         * gnus-sum.el (gnus-extra-headers): Bump :version.
6930
6931 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6932
6933         * shr.el (shr-tag-sup): New function.
6934         (shr-tag-sub): Ditto.
6935
6936 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
6937
6938         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
6939         for the case where `gnus-registry-ignored-groups' is a list of lists,
6940         and don't call `gnus-parameter-registry-ignore' otherwise.
6941
6942 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
6943
6944         * nnimap.el (nnimap-user): New backend variable.
6945         (nnimap-open-connection-1): Use it.
6946         (nnimap-credentials): Accept user parameter so it's explicit what user
6947         name is desired.
6948
6949         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
6950         default.
6951
6952         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
6953         not gnus-registry.el.
6954
6955         * gnus-registry.el: Mention in comments how to modify
6956         `gnus-extra-headers' for proper recipient tracking and that it may
6957         already have To and Cc recently, which it does as of this commit.
6958         (gnus-registry-ignored-groups): Remove defcustom.
6959         Explain why in comments.
6960         (gnus-registry-action): Fix data-header reference to use the extra
6961         headers.  Explain in package commentary how to add To and Cc headers to
6962         the gnus-extra-headers.
6963         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
6964         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
6965         parameter list or a string list in `gnus-registry-ignored-groups'.
6966         Fix logic error.
6967
6968 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6969
6970         * shr.el (shr-expand-url): Protect against null urls.
6971
6972 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6973
6974         * shr.el (shr-base): New binding.
6975         (shr-tag-base): Keep track of <base>.
6976         (shr-expand-url): New function used throughout.
6977
6978 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
6979
6980         * gnus-registry.el
6981         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
6982         (gnus-registry-ignored-groups): New variable.
6983         (gnus-registry-ignore-group-p): Use it.
6984         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
6985         set the destination group to nil (same as delete) if it's ignored.
6986
6987 2011-04-20  David Engster  <dengste@eml.cc>
6988
6989         * tests/gnustest-nntp.el: New file for simple NNTP testing.
6990
6991         * Makefile.in (test-nntp): New rule.
6992         (check): Add it.
6993         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
6994
6995 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6996
6997         * gnus-registry.el (gnus-registry-action)
6998         (gnus-registry-fetch-header-fast):
6999         Don't use mail-header that looks an internal function of mailheader.el.
7000
7001 2011-04-19  Glenn Morris  <rgm@gnu.org>
7002
7003         * time-date.el (time-to-days): Remove unused local variables.
7004
7005 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7006
7007         * gnus-registry.el: Eliminate cl functions.
7008         (gnus-registry-sort-addresses): New function that replaces mapcan.
7009         (gnus-registry-action, gnus-registry-spool-action)
7010         (gnus-registry-split-fancy-with-parent)
7011         (gnus-registry-fetch-recipients-fast): Use it.
7012         (gnus-registry-import-eld): Replace delete* with dolist + delq.
7013
7014         * registry.el (initialize-instance, registry-lookup)
7015         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
7016         (registry-lookup-secondary-value, registry-search, registry-delete)
7017         (registry-insert, registry-reindex, registry-size, registry-prune):
7018         Use eval-and-compile.
7019
7020 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
7021
7022         * registry.el (registry-reindex): New method to recreate the secondary
7023         registry indices.
7024
7025         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
7026         tracked field changes.
7027         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
7028         (gnus-registry-action, gnus-registry-spool-action)
7029         (gnus-registry-handle-action)
7030         (gnus-registry--split-fancy-with-parent-internal)
7031         (gnus-registry-split-fancy-with-parent)
7032         (gnus-registry-register-message-ids): Add recipient tracking on spool,
7033         move, and delete actions, and for fancy splitting with parent.
7034         (gnus-registry-extract-addresses)
7035         (gnus-registry-fetch-recipients-fast)
7036         (gnus-registry-fetch-header-fast): Convenience functions.
7037         (gnus-registry-misc-test): ERT test of
7038         `gnus-registry-extract-addresses'.
7039
7040 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
7041
7042         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
7043         Track by subject first, then sender.
7044
7045 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7046
7047         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
7048
7049         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
7050         Lisp.
7051
7052         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
7053         (gnus-draft-send): Use it to avoid popping
7054         up frames from gnus-group-send-queue.
7055
7056 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
7057
7058         * gnus-registry.el: Updated gnus-registry docs.
7059
7060 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
7061
7062         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
7063         Fix logic bug.
7064         (gnus-registry-post-process-groups): Fix logging of no results and
7065         quote sender and subject.
7066
7067 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7068
7069         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
7070         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
7071         gnutls-cli are too slow to be done opportunistically.
7072
7073         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
7074         (gnus-read-active-for-groups): Don't try to finish getting stuff where
7075         we had no early-data returned.
7076         (gnus-get-unread-articles): Add a sanity check so that we don't issue
7077         two async commands to the same server at the same time.
7078
7079 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
7080
7081         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
7082
7083 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7084
7085         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
7086         "warning" level.
7087
7088         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
7089         (mm-url-insert-file-contents): Don't set the package names.
7090
7091 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
7092
7093         * gnus-registry.el (gnus-registry-action): Remove properties and
7094         simplify subject in `gnus-registry-handle-action'.
7095         (gnus-registry-spool-action): Get subject and sender from message if
7096         they are not passed in.
7097         (gnus-registry-handle-action): Remove properties and simplify subject
7098         consistently.
7099
7100 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7101
7102         * registry.el: Require CL before using defmacro*.
7103
7104 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7105
7106         * gnus-art.el (article-treat-date): Assume that
7107         gnus-article-date-headers may be a group parameter.
7108
7109 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
7110
7111         * gnus-registry.el (gnus-registry-handle-action): More debugging.
7112
7113         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
7114         interactively so the newsrc file can contain foreign groups too.
7115         Useful for debugging but not much for users.
7116
7117 2011-04-07  David Engster  <dengste@eml.cc>
7118
7119         * registry.el (registry-usage-test): Only do
7120         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
7121         lexical binding.
7122
7123 2011-04-07  David Engster  <dengste@eml.cc>
7124
7125         * Makefile.in (check, test-registry): New rules for test-suite.
7126
7127 2011-04-06  David Engster  <dengste@eml.cc>
7128
7129         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
7130         argument NOERROR for `require', since XEmacs 21.4 does not support it.
7131
7132 2011-04-06  David Engster  <dengste@eml.cc>
7133
7134         * registry.el (initialize-instance): Change :after to :AFTER to be
7135         compatible with old EIEIO version in XEmacs.
7136
7137 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
7138
7139         * gnus-registry.el (gnus-registry-post-process-groups)
7140         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
7141         and provide better messaging.
7142
7143 2011-04-06  David Engster  <dengste@eml.cc>
7144
7145         * Makefile.in (fail-on-warning): New rule to compile with warnings as
7146         errors.
7147
7148         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
7149         dgnushack-compile with error-on-warn enabled, and to signal an error if
7150         clean compilation failed.
7151         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
7152         with `byte-compile-error-on-warn'.  Return nil if errors occured.
7153
7154 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
7155
7156         * gnus-registry.el: Don't use ERT if it's not available.  Load it
7157         unconditionally anyway, discarding errors.
7158         (gnus-registry-delete-entries): New convenience function.
7159         (gnus-registry-import-eld): Import from old .eld registry.
7160
7161         * registry.el: Don't use ERT if it's not available.  Load it
7162         unconditionally anyway, discarding errors.
7163
7164         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
7165         version from the Claudio Bley GnuTLS patch (extra optional parameters
7166         and host name).
7167
7168 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
7169
7170         * gnus-registry.el (gnus-registry-fixup-registry): New function to
7171         fixup the parameters that can be customized by the user between
7172         save/read cycles.
7173         (gnus-registry-read): Use it.
7174         (gnus-registry-make-db): Use it.
7175         (gnus-registry-spool-action, gnus-registry-handle-action):
7176         Fix messaging.
7177         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
7178         Map references to actual group names with sender and subject tracking.
7179         (gnus-registry-post-process-groups): Use `cond' for better messaging.
7180         (gnus-registry-usage-test): Add subject lookup test.
7181
7182         * registry.el (registry-db, initialize-instance): Set up constructor
7183         instead of :initform arguments for the sake of older Emacsen.
7184         (registry-lookup-breaks-before-lexbind): New method to demonstrate
7185         pre-lexbind merge bug.
7186         (registry-usage-test): Use it.
7187         (initialize-instance, registry-db): Move the non-function initforms
7188         back to the class definition.
7189
7190 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
7191
7192         * registry.el: New library to manage gnus-registry-style data.
7193
7194         * gnus-registry.el: Use it (major rewrite).
7195
7196         * nnregistry.el: Use it.
7197
7198         * spam.el: Use it.
7199
7200 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7201
7202         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
7203         marks on non-selected articles.
7204
7205 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
7206
7207         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
7208         parameter to open-protocol-stream.
7209
7210 2011-04-01  Julien Danjou  <julien@danjou.info>
7211
7212         * mm-view.el (mm-display-inline-fontify): Do not fontify with
7213         fundamental-mode.
7214
7215 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7216
7217         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
7218         servers.
7219
7220 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7221
7222         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
7223         made marks not propagate, again.
7224
7225 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
7226
7227         * proto-stream.el (open-protocol-stream): Bring back `network' type.
7228         Make this the default type.
7229         (proto-stream-open-plain): Rename from proto-stream-open-default.
7230         (open-protocol-stream, proto-stream-open-starttls)
7231         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
7232         with `plain'.
7233
7234         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
7235         value.
7236
7237         * nntp.el (nntp-open-connection-function): Document the fact that some
7238         values are not functions but are instead handled specially.
7239         Recognize nntp-open-plain-stream value.
7240         (nntp-open-connection): Recognize that value.
7241
7242 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7243
7244         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
7245         where it seems to be needed.
7246
7247 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7248
7249         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
7250         stuff.
7251
7252         * gnus-score.el (gnus-score-string): Fix calling convention of
7253         `gnus-simplify-buffer-fuzzy' after last patches.
7254
7255         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
7256         server for articles we didn't get any headers for.  This is a sanity
7257         check.
7258
7259 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
7260
7261         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
7262         new CAPABILITY, use it.
7263
7264 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7265
7266         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
7267         downloading anything.
7268
7269         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
7270
7271 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
7272
7273         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
7274         colors.
7275         (gnus-splash-svg-color-symbols): New function.
7276
7277 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7278
7279         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
7280         instead of using the global gnus-simplify-subject-fuzzy-regexp.
7281         (gnus-simplify-subject-fuzzy): Use the local
7282         gnus-simplify-subject-fuzzy-regex instead of the global one.
7283         This makes using this variable in group parameters work.
7284
7285 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
7286
7287         * gnus-registry.el (gnus-registry-unfollowed-groups):
7288         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
7289         archive:sent-YYYY-MM-DD groups).
7290         (gnus-registry-split-fancy-with-parent): Bail out early in sender
7291         tracking if there are more than `gnus-registry-max-track-groups'
7292         matches.
7293
7294 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7295
7296         * message.el (message--yank-original-internal): New function to do the
7297         insertion cleanly inside eval in `message-yank-original'.
7298         (message-yank-original): Use it.
7299
7300 2011-03-29  Julien Danjou  <julien@danjou.info>
7301
7302         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
7303         local variables disabled rather than `normal-mode'.
7304
7305 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
7306
7307         * imap.el (imap-shell-open, imap-process-connection-type):
7308         Use imap-process-connection-type for 'shell' streams as well as
7309         Kerberos, SSL, other subprocesses.
7310
7311 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
7312
7313         * proto-stream.el: Changes preparatory to merging open-protocol-stream
7314         with open-network-stream.
7315         (proto-stream-always-use-starttls): Option removed.
7316         (open-protocol-stream): Return a process object by default.  Provide a
7317         new parameter :return-list specifying a list-type return value, which
7318         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
7319         :type `network' to `try-starttls', and `network-only' to `default'.
7320         Make `default' the default, for compatibility with open-network-stream.
7321         Handle the no-parameter case exactly as open-network-stream, with no
7322         additional stream processing.  Search plists using plist-get.
7323         Explicitly add :end-of-commend parameter if it is missing.
7324         (proto-stream-open-default): Rename from
7325         proto-stream-open-network-only.  Return 'default as the type.
7326         (proto-stream-open-starttls): Rename from proto-stream-open-network.
7327         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
7328         failed.  Always return a list with a (possibly dead) process as the
7329         first element, for compatibility with open-network-stream.
7330         (proto-stream-open-tls): Use plist-get.  Always return a list.
7331         (proto-stream-open-shell): Return `default' as connection type.
7332         (proto-stream-capability-open): Use plist-get.
7333         (proto-stream-eoc): Function deleted.
7334
7335         * nnimap.el (nnimap-stream, nnimap-open-connection)
7336         (nnimap-open-connection-1): Handle renaming of :type parameter for
7337         open-protocol-stream.
7338         (nnimap-open-connection-1): Pass a :return-list parameter
7339         open-protocol-stream to obtain a list return value.  Parse this list
7340         using plist-get.
7341
7342         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
7343         for open-protocol-stream.  Accept open-protocol-stream return value
7344         that is a subprocess object instead of a list.  Handle the case of a
7345         dead returned process.
7346
7347 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
7348
7349         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
7350
7351         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
7352
7353 2011-03-21  Julien Danjou  <julien@danjou.info>
7354
7355         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
7356         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
7357         query.
7358         (mm-inline-text): Render normal text with fontification whenever
7359         possible.
7360
7361         * gnus-sum.el (gnus-summary-save-parts-1):
7362         * gnus-art.el (gnus-article-browse-html-save-cid-content)
7363         (gnus-article-browse-html-parts, gnus-mime-delete-part)
7364         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
7365         Use `mm-handle-filename'.
7366
7367         * mm-util.el (mm-handle-filename): New function, return the filename of
7368         an handle.
7369
7370 2011-03-18  Julien Danjou  <julien@danjou.info>
7371
7372         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
7373         (gnus-buffer-live-p): Check that buffer is not nil.
7374
7375 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7376
7377         * gnus.el: No Gnus v0.15 is released.
7378
7379 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7380
7381         * time-date.el (format-seconds): Use assoc instead of assoc-string to
7382         avoid warning on XEmacs.
7383
7384         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
7385         on XEmacs.
7386
7387         * gnus-art.el: Require mouse, which the build bot seems to say is
7388         needed.
7389
7390         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
7391
7392         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
7393         XEmacs, since it doesn't have url-retrieve-synchronously.
7394
7395         * time-date.el (format-seconds): Use assoc instead of assoc-string,
7396         since assoc-string doesn't exist in XEmacs.
7397
7398 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
7399
7400         * gnus-group.el (gnus-group-list-ticked): New function.
7401         (gnus-group-make-menu-bar): Provide a menu entry for it.
7402         (gnus-group-list-map): Provide a binding for it.
7403
7404 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7405
7406         * shr.el (shr-visit-file): New command.
7407
7408         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
7409
7410 2011-03-17  Bjørn Mork  <bjorn@mork.no>
7411
7412         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
7413         servers.
7414
7415 2011-03-16  Julien Danjou  <julien@danjou.info>
7416
7417         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
7418         inline.
7419
7420         * gnus-art.el (article-hide-list-identifiers):
7421         Use gnus-group-get-list-identifiers.
7422
7423         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
7424         (gnus-summary-remove-list-identifiers):
7425         Use gnus-group-get-list-identifiers to get regexp.
7426         (gnus-select-newsgroup, gnus-summary-insert-subject)
7427         (gnus-summary-insert-articles):
7428         Call gnus-summary-remove-list-identifiers unconditionally.
7429
7430 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7431
7432         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
7433         we're selecting a group with unread articles.
7434
7435         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
7436
7437         * gssapi.el: New file separated out from imap.el to provide a general
7438         Kerberos 5 connection facility for Emacs.
7439
7440         * message.el (message-elide-ellipsis): Document the format spec
7441         ellipsis.
7442
7443 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
7444
7445         * message.el (message-elide-region): Allow the ellipsis to say how many
7446         lines were removed.
7447
7448 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7449
7450         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
7451         window configurations containing buffers that are now dead.
7452
7453         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
7454         parsing to avoid integer overflows.
7455         (nnimap-parse-flags): Simplify the last change.
7456         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
7457         too large for 32-bit Emacsen.
7458
7459 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7460
7461         * auth-source.el (auth-source-netrc-create):
7462         * message.el (message-yank-original): Fix use of `case'.
7463
7464 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
7465
7466         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
7467         XEmacs, which was one character too wide.
7468
7469 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
7470
7471         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
7472         default number of articles to display.
7473         (gnus-articles-to-read): Use pretty names for prompt.
7474
7475 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7476
7477         * gnus-int.el (gnus-open-server): Ditto.
7478
7479         * gnus-start.el (gnus-activate-group): Give a backtrace if
7480         debug-on-quit is set and the user hits `C-g'.
7481         (gnus-read-active-file): Ditto.
7482
7483         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
7484
7485 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
7486
7487         * message.el (message-yank-original): Use cond instead of CL case.
7488
7489 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7490
7491         * auth-source.el (auth-source-netrc-create): Use usual format for the
7492         default in prompts.
7493
7494 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7495
7496         * lpath.el: Fbind read-char-choice for XEmacs.
7497
7498 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
7499
7500         * auth-source.el (auth-source-netrc-create): Show the default in the
7501         prompt when prompting for token creation.
7502
7503 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
7504
7505         * auth-source.el (auth-source-format-prompt): Always convert the value
7506         to a string to avoid evaluating non-string arguments.
7507         (auth-source-netrc-create): Offer default properly, not as initial
7508         content in `read-string'.
7509         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
7510         of line to determine if we've been run before.  If so, don't run again,
7511         but print a trivial message to indicate the cache was hit instead.
7512
7513 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
7514
7515         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
7516         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
7517         The user will have to run `gnus-sync-read' manually and wait for Cloudy
7518         Gnus.
7519
7520 2011-03-11  Julien Danjou  <julien@danjou.info>
7521
7522         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
7523         modified file".
7524
7525 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
7526
7527         * auth-source.el (auth-source-read-char-choice): New function to read a
7528         character choice using `dropdown-list', `read-char-choice', or
7529         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
7530         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
7531         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
7532         (auth-source-netrc-saver): Use it.
7533         (auth-source-pick-first-password): New convenience function.
7534
7535 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
7536
7537         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
7538         parameter in the credentials.
7539         (nnimap-open-connection-1): Use it after a successful login.
7540         (nnimap-credentials): Add IMAP-specific user and password prompt.
7541
7542         * auth-source.el (auth-source-search): Add :require parameter, taking a
7543         list.  Document it and the :save-function return token.  Pass :require
7544         down.  Change the CREATED message from a warning to a debug statement.
7545         (auth-source-search-backends): Pass :require down.
7546         (auth-source-netrc-search): Pass :require down.
7547         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
7548         Change save prompt to indicate all modifications saved here are
7549         deletions.
7550         (auth-source-netrc-create): Take user login name as default in user
7551         prompt.  Move all the save functionality to a lexically bound function
7552         under the :save-function token in the returned list.  Set up clearer
7553         default prompts for user, host, port, and secret.
7554         (auth-source-netrc-saver): New function, intended to be wrapped for
7555         :save-function.
7556
7557 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7558
7559         * shr.el (shr-table-horizontal-line): Change the defaults for the table
7560         lines to be spaces instead.
7561
7562 2011-03-07  Julien Danjou  <julien@danjou.info>
7563
7564         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
7565         (sieve-sasl-auth): Check that auth-source-search did return something,
7566         or just return an empty string.
7567
7568 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
7569
7570         * gnus.el (gnus-interactive): Use read-directory-name.
7571
7572         * gnus-uu.el (gnus-uu-decode-uu-and-save)
7573         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
7574         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
7575         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
7576         Likewise.
7577
7578         * gnus-group.el (gnus-group-make-directory-group): Likewise.
7579
7580 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7581
7582         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
7583         onto the list of killed groups, too.  This makes killed nnimap groups,
7584         for instance, more reliably not reappear.
7585
7586         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
7587         the parent.
7588
7589         * gnus-sum.el (gnus-update-read-articles): Fix typo.
7590
7591         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
7592         really have server-side marks.
7593
7594         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
7595         since most backends do not usefully have server-side marks.
7596         (gnus-update-read-articles): Propagate marks to all backends that
7597         really have server-side marks.
7598
7599 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
7600
7601         * message.el (message-cite-reply-position, message-cite-style):
7602         New variables.
7603         (message-yank-original): Use the new citation styles.
7604
7605 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
7606
7607         * message.el (message-options): Revert 22da67af (workaround for XEmacs
7608         buffer-local issue); don't mark it buffer-local when running under
7609         XEmacs.
7610
7611 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
7612
7613         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
7614         numbers too big to be `read'.
7615
7616 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
7617
7618         * password-cache.el (password-in-cache-p): Add autoload.
7619
7620         * message.el (message-options): Make buffer-local two ways to attempt
7621         to fix a XEmacs bug.
7622
7623 2011-03-02  Julien Danjou  <julien@danjou.info>
7624
7625         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
7626
7627 2011-03-01  Julien Danjou  <julien@danjou.info>
7628
7629         * gnus-art.el (list-identifier): Add list-identifier as a parameter
7630         group.
7631         (article-hide-list-identifiers): Use list-identifier group parameter.
7632
7633 2011-02-28  Julien Danjou  <julien@danjou.info>
7634
7635         * sieve.el (sieve-buffer-script-name): New local variable to store
7636         sieve script name.
7637         (sieve-edit-script): Store sieve script name.
7638         (sieve-upload): Use sieve script name when uploading.
7639         (sieve-upload): Use substitute-command-keys.
7640         (sieve-edit-script): Use substitute-command-keys.
7641         (sieve-refresh-scriptlist): Use substitute-command-keys.
7642         (sieve-manage-mode-map): Define keymap properly.
7643         (sieve-manage-mode): Do not set mode name manually, change mode-name to
7644         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
7645         Remove commented code about cvs.
7646         (sieve-manage-quit): New function.
7647         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
7648
7649 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7650
7651         * gnus-group.el (gnus-import-other-newsrc-file): New function.
7652
7653 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
7654
7655         * auth-source.el (auth-source-search): Cache empty result sets.
7656
7657         * password-cache.el (password-in-cache-p): Convenience function to
7658         check if a key is in the cache, even if the value is nil.
7659
7660         * auth-source.el (auth-source-save-behavior): New variable to replace
7661         `auth-source-never-create'.
7662         (auth-source-netrc-create): Use it.
7663         (auth-source-never-save): Remove.
7664
7665 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
7666
7667         * nnimap.el (nnimap-stream): Doc fix.
7668         (nnimap-open-connection-1): Reverse the order of the ports to that the
7669         prompted-for port is first.
7670
7671         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
7672         retrieval by the no-group selection.
7673
7674         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
7675         numerical parameters.
7676
7677 2011-02-25  Julien Danjou  <julien@danjou.info>
7678
7679         * gnus-gravatar.el: Use gnus-with-article-buffer.
7680
7681         * gnus-art.el (gnus-with-article-buffer): Check that the
7682         gnus-article-buffer is alive.
7683
7684 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
7685
7686         * auth-source.el (auth-source-creation-prompts): New variable to manage
7687         creation-time prompts.
7688         (auth-source-search): Document it.
7689         (auth-source-format-prompt): Add utility function.
7690         (auth-source-netrc-create): Don't default the user name to
7691         user-login-name.  Use `auth-source-creation-prompts' and some default
7692         prompts for user, host, port, and password (the default generic prompt
7693         remains ugly).
7694         (auth-source-never-save): Add customizable option to never save info.
7695         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
7696         mode excursion.
7697
7698 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7699
7700         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
7701         argument that XEmacs doesn't support.
7702
7703         * dgnushack.el (dgnushack-compile): Exclude color.el from being
7704         compiled for Emacsen having no `libxml-parse-html-region' support.
7705
7706         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
7707
7708         * lpath.el: Bind buffer-save-without-query for XEmacs.
7709
7710 2011-02-23  Julien Danjou  <julien@danjou.info>
7711
7712         * gnus-art.el (article-make-date-line): Ignore errors if time is
7713         invalid and not convertible.
7714         (article-make-date-line): Only add lapsed time if time is not nil.
7715
7716 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
7717
7718         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
7719         `read-char-choice' for backwards compatibility.
7720         (auth-source-netrc-element-or-first): New function to DTRT for
7721         parameter extraction.
7722         (auth-source-netrc-create): Use it and fix multiple parameter print
7723         bug.  Use the default passed from above (given-default) or the
7724         built-in (user-login-name for :user).
7725
7726 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
7727
7728         * gnus-start.el (gnus-dribble-read-file):
7729         Set buffer-save-without-query, since we always want to save the dribble
7730         file, probably.
7731
7732         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
7733         nnimap.
7734
7735         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
7736         -summary- since it's a user-visible variable.
7737
7738         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
7739         first time you use the new Gnus.
7740
7741 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
7742
7743         * auth-source.el: Don't load netrc.el.
7744         (auth-sources): Search ~/.netrc as well by default.
7745         (auth-source-debug): Add 'trivia option for extra output.
7746         (auth-source-do-trivia): Use it.
7747         (auth-source-search): Simplify logic to use
7748         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
7749         appropriate.  Don't keep a running count at this level.  Layer :create
7750         and :delete options appropriately on the first and second passes.
7751         Don't track the backend with the search results.
7752         (auth-source-search-backends): New function to search a list of
7753         backends for a processed spec.
7754         (auth-source-netrc-parse): Cache all netrc files, making
7755         auth-source-netrc-cache an alist keyed by the file name and using the
7756         file mtime as the caching criterion.  Keep the obfuscated data secret
7757         with a lexical bind.
7758         (auth-source-netrc-search): Don't calculate the length of the results
7759         unnecessarily.
7760         (auth-source-search-backends): Fix bug.
7761         (auth-source-netrc-create): Rework prompts.
7762
7763 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
7764
7765         * nnir.el (nnir-imap-search-arguments, nnir-imap-default-search-key):
7766         Lower case names of search constraints.
7767         (nnir-run-query): Cache and reuse search constraints for all imap
7768         servers.
7769
7770 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
7771
7772         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
7773         after exit.
7774         (gnus-setup-message): Define missing variable from last checkin.
7775
7776         * gnus-sum.el (gnus-summary-show-article): When called with t as the
7777         value, show the raw article.
7778
7779 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7780
7781         * gnus.el: No Gnus v0.13 is released.
7782
7783 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
7784
7785         * nnimap.el (nnimap-open-connection-1): Revert last change, since
7786         auth-source now accepts numbers.
7787
7788         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
7789         spec, too.
7790         (auth-source-ensure-strings): New function.
7791
7792         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
7793         (gnus-article-setup-buffer): Always restart the date timer so that user
7794         changes to the frequency is respected.
7795
7796         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
7797         port numbers, so make sure it gets that if nnimap-server-port is
7798         explicit.
7799
7800 2011-02-21  Simon Josefsson  <simon@josefsson.org>
7801
7802         * nnimap.el (nnimap-inbox): Doc fix.
7803
7804 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
7805
7806         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
7807         Autoload.  Add optional arg FRAME, and pass it to color-values.
7808         (color-complement): Caller changed.  Doc fix.
7809         (color-gradient): Rewrite for better clarity and efficiency.
7810
7811 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
7812
7813         * shr-color.el (shr-color->hexadecimal): Use renamed function names
7814         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
7815         color-lab-to-srgb.
7816
7817 2011-02-20  Drew Adams  <drew.adams@oracle.com>
7818
7819         * color.el: First part of merge from hexrgb.el.
7820         (color-rgb-to-hex): Rename from color-rgb->hex.
7821         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
7822         saturation to zero if the value is too small.
7823         (color-rgb-to-hsl): Rename from color-rgb->hsl.
7824         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
7825         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
7826         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
7827         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
7828         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
7829         (color-cie-de2000): Doc fix.
7830
7831 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
7832
7833         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
7834         given method as in the group name if we're using an extended method.
7835         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
7836         command, if we're using that, instead of waiting for the beginning.
7837
7838         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
7839         we're sure to get unique server names, and we don't output two async
7840         commands in the same buffer.  This fixes an NNTP hang for some users.
7841
7842 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7843
7844         * gnus.el: No Gnus v0.11 is released.
7845
7846 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
7847
7848         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
7849         summary buffer before reading going to the next buffer.  This avoids
7850         putting the point in the group buffer if you `C-g' the command.
7851
7852         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
7853         cache (for now) to make ~/.authinfo.gpg files usable.
7854
7855         * nnfolder.el (copyright-update): Define for the compiler.
7856
7857         * auth-source.el (auth-source-search): Fix unbound variable.
7858
7859 2011-02-19  Glenn Morris  <rgm@gnu.org>
7860
7861         * gnus.el (gnus-meta): Doc fix.
7862
7863 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
7864
7865         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
7866         in case it's not yet loaded.
7867
7868 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
7869
7870         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
7871         line we're waiting for.
7872
7873 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
7874
7875         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
7876         face with line-width greater than zero will cause RET in gnus summary
7877         buffer to scroll down article page-wise because auto vscroll happens,
7878         it should be temporally disabled when doing a scroll-up.
7879
7880 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
7881
7882         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
7883         outputs from the server.
7884
7885 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
7886
7887         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
7888         later so that bbdb can hook in easier.
7889
7890 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
7891
7892         * auth-source.el (auth-source-search): Don't try to create credentials
7893         if the caller doesn't want that.
7894         (auth-source-search): If we don't find a match, don't bug out on
7895         non-bound variables.
7896         (auth-source-search): Only ask a single backend to create the
7897         credentials.
7898
7899         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
7900         logging.
7901         (nnimap-credentials): Protect against auth-source-search returning nil.
7902         (nnimap-request-list): Protect against not being able to open the
7903         server.
7904
7905 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
7906
7907         * auth-source.el (auth-source-search): Do a two-phase search, one with
7908         no :create to get the responses from all backends.
7909
7910         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
7911         when getting credentials.
7912
7913         * gnus-util.el (gnus-delete-duplicates): New function.
7914
7915 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
7916
7917         * nnimap.el (nnimap-credentials): Instead of picking the first port as
7918         a creation default, pass the whole port list down.  It will be
7919         completed.
7920
7921         * auth-source.el (auth-source-search): Updated docs to talk about
7922         multiple creation choices.
7923         (auth-source-netrc-create): Accept a list as a value (from the search
7924         parameters) and do completion on that list.  Keep a separate netrc line
7925         with the password obscured for showing the user.
7926
7927         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
7928         first choice to `auth-source-search' so it will be used for entry
7929         creation instead of the server's Gnus-specific name.
7930         (nnimap-credentials): Rely on the auth-source library to select which
7931         port is actually wanted in the new netrc entry, so don't override
7932         `auth-source-creation-defaults'.
7933
7934         * auth-source.el (auth-source-netrc-parse): Use :port instead of
7935         :protocol and accept a missing user, host, or port as a wildcard match.
7936         (auth-source-debug): Default to off.
7937
7938         (auth-source-netrc-search, auth-source-netrc-create)
7939         (auth-source-secrets-search, auth-source-secrets-create)
7940         (auth-source-user-or-password, auth-source-backend, auth-sources)
7941         (auth-source-backend-parse-parameters, auth-source-search): Use :port
7942         instead of :protocol.
7943
7944         * nnimap.el (nnimap-credentials): Pass a port default to
7945         `auth-source-search' in case an entry needs to be created.
7946         (nnimap-open-connection-1): Use :port instead of :protocol.
7947
7948 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7949
7950         * auth-source.el: Bind load-path when loading EIEIO from
7951         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
7952         21.4 doesn't support, to `require'.
7953         (auth-source-secrets-search): Use mm-delete-duplicates instead of
7954         delete-dups that is not available in XEmacs 21.4.
7955
7956 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
7957
7958         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
7959         as EIEIO must also be loaded when auth-source.el is being
7960         byte-compiled.
7961
7962 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
7963
7964         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
7965
7966         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
7967
7968         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
7969
7970         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
7971
7972         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
7973
7974         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
7975
7976         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
7977
7978         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
7979         necessary.
7980
7981 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
7982
7983         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
7984         nil means that nnimap doesn't get updated.
7985
7986 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
7987
7988         * auth-source.el (auth-source-netrc-create): Return a synthetic search
7989         result when the user doesn't want to write to the file.
7990         (auth-source-netrc-search): Expect a synthetic result and proceed
7991         accordingly.
7992         (auth-source-cache-expiry): New variable to override
7993         `password-cache-expiry'.
7994         (auth-source-remember): Use it.
7995
7996         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
7997         parameter.  Create entry if necessary by using :create t.
7998         (nnimap-open-connection-1): Don't pass `inhibit-create'.
7999
8000 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
8001
8002         * auth-source.el (auth-source-debug): Enable by default and don't
8003         mention the obsolete `auth-source-hide-passwords'.
8004         (auth-source-do-warn): New function to debug unconditionally.
8005         (auth-source-do-debug): Use it.
8006         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
8007         and for Secrets API entries when the secrets.el library is not
8008         available.
8009
8010 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
8011
8012         * gnus-sum.el (gnus-propagate-marks): Default to nil.
8013         (gnus-summary-exit): Kill the correct article buffer on exit from a
8014         `C-d' group.
8015
8016         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
8017         gnus-propagate-marks.
8018
8019         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
8020         before killing the buffers so that a non-full window conf gets handled
8021         correctly.
8022         (gnus-summary-exit): Ditto.
8023         (gnus-summary-read-group-1): Ditto.
8024
8025         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
8026         async code again so that we can debug it properly.
8027
8028         * message.el (message-reply): Take an optional switch-buffer parameter
8029         so that Gnus window confs are respected better.
8030
8031 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
8032
8033         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
8034         `plist-get' to accept non-list parameters (XEmacs issue).
8035         Fix docstring.
8036         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
8037         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
8038         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
8039         Login collection is "Login" and not "login".
8040
8041 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
8042
8043         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
8044         multiple headers.
8045
8046         * nnimap.el (nnimap-inhibit-logging): New variable.
8047         (nnimap-log-command): Don't log login commands.
8048
8049         * auth-source.el (auth-source-netrc-search): The asserts seem to want
8050         to have more parameters.
8051
8052         * nnimap.el (nnimap-send-command): Mark the command time for each
8053         command, so that we don't get NOOPs stepping on our toes.
8054
8055         * gnus-art.el (article-date-ut): Get the date from the Date header on
8056         `t'.
8057
8058 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8059
8060         * auth-source.el (auth-source-search): Use copy-sequence instead of
8061         the cl.el copy-list.
8062
8063 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
8064
8065         * imap.el: Bring it back (revert
8066         84d800cd31de3064f0ed39617d725709a2f8f42f).
8067
8068 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
8069
8070         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
8071         Improve prompt.
8072
8073 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
8074
8075         * gnus-art.el (gnus-article-mode-line-format): Remove the article
8076         washing status from the default format.  It isn't very informative.
8077
8078 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
8079
8080         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
8081         Fix Gcc processing on imap.
8082
8083 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
8084
8085         * imap.el: Remove file.  All the functionality is in nnimap.el.
8086
8087 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8088
8089         * message.el (message-bury): Don't pop up a new window when selected
8090         window is dedicated.
8091
8092 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
8093
8094         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
8095
8096 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
8097
8098         * sieve-manage.el: Autoload `auth-source-search'.
8099         (sieve-sasl-auth): Use it.
8100
8101 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
8102
8103         * nnimap.el: Autoload `auth-source-forget+'.
8104         (nnimap-open-connection-1): Use it if the connection fails.
8105
8106         * auth-source.el: Require `password-cache'.
8107         (auth-source-hide-passwords, auth-source-cache): Remove and mark
8108         obsolete.
8109         (auth-source-magic): Marker for `password-cache' keys.
8110         (auth-source-do-cache): Update docstring.
8111         (auth-source-search): Use and check cache.
8112         (auth-source-forget-all-cached, auth-source-remember)
8113         (auth-source-recall, auth-source-forget, auth-source-forget+)
8114         (auth-source-specmatchp): Caching support functions.
8115         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
8116         Remove and obsolete.
8117         (auth-source-user-or-password): Remove caching to further discourage
8118         using it.  Always hide passwords.
8119
8120         * password-cache.el (password-cache-remove): Accept secrets that are
8121         not strings.
8122
8123 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
8124
8125         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
8126         code for now, since it doesn't work for all users.
8127
8128 2011-02-09  Julien Danjou  <julien@danjou.info>
8129
8130         * message.el (message-options): Make message-options really buffer
8131         local.
8132
8133 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
8134
8135         * mail-source.el: Autoload `auth-source-search'.
8136         (mail-source-keyword-map): Note order matters.
8137         (mail-source-set-1): Get all the mail-source source values and
8138         defaults and search auth-source on those if needed.  This can all
8139         probably be simplified.
8140
8141         * nnimap.el: Autoload `auth-source-search'.
8142         (nnimap-credentials): Use it.
8143         (nnimap-open-connection-1): Ask for the virtual server and physical
8144         address in one shot.
8145
8146         * nntp.el: Autoload `auth-source-search'.
8147         (nntp-send-authinfo): Use it.  Note TODO.
8148
8149 2011-02-08  Julien Danjou  <julien@danjou.info>
8150
8151         * shr.el (shr-tag-body): Add support for text attribute in body
8152         markups.
8153
8154         * message.el (message-options): Make message-options a local variable.
8155
8156 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
8157
8158         * auth-source.el (auth-source-secrets-search)
8159         (auth-source-user-or-password): Use `append' instead of `nconc'.
8160         (auth-source-user-or-password): Build return list better and protect
8161         against nil :secret.
8162
8163 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
8164
8165         * nnimap.el (nnimap-update-info): Refactor slightly.
8166         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
8167         (nnimap-update-info): Clean up slightly.
8168         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
8169         characters.
8170         (nnimap-process-quirk): Rename function to avoid collision.
8171         (nnimap-update-info): Fix macrology bug-out.
8172         (nnimap-update-info): Simplify split history test.
8173
8174 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
8175
8176         * auth-source.el (top): Require 'eieio unconditionally.
8177         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
8178         (auth-source-secrets-search): Limit search when `max' is greater than
8179         number of results.
8180
8181 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
8182
8183         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
8184         part not returning any data.
8185
8186         * proto-stream.el (open-protocol-stream): Document the return value.
8187
8188 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
8189
8190         * auth-source.el (auth-source-secrets-search): Add examples.
8191
8192 2011-02-06  Julien Danjou  <julien@danjou.info>
8193
8194         * message.el (message-setup-1): Handle message-generate-headers-first
8195         set to t.
8196
8197 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
8198
8199         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
8200         API with a string "secrets:collection-name" and with 'default.
8201         (auth-source-backend-parse): Parse "secrets:collection-name" and
8202         'default.  Recurse on parses instead of repeating code.  Use the
8203         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
8204         message when ignoring a source.
8205         (auth-source-search): List ignored search keys at the top level.
8206         (auth-source-netrc-create): Use `case' instead of `cond'.
8207         (auth-source-secrets-search): Created with TODOs.
8208         (auth-source-secrets-create): Created with TODOs.
8209         (auth-source-retrieve, auth-source-create, auth-source-delete)
8210         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
8211         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
8212         (auth-source-user-or-password-sftp)
8213         (auth-source-user-or-password-smtp): Remove.
8214         (auth-source-user-or-password): Deprecated and modified to be a wrapper
8215         around `auth-source-search'.  Not tested thoroughly.
8216
8217 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
8218
8219         * auth-source.el: Bring in assoc and eioeio libraries.
8220         (secrets-enabled): New variable to track the status of the Secrets API.
8221         (auth-source-backend): New EIOEIO class to represent a backend.
8222         (auth-source-creation-defaults): New variable to set prompt defaults
8223         during token creation (see the `auth-source-search' docstring for
8224         details).
8225         (auth-sources): Simplify to allow a simple string as a netrc backend
8226         spec.
8227         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
8228         (auth-source-backend-parse-parameters): Fill in the backend parameters.
8229         (auth-source-search): Main auth-source API entry point.
8230         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
8231         (auth-source-search-collection): Helper function for searching.
8232         (auth-source-netrc-parse, auth-source-netrc-normalize)
8233         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
8234         Supports search, create, and delete.
8235         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
8236         backend stubs.
8237         (auth-source-user-or-password): Call `auth-source-search' but it's not
8238         ready yet.
8239
8240 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
8241
8242         * message.el (message-setup-1): Remove the read-only stuff, since it
8243         doesn't work under XEmacs, for some reason.
8244
8245         * gnus-sum.el (gnus-user-date): Rename back from
8246         gnus-summary-user-date since user code refers to it.
8247
8248         * shr.el (shr-render-td): Store the actual background color used.
8249
8250         * message.el (message-setup-1): Don't bind the constant
8251         -forbidden-properties.
8252         (message-setup-1): Revert previous change, since it needs to bind the
8253         props to insert them.
8254         (message-resend): Allow removing the read-only separator line.
8255
8256 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
8257
8258         * nnimap.el (nnimap-request-accept-article): Give an error message if
8259         the APPEND wasn't successful.
8260
8261 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
8262
8263         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
8264         that have no groups.
8265
8266 2011-02-03  Julien Danjou  <julien@danjou.info>
8267
8268         * gnus-draft.el: Remove progn around gnus-draft-setup.
8269
8270 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
8271
8272         * gnus-start.el (gnus-read-active-for-groups): This function is never
8273         called with a nil `infos', so clean that up.
8274         (gnus-get-unread-articles): Request active files from primary/secondary
8275         methods that have no groups (yet).
8276
8277 2011-02-03  Julien Danjou  <julien@danjou.info>
8278
8279         * message.el (message-setup-1): Always generate References first.
8280         (message-mail): Return the return value of message-setup, not always t.
8281         (message-setup-1): Insert mail-header-separator with read-only and
8282         intangible properties set.
8283
8284         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
8285         user-date in docstring.
8286
8287         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
8288
8289         * gnus.el (gnus-summary-line-format): Mention &user-date format in
8290         docstring.
8291
8292         * gnus.el (gnus-user-date-format-alist): Change default value.
8293         Use defcustom, with type and group.  Move from gnus-util.el.
8294         Rename to gnus-summary-user-date-format-alist.
8295
8296 2011-02-03  Glenn Morris  <rgm@gnu.org>
8297
8298         * nnimap.el (gnus-fetch-headers): Declare.
8299
8300         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
8301
8302 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
8303
8304         * message.el (message-forward-make-body-digest-plain)
8305         (message-followup, message-reply): Clean up things noted by Stefan.
8306
8307         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
8308         gnus-article-update-date-headers is nil.
8309         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
8310         it didn't really work with defcustom.
8311         (article-update-date-lapsed): Make sure the window start doesn't move,
8312         either.
8313
8314 2011-02-01  Julien Danjou  <julien@danjou.info>
8315
8316         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
8317         format.
8318
8319         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
8320         standard in Emacs nowadays.
8321
8322         * color.el (color-gradient): Add a color-gradient function.
8323
8324 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8325
8326         * message.el (message-expand-name): Don't trust the return value of
8327         bbdb-complete-name.
8328         (message-check-news-header-syntax): Remove unused var `start'.
8329         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
8330         (message-inhibit-body-encoding): Move to before first use.
8331         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
8332         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
8333         (Organization, Message-ID, Date, mh-previous-window-config):
8334         Defvar the vars using dynamic scoping.
8335
8336 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
8337
8338         * shr.el (shr-render-td): Only do colors at the final rendering.
8339         Should be slightly faster.
8340         (shr-insert-table): Fix up TD background colors when doing the
8341         vertical padding.
8342
8343         * gnus-art.el (article-date-ut): Protect against articles with no Date
8344         header.
8345         (article-update-date-lapsed): Don't use current-column to find the
8346         horizontal position.  It's fragile in the presence of \003 characters.
8347
8348         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
8349
8350 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
8351
8352         * gnus-art.el (article-transform-date): Rewrite to still work when
8353         there are several rfc2822 parts.
8354         (article-transform-date): Fix infinite recursion.
8355         (article-date-ut): Replace infinitely many Date headers with a single
8356         one when called interactively.
8357
8358         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
8359         secure manner.
8360
8361         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
8362         move around by not using save-window-excursion.  It seems to work...
8363
8364 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8365
8366         * gnus-art.el (article-make-date-line): Work for user-defined format.
8367
8368 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
8369
8370         * nntp.el (nntp-retrieve-group-data-early)
8371         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
8372         fetching functions.
8373
8374         * gnus-start.el (gnus-read-active-for-groups): Read the active files
8375         thoroughly for all backends that have no known groups.  This should
8376         allow new nnml methods to retrieve mail.
8377
8378         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
8379         that Gnus doesn't know exists again.
8380
8381         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
8382         (gnus-treat-date-ut): Ditto.
8383         (gnus-article-update-date-header): Rename.
8384         (gnus-treat-date-local): Remove.
8385         (gnus-treat-date-english): Remove.
8386         (gnus-treat-date-lapsed): Remove.
8387         (gnus-treat-date-combined-lapsed): Remove.
8388         (gnus-treat-date-original): Remove.
8389         (gnus-treat-date-iso8601): Remove.
8390         (gnus-treat-date-user-defined): Remove.
8391         (gnus-article-date-headers): New variable to control all the date
8392         header options.
8393         (article-date-ut): Rewrite to allow using the new way to format date
8394         headers(s).
8395
8396 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
8397
8398         * nnmail.el (nnmail-article-group): Check for a direct fancy split
8399         method.
8400         (nnmail-article-group): A better test for fanciness.
8401
8402         * nnimap.el (nnimap-request-head): Protect against not finding the
8403         article by Message-ID.
8404
8405 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
8406
8407         * gnus-art.el (article-update-date-lapsed): Try a better way to really
8408         keep point at the "same place".
8409
8410 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
8411
8412         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
8413         data if the group is inactive.
8414
8415 2011-01-28  Julien Danjou  <julien@danjou.info>
8416
8417         * gnus-win.el: Remove dead function gnus-window-configuration-element.
8418         (gnus-all-windows-visible-p): Remove old compatibility code.
8419         (gnus-window-top-edge): Add docstring.
8420
8421         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
8422
8423 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
8424
8425         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
8426         older request-update-info.
8427
8428         * gnus-art.el (article-make-date-line): Limit the length a bit more.
8429
8430 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
8431
8432         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
8433         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
8434
8435 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
8436
8437         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
8438         groups.  This makes the nndraft:queue group pop up if it's not already
8439         there.
8440
8441         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
8442         messages" logic, which was reversed.
8443
8444         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
8445         the "same place" even if point is on the line being replaced.
8446         (article-update-date-lapsed): Allow updating both the combined lapsed
8447         and the lapsed headers.
8448         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
8449         (article-make-date-line): Limit the number of segments dynamically to
8450         avoid too-long lines.
8451
8452 2011-01-27  Julien Danjou  <julien@danjou.info>
8453
8454         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
8455         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
8456
8457 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8458
8459         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
8460         Use plist-get instead of the cl function getf.
8461
8462 2011-01-27  Glenn Morris  <rgm@gnu.org>
8463
8464         * gnus-util.el (float-time): Get rid of compiler warning, again.
8465
8466 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
8467
8468         * shr.el (shr-put-color): Special-case background colors: Do put them
8469         at the blank parts at the front of the lines.
8470
8471         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
8472         exit hook to nix out all data on readedness on group exit.
8473
8474         * gnus-util.el (float-time): If float-time is bound, always use it on
8475         all Emacsen.  It's unclear why the subrp check was there.
8476         (time-date): Require to make some autoload issues on XEmacs go away.
8477
8478         * shr.el (shr-put-color): Don't do the box padding in tables, since
8479         they're already padded.
8480
8481 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
8482
8483         * gnus-art.el (gnus-article-next-page): When the last line of the
8484         article is displayed, scroll down once more instead of going to the
8485         next article at once.
8486         (article-lapsed-string): Refactor out and allow specifying how many
8487         segments you want.
8488         (gnus-article-setup-buffer): Start updating the lapsed header directly.
8489         (gnus-article-update-lapsed-header): New variable.
8490
8491         * shr.el: Revert change that made headings use different-sized faces.
8492         The Emacs display engine isn't advanced enough that, for instance,
8493         tables can comfortably use differently-sized faces.
8494
8495 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
8496
8497         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
8498         used.
8499         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
8500         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
8501         we're using an encrypted connection.
8502
8503         * proto-stream.el: Alter the interface functions to also return the
8504         actual stream type used: network or tls.
8505
8506 2011-01-25  Julien Danjou  <julien@danjou.info>
8507
8508         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
8509         (mm-display-javascript-inline): New function.
8510
8511         * mm-decode.el (mm-inline-media-tests): Add application/javascript
8512         viewing function.
8513
8514 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8515
8516         * shr.el (shr-expand-newlines): Fix variable name.
8517
8518 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
8519
8520         * shr.el (shr-expand-newlines): Make nested boxes work.
8521
8522 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
8523
8524         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
8525         backgrounds.
8526         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
8527         in a more sensible manner.
8528
8529 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
8530
8531         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
8532         if EPG is loaded.
8533
8534 2011-01-24  Julien Danjou  <julien@danjou.info>
8535
8536         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
8537         tags.
8538
8539 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
8540
8541         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
8542         commands.
8543
8544         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
8545         in the article buffer.
8546         (gnus-gravatar-insert): Use blank space from the current buffer to
8547         avoid breaking text properties.  This makes X-Sent updating work again.
8548
8549         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
8550
8551 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
8552
8553         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
8554         fix the bug in url-http.el instead.
8555
8556         * shr.el (shr-image-fetched): Ditto.
8557
8558         * shr.el (shr-image-fetched): Avoid having point move in the article
8559         buffer.
8560
8561         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
8562         buffer after being called.  It's apparently being killed by url.el, and
8563         killing it made point move to end-of-buffer in a random buffer.
8564
8565         * shr.el (shr-image-fetched): Ditto.
8566
8567 2011-01-23  Julien Danjou  <julien@danjou.info>
8568
8569         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
8570
8571         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
8572         text/x-org.
8573
8574 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
8575
8576         * gnus-sum.el (gnus-summary-move-article): Protect against backends
8577         (i.e., nnimap) returning nil as the article number.
8578
8579 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
8580
8581         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
8582         "DelSp" parameter in RFC3676.
8583
8584 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
8585
8586         * message.el (message-check-recipients): Display the encoded version of
8587         the bogus address if they differ.
8588
8589         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
8590         after sending.
8591
8592         * gnus-agent.el (gnus-agent-send-mail): Ditto.
8593
8594         * gnus-group.el (gnus-group-refresh-group): New convenience function.
8595
8596         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
8597         group buffer after sending the queue.
8598
8599         * gnus-agent.el (gnus-agent-send-mail): Ditto.
8600
8601 2011-01-22  Julien Danjou  <julien@danjou.info>
8602
8603         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
8604
8605 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
8606
8607         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
8608         nested related parts.
8609
8610         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
8611         unexpired articles.  This fixes the regression that led expiry marks to
8612         disappear from nnfolder groups.
8613
8614 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8615
8616         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
8617         Don't confuse the "ret" of "retrograde" with RET.
8618
8619 2011-01-21  Julien Danjou  <julien@danjou.info>
8620
8621         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
8622         than mm-insert-inline.
8623
8624 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8625
8626         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
8627         Widen article buffer.
8628
8629 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8630
8631         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
8632         the temp buffer.
8633         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
8634
8635 2011-01-20  Julien Danjou  <julien@danjou.info>
8636
8637         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
8638
8639         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
8640         than mm-insert-inline to insert inline part: this respect
8641         mm-inline-media-tests displayers.
8642
8643         * mm-view.el (mm-display-shell-script-inline): New function.
8644
8645         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
8646
8647         * mm-uu.el (mm-uu-type-alist): Add org block.
8648         (mm-uu-org-src-code-block-extract): New function.
8649
8650         * mm-view.el (mm-display-org-inline): New function.
8651
8652         * mm-decode.el (mm-automatic-display): Add text/org.
8653
8654         * mailcap.el (mailcap-mime-extensions): Add .org.
8655
8656 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8657
8658         * gnus-art.el (gnus-article-highlight): Remove argument passed to
8659         gnus-article-add-buttons.
8660
8661 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
8662
8663         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
8664         From header with a date and "nobody" as the sender.
8665
8666 2011-01-19  Julien Danjou  <julien@danjou.info>
8667
8668         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
8669         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
8670         if you have the same regexp several times.
8671         (gnus-button-push): Fix matching when regexp is symbol.
8672
8673 2011-01-15  Glenn Morris  <rgm@gnu.org>
8674
8675         * message.el (message-mail): A compose-mail function should
8676         accept headers as strings.
8677
8678 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
8679
8680         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
8681         Add :vert-only tags.
8682         (message-mail): New arg RETURN-ACTION.
8683         (message-return-action): New var.
8684         (message-bury): Use it.
8685         (message-mode): Make it buffer-local.
8686         (message-send-and-exit): Always call message-bury.
8687
8688         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
8689         message-mail.
8690
8691 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8692
8693         * nnimap.el (nnimap-convert-partial-article): Protect against
8694         zero-length body parts.
8695
8696         * mm-decode.el (mm-preferred-alternative-precedence):
8697         Discourage showing empty parts.
8698
8699         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
8700         and stuff if the backend didn't return the article number.  This fixes
8701         an Exchange-related nnimap bug.
8702
8703         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
8704         group window, because it does the wrong thing when a separate frame
8705         displays the group buffer.
8706
8707         * proto-stream.el (open-protocol-stream): Protect against the low-level
8708         transport functions returning nil.
8709
8710 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
8711
8712         * mml2015.el (epg-sub-key-fingerprint): Autoload.
8713         (mml2015-epg-find-usable-secret-key): New function.
8714         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
8715         mml2015-epg-find-usable-key (Bug#7797).
8716         (mml2015-epg-encrypt): Ditto.
8717
8718 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8719
8720         * dgnushack.el (rot13-string): Fix the way to get the argument.
8721
8722 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8723
8724         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
8725
8726 2011-01-03  Glenn Morris  <rgm@gnu.org>
8727
8728         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
8729
8730         * sieve.el (sieve-open-server): Give a more explicit error if
8731         sieve-manage-open returns nil.  (Bug#7720)
8732
8733 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
8734
8735         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
8736
8737 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8738
8739         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
8740         This avoids sending passwords in plain text over non-encrypted
8741         channels.
8742
8743         * shr.el (shr-rescale-image): Display all GIF images as animated images.
8744
8745         * nnimap.el (nnimap-login): Refactored out into own function, and
8746         implement CRAM-MD5.
8747         (nnimap-wait-for-line): Refactored out.
8748
8749         * mm-view.el (mml-smime): Require.
8750
8751 2010-12-20  David Engster  <deng@eml.cc>
8752
8753         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
8754         use EPG to decrypt S/MIME messages instead of openssl.
8755
8756 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8757
8758         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
8759
8760         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
8761         status is the group clearly is unreachable.
8762
8763         * auth-source.el (auth-source-create): Add the optional second
8764         parameter to `local-variable-p' to be compatible with XEmacs.
8765
8766 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
8767
8768         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
8769         work when using a compressed nnml folder.
8770
8771 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8772
8773         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
8774         backends after sanitising on entry, because this never makes sense:
8775         If the articles have gone missing, then the data no longer exists on
8776         the backend, and if they haven't, then Gnus is wrong, and shouldn't
8777         overwrite anything anyway.
8778
8779         * shr.el (shr-insert-document): Bind shr-width dynamically to
8780         window-width if it's nil.
8781
8782 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
8783
8784         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
8785         with the meaning of using the full emacs window width for rendering.
8786
8787 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
8788
8789         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
8790         case when sender is not given.
8791
8792 2010-12-23  Julien Danjou  <julien@danjou.info>
8793
8794         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
8795         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
8796         the addresses, otherwise we might misplaced the gravatar.
8797
8798 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
8799
8800         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
8801         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
8802         obsolete in Emacs.
8803
8804 2010-12-20  Julien Danjou  <julien@danjou.info>
8805
8806         * gnus-util.el (gnus-rescale-image): Revert last change.
8807
8808 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
8809
8810         * binhex.el: Improve commentary (Bug#7482).
8811
8812 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8813
8814         * gnus-group.el (gnus-group-delete-articles): New command.
8815
8816 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
8817
8818         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
8819
8820 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8821
8822         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
8823         here, since it's up to the backends to do CRLF removal if their
8824         protocol has it.
8825
8826         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
8827
8828 2010-12-17  Julien Danjou  <julien@danjou.info>
8829
8830         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
8831         they are from file.  Can also scale up.
8832
8833 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
8834
8835         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
8836         Restore gnus-use-agent.
8837         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
8838
8839         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
8840
8841 2010-12-17  Julien Danjou  <julien@danjou.info>
8842
8843         * gravatar.el (gravatar-retrieve-synchronously): New function.
8844         (gravatar-get-data): Make more robust.
8845
8846 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8847
8848         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
8849
8850 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8851
8852         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
8853         to really consider the last line.
8854
8855 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
8856
8857         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
8858         list of recipient keys, or use symmetric encryption if not a list.
8859         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
8860         EPA override, replacing the call to `netrc-store-data'.
8861
8862 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
8863
8864         * gnus-srvr.el: Avoid passing nil regexp argument to
8865         delete-matching-lines.
8866
8867 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8868
8869         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
8870         fetching stops when Gnus exits.
8871
8872         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
8873         function.
8874         (nnfolder-request-expire-articles): Save all the buffers after doing
8875         expiry.
8876
8877         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
8878         the last article", since that led to serious performance regressions
8879         when expiring nnml groups.
8880
8881 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
8882
8883         * nnir.el: Improve customizations.
8884
8885 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8886
8887         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
8888
8889         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
8890         group has been killed.
8891         (gnus-group-yank-group): Ditto.
8892
8893         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
8894
8895         * nnimap.el (nnimap-request-update-group-status): New function.
8896
8897         * gnus-int.el (gnus-request-update-group-status): New interface
8898         function.
8899
8900         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
8901         copying read-ness to the backends.
8902
8903         * nnimap.el (nnimap-quirk): New function.
8904         (nnimap-retrieve-group-data-early): Use it.
8905         (nnimap-quirks): New alist.
8906
8907 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8908
8909         * shr.el (shr-insert): Set shr-start after deleting trailing space;
8910         don't delete it within indentation.
8911
8912 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8913
8914         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
8915         previous line.
8916
8917 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8918
8919         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
8920         QRESYNC command by deleting a superfluous space which broke Cyrus
8921         servers.  This change will break other servers that are buggy the other
8922         way around.
8923
8924 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
8925
8926         * spam.el: Reindent and fix long lines.
8927         (spam-copy-or-move-routine): Exclude invalid move destinations.
8928
8929 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
8930
8931         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
8932         installed the registry.
8933
8934 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8935
8936         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
8937
8938 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
8939
8940         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
8941         groupname doesn't contain "gmane".
8942
8943 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8944
8945         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
8946         and netrc-bound-and-true-p bindings.
8947         (netrc-parse): Cache the netrc contents.
8948
8949         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
8950         (gnus-1): Don't create the nndrafts group twice.
8951         (gnus-setup-news): There's no need to read the active file here, since
8952         that's done again later on a per-backend basis.
8953         (gnus-start-draft-setup): Make sure that the new group is started out
8954         empty.
8955
8956         * gnus-agent.el (gnus-agentize): Don't create the queue group
8957         automatically on startup.  It'll be created later, if needed.
8958
8959         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
8960         of automatically subscribed groups.
8961         (gnus-auto-subscribed-categories): New variable.
8962         (gnus-matches-options-n): Use it.
8963         (gnus-default-subscribed-newsgroups): Remove unused variable.
8964         (gnus-start-draft-setup): Message a bit less.
8965
8966 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
8967
8968         * nnir.el (nnir-run-imap): Return article list in order of increasing
8969         UID.
8970
8971 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8972
8973         * gnus-sum.el (gnus-summary-enter-digest-group):
8974         Mention gnus-auto-select-on-ephemeral-exit.
8975
8976         * proto-stream.el (proto-stream-open-network-only): Fix the calling
8977         convention of the network-only option.
8978
8979 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8980
8981         * proto-stream.el (proto-stream-open-network-only): New function to
8982         have a way to specify non-STARTTLS upgrade connections.
8983
8984 2010-12-10  Julien Danjou  <julien@danjou.info>
8985
8986         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
8987         email address is nil.
8988
8989         * message.el (message-bogus-recipient-p): Set address to "" if nil.
8990
8991 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
8992
8993         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
8994         deletion.
8995         (nnir-run-imap): Only need to parse list once.
8996
8997 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8998
8999         * shr.el (shr-tag-script): Ignore <script>.
9000         (shr-tag-label): Add <label> support.
9001
9002 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9003
9004         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
9005
9006         * shr.el (shr-image-displayer): Work for images lined side by side.
9007
9008 2010-12-08  Robert Pluim  <rpluim@gmail.com>
9009
9010         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
9011         parameter, since XEmacs doesn't accept t as a parameter.
9012
9013 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
9014
9015         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
9016         ids.
9017         (nnir-run-gmane): Simplify groupspec formatting.
9018         (nnir-request-expire-articles): New function.
9019
9020 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9021
9022         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
9023         overflow, possibly.
9024
9025         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
9026         (shr-render-td): Handle td style="" better.
9027         (shr-tag-table): Use the color from the style sheet.
9028         (shr-render-td): Make sure we copy over all the overlays, too.
9029
9030 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
9031
9032         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
9033         (nnir-request-article): Improve article retrieval.
9034
9035 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9036
9037         * mm-util.el (mm-extra-numeric-entities): New variable.
9038
9039         * mm-url.el (mm-url-decode-entities):
9040         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
9041
9042         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
9043
9044 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9045
9046         * message.el: Use completion-at-point.
9047         (message-completion-function): New fun, extracted from message-tab.
9048         (message-mode): Use it for completion-at-point-functions.
9049         (message-tab): Use it and completion-at-point.
9050
9051 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9052
9053         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
9054         character if a non-breakable character follows.
9055
9056 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9057
9058         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
9059         any stream.
9060
9061         * shr.el (shr-tag-font): Colorize the region.
9062         (shr-tag-body): Ditto.
9063         (shr-tag-font): Actually let the styles be inherited instead of
9064         overwriting them.
9065         (shr-tag-font): Get the background color right.
9066         (shr-tag-style): Ignore all <style> tags for the moment.
9067
9068         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
9069         a Message-ID to avoid having nnimap depend on gnus-sum.
9070
9071         * shr.el (shr-descend): Only colorize something if we have a node that
9072         sets colors.
9073
9074 2010-12-06  Julien Danjou  <julien@danjou.info>
9075
9076         * shr.el (shr-render-td): Render td content with shr-descend, so style
9077         will be applied to <td> too.
9078         (shr-colorize-region): Colorize region even if we only have a background.
9079         (shr-tag-body): Fix color and background color inheritance.
9080         Do not recolorize after shr-generic.
9081         (shr-tag-font): Let shr-generic colorize via inheritance.
9082
9083 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9084
9085         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
9086
9087 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
9088
9089         * nnir.el (nnir-request-move-article): Remove obsolete code.
9090
9091 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9092
9093         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
9094
9095 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9096
9097         * gnus-sum.el (gnus-summary-respool-article): The completion function
9098         expects a list instead of an alist.
9099
9100         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
9101         string as the parameter.
9102
9103         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
9104
9105         * shr.el (shr-stylesheet): New dynamic variable for cascading the
9106         styles.
9107         (shr-colorize-region): New function.
9108         (shr-insert-background-overlay): Remove.
9109         (shr-render-td): Background setting should be taken care of on a higher
9110         level.
9111         (shr-tag-body): Use post-hoc colorizations.
9112         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
9113         (shr-put-color-1): Don't overwrite old colors.
9114         (shr-colorize-region): When the background color isn't explicit, use
9115         a fixed background.
9116
9117         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
9118         nnmail variables.
9119
9120 2010-12-05  Bjørn Mork  <bjorn@mork.no>
9121
9122         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
9123         unless necessary.
9124
9125 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
9126
9127         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
9128         server.
9129
9130 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9131
9132         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
9133         so that TAB works.
9134
9135         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
9136         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
9137
9138         * shr.el (shr-urlify): Show the URL before the title to avoid
9139         misleading URLs.
9140
9141 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
9142
9143         * shr.el (shr-urlify): Display the title in <a> tags.
9144
9145 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
9146
9147         * nnir.el (nnir-categorize): Replace mapcar with mapc.
9148
9149 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
9150
9151         * nnir.el: Rearrange code to allow macros to be autoloaded by
9152         gnus-sum.el.
9153         (nnir-retrieve-headers-override-function): Make this variable
9154         customizable.
9155         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
9156
9157         * gnus-sum.el (nnir-article-group, nnir-article-rsv): Autoload macros
9158         from nnir.el.
9159
9160 2010-12-03  Julien Danjou  <julien@danjou.info>
9161
9162         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
9163
9164 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9165
9166         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
9167         allow optional argument `environment'.
9168
9169 2010-12-03  Glenn Morris  <rgm@gnu.org>
9170
9171         * mm-extern.el (message-goto-body): Update declaration.
9172
9173 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9174
9175         * gnus-util.el (gnus-macroexpand-all): New function.
9176
9177         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
9178         instead of macroexpand-all that is unavailable in XEmacs.
9179
9180 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
9181
9182         * nnir.el (nnir-summary-line-format): New variable.
9183         (nnir-mode): Use it.
9184         (nnir-artlist-*, nnir-aritem-*): Reimplement as macros.
9185         (nnir-article-ids): Reimplement as defsubst.
9186         (nnir-retrieve-headers): Don't mangle the subject header.
9187         (nnir-run-imap): Use 100 as RSV score.
9188         (nnir-run-find-grep): Fix for full server searching.
9189         (nnir-run-gmane): Better restriction to gmane groups.
9190
9191         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
9192         summary buffers.
9193
9194 2010-12-02  Julien Danjou  <julien@danjou.info>
9195
9196         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
9197
9198         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
9199
9200         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
9201         support.
9202
9203 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
9204
9205         * nnir.el: Update to handle the registry better.
9206         (autoload): Silence byte-compiler.
9207         (nnir-open-server): Add a hook for nnir groups.
9208         (nnir-request-move-article): Don't mangle the header.  Better to use
9209         formatting variables (which will be added in the future).
9210         (nnir-registry-action): Update the registry using the original article
9211         group name.
9212         (nnir-mode): Install nnir-specific hooks for updating the registry.
9213
9214         * gnus-sum.el
9215         (gnus-article-original-subject, gnus-newsgroup-original-name):
9216         Remove obsolete variables.
9217         (gnus-summary-move-article): Remove use of obsolete variables.
9218         (gnus-summary-local-variables): Make move and delete hooks local to
9219         summary buffers.
9220
9221 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9222
9223         * rtree.el: New file.
9224
9225 2010-12-01  Julien Danjou  <julien@danjou.info>
9226
9227         * message.el (message-user-organization): Do not use
9228         gnus-local-organization.
9229
9230         * gnus.el: Remove gnus-local-organization.
9231
9232         * gnus-msg.el: Remove nastygram thing.
9233
9234 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
9235
9236         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
9237         funcall.
9238
9239 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9240
9241         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
9242         names.
9243
9244         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
9245         characters.
9246
9247         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
9248         to t of inhibit-read-only since it is inside gnus-with-article-headers.
9249         Suggested by Štěpán Němec <stepnem@gmail.com>.
9250         (gnus-gravatar-transform-address): Use mail-extract-address-components
9251         that supports non-ASCII names rather than mail-header-parse-addresses.
9252
9253 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9254
9255         * proto-stream.el (open-protocol-stream): All starttls connections are
9256         handled by the network handler.
9257
9258 2010-11-30  Julien Danjou  <julien@danjou.info>
9259
9260         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
9261         (nnimap-open-connection-1): Fix PREAUTH.
9262
9263         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
9264
9265 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9266
9267         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
9268         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
9269         (shr-insert): Use them.
9270         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
9271
9272 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
9273
9274         * nnir.el (nnir-request-move-article): Bail out if original group
9275         doesn't support article moves.
9276         (nnir-get-active): Improve active list retrieval.
9277
9278 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9279
9280         * shr.el (shr-find-fill-point): Don't break before apostrophes.
9281
9282 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
9283
9284         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
9285         seem to accept strings-with-numbers as port numbers.
9286
9287 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
9288
9289         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
9290         change the registry.
9291
9292 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9293
9294         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
9295         delete-dups that is not available in XEmacs 21.4.
9296
9297         * mm-util.el (mm-delete-duplicates): Add comment.
9298
9299 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
9300
9301         * nnir.el (nnir-ignored-newsgroups): New variable.
9302         (nnir-get-active): Use it.
9303
9304 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9305
9306         * proto-stream.el (proto-stream-open-network): Add some comments.
9307
9308         * nntp.el (nntp-open-connection): Provide a :success condition.
9309
9310         * nnimap.el (nnimap-open-connection-1): Ditto.
9311
9312         * proto-stream.el (proto-stream-open-network): See what the response to
9313         the STARTTLS command is.
9314
9315         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
9316         backwards compatibility).
9317         (nnimap-open-connection-1): Really respect nnimap-server-port.
9318
9319         * proto-stream.el (proto-stream-open-network): When doing opportunistic
9320         TLS upgrades we don't really care about the identity of the peer.
9321         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
9322         that what we've checked for.
9323         (proto-stream-always-use-starttls): Only default to t if
9324         open-gnutls-stream exists.
9325         (proto-stream-open-network): If STARTTLS failed, then just open a
9326         normal connection.
9327         (proto-stream-open-network): Wait until the greeting before doing
9328         STARTTLS.
9329
9330         * nntp.el (nntp-open-connection): Report what the connection error is.
9331
9332         * proto-stream.el (open-protocol-stream): Rename from
9333         open-proto-stream.
9334
9335 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9336
9337         * nnimap.el (nnimap-stream): Change default to `undecided'.
9338         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
9339         first, and then network.
9340         (nnimap-open-connection-1): Respect nnimap-server-port.
9341         (nnimap-open-connection): Be more backwards-compatible.
9342
9343         * proto-stream.el (proto-stream-always-use-starttls): New variable.
9344         (proto-stream-open-starttls): De-duplicate the starttls code.
9345         (proto-stream-open-starttls): Folded back into the main function.
9346         (proto-stream-open-network): Fix typo in the gnutls path.
9347         (proto-stream-command): Refactor out.
9348
9349         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
9350
9351         * proto-stream.el (proto-stream-open-starttls): Actually implement the
9352         starttls.el STARTTLS.
9353
9354         * color.el (color-lab->srgb): Fix function call name.
9355
9356         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
9357         if we're using tls.el.
9358         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
9359         built in, then don't try to establish a STARTTLS connection.
9360
9361         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
9362         servers.
9363
9364         * proto-stream.el (open-proto-stream): Use network, not stream.
9365         (open-proto-stream): Add a way to specify what the end of a command is.
9366
9367         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
9368         connections types.
9369         (nntp-open-network-stream): Remove.
9370         (nntp-open-ssl-stream): Remove.
9371         (nntp-open-tls-stream): Remove.
9372         (nntp-ssl-program): Remove.
9373
9374         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
9375
9376 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
9377
9378         * nnir.el: Fix typos.
9379         (nnir-retrieve-headers-override-function): Rename variable to reflect
9380         new semantics.
9381         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
9382         macros.
9383         (nnir-request-article, nnir-request-move-article): Use them.
9384         (nnir-categorize): New function.
9385         (nnir-run-query): Use it.
9386         (nnir-retrieve-headers): Rewrite to batch header retrieval.
9387         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
9388         sorted.
9389         (nnir-group-full-name): Use gnus-group-full-name instead.
9390         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
9391         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
9392
9393 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9394
9395         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
9396
9397         * proto-stream.el: New library to provide protocol-specific
9398         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
9399         protocols.
9400         (open-proto-stream): Complete the documentation.
9401         (proto-stream-open-network): Fix some typos.
9402
9403         * nnimap.el (nnimap-open-connection): Use it.
9404
9405 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
9406
9407         * pop3.el (pop3-open-server): Read server greeting before starting TLS
9408         negotiation.
9409
9410 2010-11-26  Julien Danjou  <julien@danjou.info>
9411
9412         * color.el: Rename various rgb functions to srgb.
9413
9414 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9415
9416         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
9417         names.
9418
9419 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9420
9421         * shr.el (shr-insert): Revert last change.
9422         (shr-find-fill-point): Never leave point being at bol;
9423         relax the kinsoku limitation when rendering tables.
9424
9425 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9426
9427         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
9428         results from -accept-article.
9429
9430         * shr-color.el: Require cl when compiling.
9431
9432         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
9433         checkin.
9434
9435         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
9436
9437         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
9438
9439         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
9440         'add and 'delete to set backend marks.
9441
9442         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
9443
9444         * nnheader.el (nnheader-update-marks-actions): Refactor out.
9445
9446         * nntp.el (nntp-request-set-mark): Use it.
9447
9448         * nnfolder.el (nnfolder-request-set-mark): Ditto.
9449
9450         * nnml.el (nnml-request-set-mark): Ditto.
9451
9452         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
9453         introduces regressions in article selection.
9454         (nnimap-find-uid-response): New function.
9455         (nnimap-request-accept-article): Use the UID returned, if any.
9456         (nnimap-request-move-article): Use the UID returned, if any.
9457         (nnimap-get-groups): Reimplement to work with folded lines.
9458         (nnimap-find-uid-response): The UID is the last element in the list.
9459         (nnimap-request-set-mark): Extend syntax with 'set.
9460
9461         * nnml.el (nnml-request-set-mark): Ditto.
9462
9463         * nnfolder.el (nnfolder-request-set-mark): Ditto.
9464
9465         * nntp.el (nntp-request-set-mark): Ditto.
9466
9467 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9468
9469         * message.el (message-called-interactively-p): A temporary macro.
9470         (message-goto-body): Use it temporarily.
9471
9472 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9473
9474         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
9475         (nnimap-last-response-string): Unfold quoted lines, if they exist.
9476         (nnimap-last-response-string): Fix last unfolding fix.
9477
9478 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9479
9480         * shr.el (shr-insert): Fix the way to fold lines.
9481
9482 2010-11-25  Julien Danjou  <julien@danjou.info>
9483
9484         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
9485
9486         * color.el: Rename from color-lab.el
9487         (color-rgb->hex): Add.
9488         (color-complement): Add.
9489         (color-complement-hex): Add.
9490
9491         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
9492
9493 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9494
9495         * shr-color.el (shr-color-visible): Don't bug out if the color names
9496         don't exist.
9497
9498 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9499
9500         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
9501         assuming that article displaying or another mml-preview may be
9502         interrupted for an error or for the like.
9503
9504         * shr.el (shr-get-background): Fix argument name.
9505
9506 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9507
9508         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
9509
9510         * gnus-sum.el (gnus-summary-include-articles): New function.
9511
9512         * message.el (message-goto-body): called-interactively-p needs a
9513         parameter, so use `any'.
9514
9515         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
9516         clear marks before moving, since they're synced from the Gnus side
9517         first.
9518
9519         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
9520         (gnus-summary-move-article): Copy over all marks before moving, so that
9521         IMAP doesn't think a new article has arrived.
9522
9523 2010-11-24  Julien Danjou  <julien@danjou.info>
9524
9525         * shr.el (shr-insert-background-overlay): Fix typo.
9526         (shr-render-td): Copy the background before rendering.
9527
9528         * shr-color.el (shr-color-visible): Fix docstring.
9529
9530         * shr.el (shr-tag-table): Add bgcolor support.
9531         (shr-render-td): Add bgcolor support.
9532         (shr-get-background): Add.
9533         (shr-insert-foreground-overlay): Use shr-get-background.
9534
9535         * message.el (message-goto-body): Use called-interactively-p.
9536         (message-in-body-p): message-goto-body returns point.
9537
9538 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9539
9540         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
9541         Fixes something or other in Emacs 23, and is backwards compatible.
9542
9543         * message.el (message-goto-body): Remove the <#secure special-casing,
9544         which is too special.
9545
9546         * shr.el (shr-parse-style): Drop !important from styles.
9547
9548 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
9549
9550         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
9551         this function to return incorrect results when calling it with an
9552         explicit article argument different from
9553         (gnus-summary-article-number).
9554
9555 2010-11-24  Julien Danjou  <julien@danjou.info>
9556
9557         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
9558         (shr-tag-body): Add background support.
9559         (shr-descend): Add background support.
9560         (shr-tag-title): Add.
9561
9562         * shr-color.el (shr-color-visible): Really return original background
9563         if fixed.
9564
9565 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9566
9567         * shr.el (shr-color-check): Protect against non-existent color names.
9568
9569 2010-11-24  Julien Danjou  <julien@danjou.info>
9570
9571         * color-lab.el: Require 'cl when compiling.
9572
9573         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
9574
9575         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
9576         matched part.
9577
9578         * color-lab.el: Fix all expt calls to use float type.
9579
9580 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9581
9582         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
9583         expression to shr-color-check as is.
9584
9585         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
9586
9587         * color-lab.el: Add coding cookie.
9588         (float-pi): Use eval-and-compile.
9589
9590         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
9591         compiled for Emacsen having no `libxml-parse-html-region' support.
9592
9593 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9594
9595         * shr.el (shr-insert-color-overlay): Split stuff like
9596         "#444444 !important" to find the real color.
9597         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
9598         parse <font color="red"> entries.
9599
9600 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
9601
9602         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
9603         point when parsing headers.
9604
9605         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
9606         is positioned properly when parsing headers.
9607
9608 2010-11-23  Julien Danjou  <julien@danjou.info>
9609
9610         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
9611
9612         * shr-color.el (shr-color->hexadecimal): Add support for color names.
9613
9614         * shr.el (shr-parse-style): Replace \n with space in style parsing.
9615
9616         * shr-color.el (shr-color-hsl-to-rgb-fractions):
9617         Use shr-color-hue-to-rgb.
9618         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
9619
9620 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9621
9622         * shr.el (shr-color->hexadecimal): Autoload.
9623         (shr-descend): Add color to all tags.
9624
9625 2010-11-22  Julien Danjou  <julien@danjou.info>
9626
9627         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
9628         shr-color->hexadecimal.
9629
9630         * shr-color.el (shr-color->hexadecimal): Add converting functions for
9631         RGB() or HSL() color representation.
9632
9633         * shr.el (shr-tag-font): Add.
9634         (shr-tag-color-check): New function to get better colors.
9635         (shr-tag-insert-color-overlay): Factorize code between tag-font and
9636         tag-span.
9637
9638         * shr-color.el: New file.
9639
9640         * color-lab.el: New file.
9641
9642         * gnus-art.el (gnus-url-mailto): Do not downcase args.
9643
9644 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
9645
9646         * nnir.el: Fix typo in comments.
9647         (nnir-run-imap): Simplify code.  No need to reverse artlist.
9648         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
9649
9650 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9651
9652         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
9653
9654         * nnimap.el (nnimap-get-capabilities): Refactor out.
9655         (nnimap-open-connection): Re-request capabilities after STARTTLS.
9656
9657 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
9658
9659         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
9660         appearing when `mm-uu-hide-markers' is nil.
9661
9662 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9663
9664         * nnimap.el (nnimap-unselect-group): Make into its own function.
9665         (nnimap-request-rename-group): Unselect group before renaming.
9666         This had gotten lost somewhere.
9667         (nnimap-request-accept-article): Keep track of examined groups, and
9668         unselect the group before APPENDing to read-only groups.
9669         (nnimap-request-move-article): Clear flags before moving so that they
9670         can be re-set later.
9671
9672 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9673
9674         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
9675         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
9676
9677 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9678
9679         * gnus-art.el (gnus-mime-display-single):
9680         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
9681         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
9682         parameter.
9683
9684 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9685
9686         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
9687         (shr-table-vertical-line): New variable.
9688         (shr-insert-table): Use it.
9689
9690 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9691
9692         * gnus-html.el (gnus-html-wash-images): Don't display images if
9693         gnus-inhibit-images is non-nil; register displayer for cid images.
9694         (gnus-html-display-image): Work for cid image.
9695         (gnus-html-insert-image): Allow arguments.
9696         (gnus-html-put-image): Inhibit read-only.
9697         (gnus-html-prefetch-images): Don't prefetch images if
9698         gnus-inhibit-images is non-nil.
9699
9700 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9701
9702         * shr.el (shr-put-image): Break lines when inserting big pictures.
9703
9704 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
9705
9706         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
9707         sender, thanks Katsumi Yamaoka.
9708
9709 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
9710
9711         * nnir.el (nnir-run-imap): Reverse the article list for each group
9712         rather than the whole list.
9713
9714 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9715
9716         * shr.el (shr-image-displayer): Protect function against non-existent
9717         image source.
9718
9719         * gnus-art.el (gnus-inhibit-images): New user option.
9720         (gnus-mime-display-single): Don't display image if it is non-nil.
9721
9722         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
9723         gnus-inhibit-images.
9724
9725         * shr.el (shr-image-displayer): New function.
9726         (shr-tag-img): Use it.
9727
9728 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
9729
9730         * mml2015.el (mml2015-epg-sign): Use From header.
9731
9732 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9733
9734         * gnus-html.el (gnus-html-wash-images): Register a displayer.
9735
9736         * gnus-util.el (gnus-find-text-property-region): Return markers.
9737
9738         * shr.el (shr-tag-img): Put a displayer in the text property.
9739
9740         * gnus-util.el (gnus-find-text-property-region): New utility function.
9741
9742         * gnus-html.el (gnus-html-display-image): Make the alt optional.
9743         (gnus-html-show-images): Remove.
9744
9745         * gnus-art.el (gnus-article-show-images): New, more general function.
9746
9747         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
9748         image url text properties.
9749
9750         * shr.el: Ditto.
9751
9752         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
9753         gnus-agent-auto-agentize-methods is set.  Which it isn't.
9754
9755 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9756
9757         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
9758         work for two or more articles.
9759
9760 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9761
9762         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
9763         divide an image that's in an html article to two or more when washing
9764         non-ASCII characters in alt text of it.
9765
9766 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9767
9768         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
9769         smime-decrypt-region using function argument.
9770         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
9771
9772         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
9773
9774         * smime.el (smime-decrypt-region): Catch it.
9775
9776 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9777
9778         * smime.el (smime-mode-map): Move initialization into declaration.
9779         (gnus-run-mode-hooks): Don't autoload.
9780         (smime-mode): Use define-derived-mode.
9781
9782 2010-11-11  Glenn Morris  <rgm@gnu.org>
9783
9784         * smime.el (from): Restrict declaration to XEmacs.
9785
9786         * nnir.el (gnus-group-topic-name): Autoload.
9787
9788 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9789
9790         * shr.el (shr-insert): Don't break long line if it is because of
9791         kinsoku-bol characters in the line end.
9792
9793 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
9794
9795         * nnir.el (nnir-request-move-article): Fix to provide original group
9796         and subject.
9797         (nnir-warp-to-article): Don't fail on articles whose headers haven't
9798         been retrieved.
9799
9800         * gnus-sum.el (gnus-summary-move-article): Use original group and
9801         subject for virtual articles such as those in an nnir summary buffer.
9802
9803 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9804
9805         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
9806         least 21.5).
9807
9808         * smime.el (from): Declare it again for XEmacs.
9809
9810 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9811
9812         * message.el (message-resend): Don't disable encoding unless it's
9813         already encoded.
9814
9815         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
9816         low-numbered articles.
9817
9818 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9819
9820         * rfc2047.el (rfc2047-syntax-table): Simplify.
9821
9822         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
9823
9824         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
9825         set-char-table-range for XEmacs.
9826
9827 2010-11-10  Glenn Morris  <rgm@gnu.org>
9828
9829         * time-date.el (time-to-seconds): Always an alias on Emacs,
9830         never a real function.
9831         (with-no-warnings): Remove compat stub, now unused.
9832         (time-less-p): Doc fix.
9833         (time-to-number-of-days): Simplify.
9834
9835         * smime.el (from): Remove unused declaration.
9836
9837         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
9838         (gnus-float-time): On Emacs, always an alias.
9839
9840         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
9841         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
9842
9843 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9844
9845         * dgnushack.el: Don't use ignore-errors in the top level form since it
9846         is unavailable in XEmacs even if cl is loaded.
9847
9848         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
9849
9850 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9851
9852         * shr.el (browse-url-mailto): Autoload.
9853
9854         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
9855
9856         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
9857         regexp doesn't need quoting.
9858
9859 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
9860
9861         * message.el (message-subject-trailing-was-ask-regexp)
9862         (message-subject-trailing-was-regexp): Match was: in addition to was.
9863
9864 2010-11-09  Glenn Morris  <rgm@gnu.org>
9865
9866         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
9867         (nnbabyl-check-mbox): Use point-at-bol.
9868
9869 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9870
9871         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
9872
9873         * message.el (message-mailto): New function.
9874         (message-mailto): Should accept other parameters.
9875         (message-mailto): Remove since it duplicates browse-url-mailto
9876         functionality.
9877
9878 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9879
9880         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
9881         methods.
9882         (gnus-read-active-file): Ditto.
9883
9884         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
9885         ": " from the prompt.
9886         (gnus-group-make-group): Ditto.
9887
9888 2010-11-07  Glenn Morris  <rgm@gnu.org>
9889
9890         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
9891         (gnus-bookmark-kill-line): Use point-at-eol.
9892
9893 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9894
9895         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
9896         asterisks in From header.
9897
9898 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9899
9900         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
9901         string to avoid making the From headers syntactically invalid.
9902
9903         * message.el (message-send-mail): Don't insert courtesy messages if the
9904         message already has List-Post and List-ID messages.
9905
9906 2010-11-06  Glenn Morris  <rgm@gnu.org>
9907
9908         * gnus-art.el (gnus-treat-article): Give dynamic local variables
9909         `condition', `type', `length' a prefix.
9910         (gnus-treat-predicate): Update for above name changes.
9911
9912 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
9913
9914         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
9915         binding.  Handled by `gnus-summary-refer-thread' instead.
9916         (nnir-warp-to-article): New backend function.
9917
9918         * nnimap.el (nnimap-request-thread): Force dependency updating.
9919
9920         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
9921         (gnus-summary-refer-thread): Rework to improve thread-referral.
9922
9923         * gnus-int.el (gnus-warp-to-article): New function.
9924
9925         * gnus-sum.el (gnus-summary-article-map): Bind it.
9926
9927 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
9928
9929         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
9930         gnus-summary-refer-thread.
9931
9932         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
9933         headers.
9934         (gnus-summary-limit-include-thread): Prevent articles in thread from
9935         being cut in gnus-cut-threads.
9936         (gnus-summary-refer-thread): Limit retrieved headers to those in
9937         thread.
9938
9939 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9940
9941         * message.el (message-send-mail): Use the value of
9942         message-courtesy-message from the message buffer.
9943
9944         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
9945
9946         * shr.el (shr-browse-url): Implement mailto: URLs.
9947
9948         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
9949         "raw".
9950
9951         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
9952         if it's already selected.
9953
9954         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
9955
9956 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9957
9958         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
9959         to measure the length and truncate alt text.
9960
9961 2010-11-03  Glenn Morris  <rgm@gnu.org>
9962
9963         * nndiary.el (nndiary-generate-nov-databases-1)
9964         (nndiary-generate-active-info): Rename dynamic variable `files' to
9965         something less generic.
9966
9967 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
9968
9969         * nnir.el (nnir-request-move-article): Call the underlying backend to
9970         move articles from nnir.
9971
9972 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9973
9974         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
9975
9976 2010-11-02  Julien Danjou  <julien@danjou.info>
9977
9978         * nnir.el: Remove wais support.
9979
9980 2010-11-02  Glenn Morris  <rgm@gnu.org>
9981
9982         * gnus-html.el: Reorder requirements to quieten compiler.
9983
9984 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9985
9986         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
9987         properly for XEmacs as well.
9988         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
9989         (gnus-article-natural-long-line-p): Use window-width rather than
9990         frame-width.
9991
9992 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
9993
9994         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
9995         (nnir-read-parms): Don't modify query.
9996         (nnir-run-query): Add ability to search topic on current line.
9997         (nnir-get-active): Clean up.
9998
9999 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10000
10001         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
10002         degenerate articles.
10003
10004         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
10005         (gnus-print-buffer): Just print the buffer as is, without any copying
10006         to a buffer and then re-highlighting.
10007
10008         * nnimap.el (nnimap-request-group): Store the new updated info.
10009         (nnimap-request-group): Select the group when we don't know whether it
10010         exists or not.
10011
10012         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
10013         groups.
10014
10015         * gnus-group.el (gnus-group-find-new-groups): Display all the new
10016         groups.
10017
10018         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
10019         groups.
10020
10021         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
10022         long-lines case by only filling the long lines.
10023
10024         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
10025         (bug#7311).
10026
10027 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10028
10029         * shr.el: No need to declare `declare-function' since shr.el is for
10030         only Emacsen that provide `libxml-parse-html-region'.
10031
10032         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
10033         effective only in a file it is referred to.
10034
10035 2010-11-01  Glenn Morris  <rgm@gnu.org>
10036
10037         * mm-util.el (gnus-completing-read): Autoload.
10038         (mm-read-coding-system): Simplify Emacs definition.
10039
10040         * nnmail.el (gnus-activate-group):
10041         * nnimap.el (gnutls-negotiate):
10042         * nntp.el (netrc-parse): Fix declarations.
10043
10044 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10045
10046         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
10047         string-match-p in Emacs >=23.
10048
10049         * gnus-msg.el (gnus-configure-posting-styles):
10050         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
10051
10052 2010-11-01  Glenn Morris  <rgm@gnu.org>
10053
10054         * nnir.el (declare-function): Add compat stub.
10055         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
10056         (nnir-run-gmane): Require 'mm-url.
10057
10058         * mm-util.el (mm-string-to-multibyte): Simplify.
10059
10060         * shr.el (declare-function): Add compat stub.
10061         (url-cache-create-filename): Declare.
10062         (mm-disable-multibyte, widget-convert-button): Autoload.
10063
10064         * smime.el (ldap-search): Declare.
10065         (smime-cert-by-ldap-1): Require ldap on Emacs.
10066
10067         * nnimap.el: Require nnmail, and gnus-sum when compiling.
10068         (nnimap-keepalive): Use gnus-float-time.
10069
10070         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
10071         (mail-source-delete-crash-box): Use gnus-float-time.
10072
10073         * gnus-dired.el (gnus-completing-read): Autoload.
10074
10075         * mm-view.el (gnus-rescale-image): Autoload.
10076
10077         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
10078
10079         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
10080
10081         * sieve-manage.el: Require 'cl when compiling.
10082
10083         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
10084         (gnus-iswitchb-completing-read): Require iswitchb.
10085         (gnus-select-frame-set-input-focus): Silence compiler.
10086
10087 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10088
10089         * message.el (message-subject-trailing-was-query): Change default to t,
10090         since I think that's what most people want.
10091
10092         * nnimap.el (nnimap-request-accept-article): Erase buffer before
10093         appending for easier debugging.
10094         (nnimap-wait-for-connection): Take a regexp.
10095         (nnimap-request-accept-article): Wait for the continuation line before
10096         sending anything unless we're streaming.
10097
10098         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
10099         leave the header washing to take place.
10100
10101 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
10102
10103         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
10104         regular expression match and replace in posting styles.
10105
10106 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
10107
10108         * nnir.el (gnus-group-make-nnir-group, nnir-run-query): Allow searching
10109         an entire server.
10110         (nnir-get-active): New function.
10111         (nnir-run-imap): Use it.
10112         (nnir-run-gmane): Who knew, gmane search returns an article score!
10113
10114         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
10115         server on the current line with nnir.
10116
10117 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10118
10119         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
10120         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
10121         left edge.
10122         (gnus-article-foldable-buffer): Skip past the prefix when determining
10123         raggedness.
10124
10125         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
10126         the raw article, and change `C-u g' to show the article without doing
10127         treatments.
10128
10129         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
10130         on to `gnus-treat-article'.
10131         (gnus-inhibit-article-treatments): New variable.
10132
10133         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
10134
10135         * gnus-art.el (gnus-treatment-function-alist): Have
10136         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
10137         (gnus-treat-fill-long-lines): Change default to fill all text/plain
10138         sections.
10139
10140         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
10141         parameter.
10142         (gnus-article-fill-cited-long-lines): New function.
10143         (gnus-article-fill-cited-article): Allow filling only long sections.
10144
10145         * shr.el (shr-find-fill-point): Don't break lines between punctuation
10146         and non-punctuation (like after the apostrophe in "'We").
10147
10148         * gnus-sum.el (gnus-summary-select-article): Make sure
10149         gnus-original-article-buffer is alive.
10150
10151         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
10152         reflect the order they're in in the digest.
10153
10154         * gnus.el (gnus-group-startup-message): Move point to the start of the
10155         buffer.
10156
10157         * nnimap.el (nnimap-capability): New function.
10158         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
10159         is set.
10160
10161 2010-10-31  David Engster  <dengste@eml.cc>
10162
10163         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
10164         conform with changes to gnus-completing-read.
10165
10166 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10167
10168         * shr.el (shr-tag-img): Output "*" instead of "[img]".
10169
10170 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
10171
10172         * nnir.el: Move defvar, defcustom around to keep file organized
10173         and keep byte-compiler quiet.
10174         (nnir-read-parms): Accept search-engine as arg.
10175         (nnir-run-query): Pass search-engine as arg.
10176         (nnir-search-engine): Remove.
10177
10178 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10179
10180         * shr.el (shr-generic): The text nodes should be text, not :text.
10181
10182         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
10183         later in the file.
10184
10185 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
10186
10187         * nnir.el: General clean up.  Allow searching with multiple engines.
10188         Allow separate extra-parameters for each engine.
10189         Batch queries when possible.
10190         (nnir-imap-default-search-key, nnir-method-default-engines):
10191         Add customize interface.
10192         (nnir-run-gmane): New engine.
10193         (nnir-engines): Use it.  Qualify all prompts with engine name.
10194         (nnir-search-engine): Remove global variable.
10195         (nnir-run-hyrex): Restore for now.
10196         (nnir-extra-parms, nnir-search-history): New variables.
10197         (gnus-group-make-nnir-group): Use them.
10198         (nnir-group-server): Remove in favor of gnus-group-server.
10199         (nnir-request-group): Avoid searching twice.
10200         (nnir-sort-groups-by-server): New function.
10201
10202 2010-10-30  Julien Danjou  <julien@danjou.info>
10203
10204         * gnus-group.el: Remove gnus-group-fetch-control.
10205
10206         * gnus-start.el (gnus-find-new-newsgroups):
10207         Remove gnus-check-first-time-used.
10208
10209         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
10210
10211 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
10212
10213         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
10214         set on groups that don't have \* permanentflags.
10215
10216 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10217
10218         * shr.el (shr-tag-span): Drop colorization of regions since we don't
10219         control the background color.
10220         (shr-tag-img): Ignore very small web bug type images.
10221         (shr-put-image): Add help-echo alt texts to the images.
10222         (shr-tag-video): Show the video poster image.
10223
10224 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10225
10226         * shr.el (shr-table-depth): New variable.
10227         (shr-tag-table-1): Only insert the images after the top-level table.
10228
10229         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
10230
10231         * gnus-util.el (gnus-list-memq-of-list): New function.
10232
10233         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
10234         selected.
10235         (nnimap-unsplittable-articles): New slot.
10236         (nnimap-new-articles): Use it.
10237
10238 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
10239
10240         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
10241         move to the previous line on `M-g'.
10242
10243 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10244
10245         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
10246         *-request-group, which seems unnecessary.
10247
10248         * nnimap.el (nnimap-quote-specials): Function copied over from
10249         imap.el.
10250         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
10251         they support that.  Suggested by Tom Regner.
10252
10253 2010-10-29  Julien Danjou  <julien@danjou.info>
10254
10255         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
10256         defalias.
10257         (gnus-summary-delete-marked-with): Remove obsolete defalias.
10258
10259         * gnus.el: Remove `gnus-nntp-service' variable.
10260         (gnus-secondary-servers): Make obsolete.
10261         (gnus-nntp-server): Make obsolete.
10262
10263         * gnus-start.el (gnus-1): Remove x-splash calls.
10264
10265         * gnus-ems.el (gnus-x-splash): Remove.
10266
10267         * gnus.el (gnus-group-startup-message): Simplify/update code.
10268
10269         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
10270         definition.
10271
10272         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
10273         capability before doing anything.
10274         (gnus-group-insert-group-line): Remove useless
10275         gnus-group-remove-excess-properties.
10276
10277 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10278
10279         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
10280
10281 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10282
10283         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
10284         config after reselecting.
10285
10286 2010-10-28  Julien Danjou  <julien@danjou.info>
10287
10288         * shr.el (shr-put-image): Use point even if only inserting text.
10289         (shr-put-image): Save excursion when inserting alt text on non-graphic
10290         display, so the behavior is the same when we are on a graphic display.
10291
10292         * nnir.el (nnir-run-swish-e): Remove hyrex support.
10293
10294 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10295
10296         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
10297         (gnus-mime-copy-part): Check coding system, not charset.
10298         (gnus-mime-view-part-externally): Never remove part.
10299         (gnus-mime-view-part-internally): Don't remove part here.
10300         (gnus-article-part-wrapper): Make sure MIME tag is visible.
10301         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
10302         multipart/alternative.
10303
10304         * mm-decode.el (mm-display-part): Take optional arg `force'.
10305
10306 2010-10-26  Julien Danjou  <julien@danjou.info>
10307
10308         * gnus-group.el (gnus-group-default-list-level): Add this function to
10309         compute the default list level.
10310         (gnus-group-default-list-level): Add possibility to use a function.
10311
10312 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10313
10314         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
10315
10316         * gnus-group.el (gnus-group-completing-read)
10317         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
10318         gnus-replace-in-string.
10319
10320 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10321
10322         * shr.el (shr-tag-div): Add.
10323
10324         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
10325
10326 2010-10-25  Julien Danjou  <julien@danjou.info>
10327
10328         * gnus-util.el: Remove `gnus-with-local-quit'.
10329
10330         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
10331
10332 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10333
10334         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
10335         the original article buffer.
10336
10337 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10338
10339         * nnimap.el (nnimap-request-head): New function.
10340         (nnimap-request-move-article): Try to be slightly faster by not
10341         requesting the entire message when moving.
10342         (nnimap-transform-headers): Don't bug out on bodiless articles.
10343         (nnimap-send-command): Have no outstanding messages if the IMAP server
10344         doesn't support streaming.
10345         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
10346
10347 2010-10-24  Julien Danjou  <julien@danjou.info>
10348
10349         * message.el (message-default-headers): Fix type.
10350
10351 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10352
10353         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
10354         prefetching images.
10355
10356         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
10357         backend for unknown groups.  This is mainly useful for nnimap groups.
10358
10359         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
10360         group isn't covered by the agent.
10361
10362 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
10363
10364         * nnir.el (nnir-method-default-engines): New variable.
10365         (nnir-run-query): Use it.
10366         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
10367         (gnus-summary-nnir-goto-thread): Change group if needed.
10368
10369         * gnus-group.el (gnus-group-group-map): Add key binding for
10370         gnus-group-make-nnir-group.
10371
10372 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10373
10374         * shr.el (shr-tag-object): Add.
10375
10376         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
10377         original article buffer live.
10378         (gnus-summary-select-article-buffer):
10379         Mention gnus-widen-article-buffer.
10380
10381 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10382
10383         * shr.el (shr-tag-strong): Add.
10384
10385 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10386
10387         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
10388         group names.  They mess up the group buffer badly.
10389
10390         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
10391
10392         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
10393         instead of the summary one.
10394
10395 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10396
10397         * mml.el (mml-preview): Work properly when editing article.
10398
10399         * gnus-start.el (gnus-read-active-file-1): Don't add method to
10400         gnus-have-read-active-file if it's already been in.
10401
10402 2010-10-22  Tom Tromey  <tromey@redhat.com>
10403
10404         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
10405         gnus-group-completing-read.
10406
10407 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10408
10409         * message.el (message-mode-map): Don't bind M-; to comment region, to
10410         allow the global comment-dwim to work.
10411
10412 2010-10-21  Julien Danjou  <julien@danjou.info>
10413
10414         * message.el (message-setup-1): Allow message-default-headers to be a
10415         function.
10416
10417 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
10418
10419         * shr.el (shr-tag-table): Simplify.
10420
10421 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10422
10423         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
10424         to avoid trying to snarf invalid stuff.
10425
10426         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
10427
10428         * gnus.el (gnus-message-archive-group): Quote value.
10429         (gnus-message-archive-group): Mark as changed.
10430
10431         * shr.el (shr-add-font): Don't put the font properties on the newline
10432         or the indentation.
10433
10434         * message.el (message-fix-before-sending): Change options when sending
10435         non-printable characters.
10436
10437         * gnus.el (gnus-message-archive-method): Change the default to
10438         monthly outgoing groups.
10439
10440         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
10441         that have gotten new numbers.
10442
10443         * nnimap.el (nnimap-request-replace-article): New function.
10444
10445 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
10446
10447         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
10448         (nnrss-request-article): Don't use special html washing code.
10449
10450 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10451
10452         * shr.el (shr-tag-table): Remove useless nconc.
10453
10454 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10455
10456         * gnus-art.el (article-wash-html): Simplify and remove the charset
10457         stuff.  Use the normal html rendering code instead of the special html
10458         washing code.
10459
10460         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
10461         `gnus-w3m' symbols.
10462         (mm-text-html-washer-alist): Remove.
10463
10464         * mm-decode.el (mm-inline-text-html-renderer): Remove.
10465         (mm-inline-media-tests): Remove use.
10466         (mm-text-html-renderer): Change default to the `shr' symbol.
10467
10468         * mm-view.el (mm-inline-text-html): Remove use.
10469
10470         * gnus-art.el (gnus-blocked-images): New function.  Allow the
10471         `gnus-blocked-images' to be a function.
10472         (gnus-article-wash-function): Remove.
10473
10474 2010-10-20  Julien Danjou  <julien@danjou.info>
10475
10476         * spam.el (spam-list-of-processors): Mark as obsolete.
10477
10478         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
10479         (nnimap-insert-partial-structure): Fix boundary detection.
10480
10481 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
10482
10483         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
10484         run file-truename on remote files.  This can be expensive and even
10485         prevent one from editing drafts if some unrelated buffer has a stale
10486         connection.
10487
10488 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10489
10490         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
10491         kinsoku-eol regardless of shr-kinsoku-shorten.
10492         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
10493         (shr-tag-table): Support caption, thead, and tfoot.
10494
10495 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10496
10497         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
10498         lines.
10499         (shr-save-contents): New command and keystroke.
10500
10501         * nndoc.el (nndoc-type-alist): Add git support.
10502         (nndoc-git-type-p): New function.
10503         (nndoc-transform-git-article): Ditto.
10504         (nndoc-transform-git-headers): Ditto.
10505         (nndoc-transform-git-headers): Generate Subject headers.
10506
10507         * shr.el (shr-parse-style): New function.
10508         (shr-tag-span): Ditto.
10509
10510         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
10511         to `G G' to avoid collisions.
10512
10513 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10514
10515         * shr.el: Load kinsoku if necessary.
10516         (shr-kinsoku-shorten): New internal variable.
10517         (shr-find-fill-point): Make kinsoku shorten text line if
10518         shr-kinsoku-shorten is bound to non-nil.
10519         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
10520         shr-indentation too when testing if table is wider than frame width.
10521         (shr-insert-table): Use `string-width' instead of `length' to measure
10522         text width.
10523         (shr-insert-table-ruler): Make sure indentation is done at bol.
10524
10525 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10526
10527         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
10528         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
10529         undecoded network data.
10530
10531 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10532
10533         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
10534         name in the mode line spec so that the mode line menu works
10535         (bug#2431).
10536
10537         * message.el (message-get-reply-headers): If we're fed `to-address',
10538         then always use that.
10539
10540         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
10541         aren't so wide as to need to switch off the edit menu.
10542
10543         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
10544         binding.  Suggested by Leo <sdl.web@gmail.com> (bug#6613).
10545
10546         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
10547         `M-g'.
10548         (nnimap-update-info): Update flags/read marks even if \* isn't part of
10549         the permanent marks.
10550
10551 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
10552
10553         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
10554         Splitting according to references/in-reply-to obeys the ignore-groups
10555         variable, while splitting by sender and subject do not.
10556
10557 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10558
10559         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
10560         alist, so that we can look for non-Unicode chars.
10561         (article-translate-strings): Allow both character and string maps.
10562
10563 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10564
10565         * shr.el (shr-insert): Don't insert space behind a wide character
10566         categorized as kinsoku-bol, or between characters both categorized as
10567         nospace.
10568
10569 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
10570
10571         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
10572         headers to gnus-newsgroup-headers.
10573
10574 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10575
10576         * shr.el (shr-tag-img): Don't align images -- since we're not
10577         rescaling, this often leads to ugly displays.
10578
10579 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
10580
10581         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
10582         duplicates.
10583
10584 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
10585
10586         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
10587         call.
10588
10589 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10590
10591         * gnus.el: Autoload gnus-html-show-images.
10592
10593         * nnimap.el: Use nnheader-message throughout.
10594
10595         * shr.el (shr-tag-img): Ignore images with no data.
10596
10597 2010-10-15  Julien Danjou  <julien@danjou.info>
10598
10599         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
10600         a possibility to disable format=flow encoding when using hard newlines.
10601
10602 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10603
10604         * shr.el (shr-insert): Remove space inserted before or after a
10605         breakable character or at the beginning or the end of a line.
10606         (shr-find-fill-point): Do kinsoku; find the second best point or give
10607         it up if there's no breakable point.
10608
10609 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10610
10611         * nnimap.el (nnimap-open-connection): Message when opening connection
10612         for debugging purposes.
10613
10614         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
10615         on every setup buffer call to allow this to change from article to
10616         article.
10617
10618         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
10619         buffers where we have a wide table.
10620
10621 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
10622
10623         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
10624         uses *-request-thread.
10625
10626 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10627
10628         * nnimap.el (nnimap-open-connection): Remove %s from openssl
10629         incantation, which is no longer valid.
10630
10631 2010-10-14  Julien Danjou  <julien@danjou.info>
10632
10633         * shr.el: Fix defcustom type (char -> character).
10634
10635 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10636
10637         * nnimap.el (nnimap-open-connection): tls-program should be a list of
10638         programs.
10639
10640 2010-10-14  Julien Danjou  <julien@danjou.info>
10641
10642         * shr.el (shr-tag-a): Use url-link as widget type.
10643
10644         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
10645         `gnus-group-get-icon'.
10646
10647 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10648
10649         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
10650         This should make server editing work better.
10651
10652         * shr.el (shr-find-fill-point): Don't inloop on indented text.
10653
10654         * tls.el (tls-program): Remove spurious %s from openssl.
10655
10656         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
10657         (nnimap-parse-flags): Fix regexp.
10658
10659         * shr.el (shr-find-fill-point): Use a filling algorithm that should
10660         probably work for CJVK text, too.
10661
10662         * nnimap.el (nnimap-extend-tls-programs): Remove.
10663         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
10664
10665         * tls.el (tls-starttls-switches): Remove starttls hack.
10666         (open-tls-stream): Ditto.
10667         (tls-find-starttls-argument): Ditto.
10668
10669 2010-10-13  Julien Danjou  <julien@danjou.info>
10670
10671         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
10672         responses.
10673
10674 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10675
10676         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
10677
10678         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
10679         anything in Emacs.
10680
10681         * shr.el (shr-current-column): Remove buggy and unnecessary function.
10682
10683 2010-10-13  Julien Danjou  <julien@danjou.info>
10684
10685         * shr.el (shr-width): Make shr-width a defcustom with default to
10686         fill-column.
10687         (shr-tag-img): Use shr-width rather than fill-column.
10688
10689 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10690
10691         * dgnushack.el (byte-optimize-apply):
10692         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
10693
10694         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
10695         position when (X-)Faces exist.
10696         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
10697         avatars when called interactively.
10698
10699 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10700
10701         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
10702         gnus-article-x-face-too-ugly is bound.
10703
10704 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10705
10706         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
10707
10708         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
10709         mailbox that doesn't exist.
10710
10711 2010-10-12  Julien Danjou  <julien@danjou.info>
10712
10713         * shr.el (shr-tag-img): Encode URL properly when retrieving.
10714         (shr-get-image-data): Encode URL properly when fetching from cache.
10715         (shr-tag-img): Use aligned-to spaces to align correctly images.
10716
10717         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
10718         before inserting the Gravatar.
10719
10720         * shr.el (shr-tag-img): Add align attribute support for <img>.
10721
10722 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10723
10724         * gnus-gravatar.el (gnus-art): Require.
10725
10726         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
10727         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
10728         Remove long obsoleted functions.
10729
10730 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10731
10732         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
10733
10734         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
10735
10736         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
10737         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
10738         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
10739         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
10740         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
10741         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
10742         * sieve-manage.el, smime.el, spam.el:
10743         Fix comment for declare-function.
10744
10745 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10746
10747         * nnimap.el (nnimap-request-rename-group): Select group read-only
10748         before renaming it.
10749
10750         * shr.el (shr-insert): Fix up the white space only regexp.
10751
10752         * nnimap.el (nnimap-transform-split-mail): Not all articles have
10753         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
10754
10755         * shr.el (shr-current-column): New function.
10756         (shr-find-fill-point): New function.
10757
10758 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
10759
10760         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
10761         numbers.
10762
10763 2010-10-11  Julien Danjou  <julien@danjou.info>
10764
10765         * shr.el (shr-hr-line): Add.
10766         (shr-tag-hr): Use shr-hr-line to specify which character to use to
10767         display hr lines.
10768         (shr-max-columns): Do not change state to nil if we just inserting
10769         spaces.
10770
10771 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10772
10773         * gnus-topic.el (gnus-topic-read-group): If after the last group,
10774         select the last group.
10775
10776 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
10777
10778         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
10779
10780 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
10781
10782         * dig.el (dig-mode-map): Declare and define in one step.
10783
10784 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10785
10786         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
10787         for Gnus.
10788         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
10789         (nnimap-update-qresync-info): Mark \Seen articles as read.
10790
10791         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
10792         non-variable, too.
10793
10794         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
10795         available.
10796         (nnimap-update-info): Rely more on the current active than the param
10797         active to avoid marking articles as read too much.
10798
10799         * auth-source.el (auth-source-create): Use (user-login-name) for the
10800         user name default.
10801
10802         * nnimap.el (nnimap-update-info): If the server doesn't return any
10803         useful info, just use the previous info.
10804         (nnimap-update-info): Prefer old info over start-article.
10805         (nnimap-update-qresync-info): Finish implementing QRESYNC.
10806
10807 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
10808
10809         * nnir.el (autoload): Clean up autoloads.
10810         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
10811         Use key rather than value.
10812         (nnir-imap-search-other): New variable.
10813         (nnir-read-parm): Use it.
10814         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
10815         (gnus-summary-nnir-goto-thread): Modify to work with imap.
10816
10817 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10818
10819         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
10820         the process, too.
10821
10822 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10823
10824         * spam.el (gnus-summary-mode-map): Bind to "$".
10825         Suggested by Russ Allbery.
10826
10827         * shr.el: Rework the way things are indented by <li> slightly.
10828
10829         * gnus.el (gnus-group-set-parameter): Fix typo.
10830
10831         * nnimap.el: Start implementing QRESYNC support.
10832
10833 2010-10-09  Julien Danjou  <julien@danjou.info>
10834
10835         * nnir.el (nnir-engines): Fix too many arguments.
10836
10837 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10838
10839         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
10840         group is the "last", so that the backends like nnfolder actually save
10841         their folders.
10842
10843         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
10844         try to use that for the tls stream.
10845         (nnimap-retrieve-group-data-early): Rework the marks code to heed
10846         UIDVALIDITY and find out which groups are read-only and not.
10847         (nnimap-get-flags): Use the same marks parsing code as the rest of
10848         nnimap.
10849
10850 2010-10-09  Julien Danjou  <julien@danjou.info>
10851
10852         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
10853
10854         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
10855         retrieving gravatars.
10856
10857         * shr.el (shr-table-corner): Add.
10858         (shr-table-line): Add.
10859         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
10860
10861 2010-10-08  Julien Danjou  <julien@danjou.info>
10862
10863         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
10864
10865 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
10866
10867         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
10868
10869         * gnus-sum.el (gnus-mark-article-as-unread)
10870         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
10871         (gnus-summary-set-bookmark): Use it.
10872
10873         * gnus-msg.el (gnus-setup-message): Use it.
10874
10875         * gnus-demon.el (gnus-demon-remove-handler): Use it.
10876
10877         * gnus.el (gnus-group-remove-parameter): Use it.
10878
10879         * gnus-group.el (gnus-group-make-web-group): Use it.
10880
10881         * gnus-demon.el (gnus-demon-remove-handler): Use it.
10882
10883         * nnregistry.el: Update docs to mention manual.
10884
10885         * gnus-registry.el: Update docs to mention nnregistry.el.
10886         (gnus-registry-initialize): Don't install nnregistry refer method
10887         automatically.
10888         (gnus-registry-install-nnregistry): Remove it.
10889
10890 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10891
10892         * shr.el (shr-insert): Don't insert double spaces.
10893
10894 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10895
10896         * gnus-gravatar.el (gnus-treat-from-gravatar)
10897         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
10898         called interactively.
10899
10900         * gnus-art.el (gnus-mime-view-part-externally)
10901         (gnus-mime-view-part-internally): Make predicate function passed to
10902         gnus-mime-view-part-as-type assume argument is a mime type, not a list
10903         of a mime type.
10904
10905         * shr.el (shr-table-widths): Don't use cl function `reduce'.
10906
10907 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10908
10909         * shr.el (require): Require cl when compiling.
10910         (shr-tag-hr): New function.
10911
10912         * nnimap.el (nnimap-update-info): Remove double setting of high.
10913         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
10914         This makes nnimap work properly on Courier again.
10915
10916         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
10917         the variable for backwards compatibility.
10918
10919         * mm-decode.el (mm-save-part): If given a non-directory result, expand
10920         the file name before using to avoid setting mm-default-directory to
10921         nil.
10922
10923         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
10924         bidning gnus-agent variables.
10925
10926         * shr.el (shr-render-td): Use a cache for the table rendering function
10927         to avoid getting an exponential rendering behavior in nested tables.
10928         (shr-insert): Rework the line-breaking algorithm.
10929         (shr-insert): Don't leave trailing spaces.
10930         (shr-insert-table): Also insert empty TDs.
10931         (shr-tag-blockquote): Ensure paragraphs after </ul>.
10932
10933 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
10934
10935         * gnus-sum.el (gnus-number): Rename from `number'.
10936         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
10937         (gnus-summary-limit-children): Update uses correspondingly.
10938
10939 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10940
10941         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
10942         (gnus-gravatar-transform-address): Don't show avatars of people of
10943         which mail addresses match gnus-gravatar-too-ugly.
10944
10945 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10946
10947         * shr.el (shr-table-widths): Expand TD elements to fill available
10948         space.
10949
10950 2010-10-07  Julien Danjou  <julien@danjou.info>
10951
10952         * nnimap.el (nnimap-request-rename-group): Add this method.
10953
10954 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10955
10956         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
10957         name from XEmacs' function-arglist.
10958
10959         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
10960         gravatar under XEmacs.
10961
10962 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
10963
10964         * auth-source.el: Update docs with TODO items.
10965
10966         * gnus-sync.el: Update docs to explain state and plans.
10967
10968         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
10969         Hooks for mark updates.
10970         (gnus-request-set-mark, gnus-request-update-mark): Use them.
10971
10972         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
10973         hooks with arguments, which is needed for mark update hooks.
10974
10975 2010-10-06  Julien Danjou  <julien@danjou.info>
10976
10977         * gnus.el (gnus-expand-group-parameter): Only return and act on what
10978         was matched.
10979
10980         * sieve-manage.el: Update example in `Commentary'.
10981
10982         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
10983
10984         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
10985         not 2000.
10986         (sieve-manage-authenticate): Re-add function.
10987
10988 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10989
10990         * shr.el (shr-insert): Get 'space transition right.
10991         (shr-render-td): Only delete space at the end of the TD.
10992
10993         * nnimap.el (nnimap-open-connection): Prepare to support
10994         open-gnutls-stream.
10995
10996         * shr.el: Rearrange function order to be more logical.
10997
10998 2010-10-06  Julien Danjou  <julien@danjou.info>
10999
11000         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
11001         (nnrss-discover-feed): Remove 404 URL in docstring.
11002
11003         * nnir.el: Fix Swish-E URL.
11004         Fix Namazu URL.
11005
11006         * message.el (message-change-subject): Remove 404 URL in a comment.
11007
11008 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11009
11010         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
11011         called interactively.
11012
11013         * gnus-util.el (gnus-remove-if): Allow hash table.
11014         (gnus-remove-if-not): New function.
11015
11016         * gnus-art.el (gnus-mime-view-part-as-type):
11017         * gnus-score.el (gnus-summary-score-effect):
11018         * gnus-sum.el (gnus-read-move-group-name):
11019         Replace remove-if-not with gnus-remove-if-not.
11020
11021         * gnus-group.el (gnus-group-completing-read):
11022         Regard collection as a hash table if it is not a list.
11023
11024 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11025
11026         * shr.el (shr-render-td): Allow blank/missing <TD>s.
11027
11028         * shr.el: Document the table-rendering algorithm.
11029
11030 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
11031
11032         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
11033         for Emacsen having no `libxml-parse-html-region' support.
11034
11035 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11036
11037         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
11038         invalid URLs.
11039
11040         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
11041         line-broken.
11042         (shr-tag-img): Ignore image fetching errors.
11043         (shr-overlays-in-region): Compute overlay positions correctly.
11044
11045         * mm-decode.el (mm-shr): Require shr.
11046
11047         * gnus-art.el (gnus-blocked-images): Move variable here.
11048
11049         * shr.el (shr-insert-table): Bind free variable.
11050
11051         * mm-decode.el (mm-shr): Bind shr-content-function.
11052
11053         * shr.el (shr-content-function): New variable.
11054
11055         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
11056         added for symmetry.
11057
11058         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
11059
11060         * gnus-group.el (gnus-group-make-group): Doc fix.
11061
11062         * nnimap.el (nnimap-request-newgroups): Return success.
11063
11064         * shr.el (shr-find-elements): New function.
11065         (shr-tag-table): Put all the images after the table.
11066         (shr-tag-table): Really inhibit images inside the table.
11067         (shr-collect-overlays): Copy over overlays from the TD elements to the
11068         main document.
11069
11070         * mm-decode.el (mm-shr): Bind shr-blocked-images to
11071         gnus-blocked-images.
11072
11073 2010-10-05  Julien Danjou  <julien@danjou.info>
11074
11075         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
11076
11077         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
11078         (gnus-html-maximum-image-size): Add this function.
11079         (gnus-html-put-image): Use gnus-html-maximum-image-size.
11080
11081         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
11082         server-value of the capability is nil.
11083
11084 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11085
11086         * shr.el (shr-tag-em): Add <EM> tag.
11087
11088 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
11089
11090         * sieve-manage.el (sieve-manage-default-stream): Make default stream
11091         customizable.
11092
11093         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
11094         handing broken links to browse-url.
11095
11096 2010-10-05  Julien Danjou  <julien@danjou.info>
11097
11098         * gnus-util.el (gnus-emacs-completing-read)
11099         (gnus-iswitchb-completing-read): Use autoload rather than require.
11100
11101 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
11102
11103         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
11104         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
11105         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
11106         iswitchb-temp-buflist for XEmacs.
11107
11108         * gnus-util.el (gnus-completing-read-function): Exclude
11109         gnus-icompleting-read and gnus-ido-completing-read from candidates for
11110         XEmacs since iswitchb.el is very old and ido.el is unavailable in
11111         XEmacs.
11112
11113         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
11114         not to use `delete-dups' that is unavailable in XEmacs 21.4.
11115
11116         * gnus-html.el: Don't require help-fns under XEmacs.
11117         (gnus-html-schedule-image-fetching): Work for XEmacs.
11118
11119         * mm-decode.el (mm-shr): Decode contents by charset.
11120
11121 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11122
11123         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
11124         unknown.
11125
11126         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
11127         (shr-get-image-data): Ensure against the cache file missing.
11128
11129         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
11130         for data.
11131
11132         * spam-report.el (spam-report-url-ping-plain): Don't query about
11133         killing the process.
11134
11135         * shr.el (shr-render-td): Protect against too-wide text.
11136
11137 2010-10-04  Julien Danjou  <julien@danjou.info>
11138
11139         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
11140         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
11141
11142         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
11143         retrieved.
11144
11145 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11146
11147         * shr.el (browse-url): Require.
11148         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
11149         lines.
11150         (shr-show-alt-text, shr-browse-image): New commands.
11151         (shr-browse-url, shr-copy-url): New commands.
11152
11153         * gnus-sum.el (gnus-widen-article-window): New variable.
11154         (gnus-summary-select-article-buffer): Use it.
11155
11156         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
11157         without @ signs.
11158
11159 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
11160
11161         * nnir.el (nnir-run-imap): Remove spurious space in search string.
11162
11163 2010-10-04  Julien Danjou  <julien@danjou.info>
11164
11165         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
11166         for XEmacs.
11167
11168 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11169
11170         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
11171
11172         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
11173         (nnimap-close-server): Implement.
11174
11175         * dgnushack.el (iswitchb): Require to shut up the compiler.
11176
11177         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
11178         (shr-insert): Tweak line breaking.
11179         (shr-insert): Handle <pre> better.
11180         (shr-tag-li): Get <li> indentation right.
11181         (shr-tag-li): Get <li> indentation even righter.
11182         (shr-tag-blockquote): Ensure paragraph start.
11183         (shr-make-table): Tweak table generation.
11184         (shr-make-table): Fix typo.
11185
11186         * shr.el: Implement table rendering.
11187
11188 2010-10-04  Julien Danjou  <julien@danjou.info>
11189
11190         * gnus-html.el (gnus-html-put-image): Fix resize image code.
11191
11192 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11193
11194         * shr.el (shr-insert): Use string anchors instead of line anchors.
11195
11196 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11197
11198         * shr.el: Add headings.
11199         (shr-ensure-paragraph): Actually work.
11200         (shr-tag-li): Make <ul> prettier.
11201         (shr-insert): Get white space at the beginning/end of elements right.
11202         (shr-tag-p): Collapse subsequent <p>s.
11203         (shr-ensure-paragraph): Don't insert double line feeds after blank
11204         lines.
11205         (shr-insert): \t is also space.
11206         (shr-tag-s): Fix "s" tag name function.
11207         (shr-tag-s): Fix face prop name.
11208
11209 2010-10-03  Julien Danjou  <julien@danjou.info>
11210
11211         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
11212
11213         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
11214         gnus-window-inside-pixel-edges.
11215
11216         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
11217         gnus-ems.
11218
11219         * mm-view.el (mm-inline-image-emacs): Support image resizing.
11220
11221         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
11222         function.
11223
11224         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
11225         resize choice.
11226
11227 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11228
11229         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
11230         beginning of the buffer.
11231
11232         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
11233         article buffer again.
11234
11235         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
11236
11237         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
11238         when it's at the start of the buffer.
11239
11240         * shr.el (shr-tag-blockquote): Convert name.
11241         (shr-rescale-image): Use the right image-size variant.
11242
11243         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
11244         buffer isn't shown, then select the current article first instead of
11245         bugging out.
11246         (gnus-summary-select-article-buffer): Show both the article and summary
11247         buffers again.
11248
11249         * shr.el (shr-fontize-cont): Protect against regions with no text.
11250         Rename tag functions to shr-tag-* for enhanced security.
11251         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
11252
11253 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
11254
11255         * shr.el (shr-insert):
11256         * pop3.el (pop3-movemail):
11257         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
11258         loaded.
11259
11260 2010-10-03  Glenn Morris  <rgm@gnu.org>
11261
11262         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
11263
11264         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
11265
11266         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
11267
11268         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
11269
11270         * gnus-util.el (gnus-make-local-hook): Simplify.
11271
11272 2010-10-02  Julien Danjou  <julien@danjou.info>
11273
11274         * gnus-util.el (gnus-iswitchb-completing-read): New function.
11275         (gnus-ido-completing-read): New function.
11276         (gnus-emacs-completing-read): New function.
11277         (gnus-completing-read): Use gnus-completing-read-function.
11278         Add gnus-completing-read-function.
11279
11280 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11281
11282         * shr.el (shr-insert-document): Autoload.
11283         (shr-img): Be silent.
11284         (shr-insert): Add a newline after every picture before text.
11285         (shr-add-font): Use overlays for combining faces.
11286         (shr-insert): Pass upwards the text start point.
11287
11288         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
11289         possible.
11290         (mm-shr): New function.
11291
11292 2010-10-02  Julien Danjou  <julien@danjou.info>
11293
11294         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
11295         should go backward.
11296
11297 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
11298
11299         * shr.el (shr): Fix typo in provide call.
11300
11301 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11302
11303         * shr.el: New file.
11304
11305         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
11306
11307         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
11308         completing read.
11309
11310 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11311
11312         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
11313         we're being queried about.  Suggested by Dan Jacobson.
11314
11315         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
11316         Suggested by Jason Eisner.
11317
11318         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
11319         table, too.  Suggested by Stefan Wiens.
11320         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
11321         the table unnecessary.  Suggested by Stefan Wiens.
11322
11323         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
11324         longer needed, and probably doesn't work either, as pointed out by
11325         Stefan Wiens.
11326         (gnus-summary-exit): Remove call to the clearing function.
11327         (gnus-summary-exit-no-update): Ditto.
11328
11329         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
11330         instead of gnus-eval-in-buffer-window to avoid popping up frames.
11331         Reported by Stefan Monnier.
11332         (gnus-summary-save-in-rmail): Ditto.
11333
11334         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
11335         article buffer, instead of both the article buffer and the summary
11336         buffer.  Sort of suggested by Dan Jacobson.
11337
11338         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
11339
11340         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
11341         Suggested by Dan Jacobson.
11342
11343         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
11344         documentation clearer.
11345
11346         * message.el (message-shorten-references): Comment on the number "21".
11347         Suggested by Stefan Monnier.
11348
11349         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
11350         Suggested by Dan Jacobson.
11351
11352         * gnus.el (gnus-large-newsgroup):
11353         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
11354
11355         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
11356         externalize attachments.  Bug reported by Steve Wen.
11357
11358         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
11359         really message anything to the user.
11360
11361         * nnmail.el (nnmail-article-group): Allow using the fancy split method
11362         directly.
11363
11364         * nnimap.el (nnimap-request-group): Low higher than high to signal no
11365         messages in empty groups.
11366
11367 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
11368
11369         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
11370         non-UIDNEXT group.
11371
11372 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11373
11374         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
11375         not the value from the collection.
11376
11377         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
11378         values.  This sometimes happens on some groups that have no info.
11379         (nnimap-request-newgroups): New function.
11380
11381 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
11382
11383         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
11384         check into `gnus-registry-initialize'.
11385         (gnus-registry-initialize): Ditto.
11386         Fix and extend header docs.
11387
11388 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11389
11390         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
11391         regexp backtrace overflows.
11392
11393         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
11394         for starttls that tls.el implements; i.e. openssl.
11395
11396         * tls.el (tls-starttls-switches): Give up on using starttls with
11397         gnutls-cli.
11398         (tls-program): Add --insecure to be consistent with the defaults from
11399         openssl s_client.  Now all three commands are insecure.
11400
11401 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11402
11403         * lpath.el: Bind completion-styles-alist for XEmacs.
11404
11405         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
11406         (gravatar-create-image): New function that's an alias to
11407         gnus-xmas-create-image, gnus-create-image, or create-image.
11408         (gravatar-data->image): Use it.
11409
11410 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
11411
11412         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
11413         install the nnregistry refer method.
11414         (gnus-registry-install-hooks): Use it.
11415         (gnus-registry-unfollowed-groups): Add nnmairix to the default
11416         unfollowed groups.
11417
11418 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
11419
11420         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
11421         expanding threads.
11422
11423 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11424
11425         * nnir.el: Use the server names without suffixes (bug#7009).
11426
11427         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
11428         unencrypted to STARTTLS, if possible.
11429
11430 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
11431
11432         * message.el (message-ignored-supersedes-headers): Strip Injection-*
11433         headers before superseding.
11434
11435 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11436
11437         * nnrss.el (nnrss-use-local): Add documentation.
11438
11439         * nnimap.el (nnimap-extend-tls-programs): New function.
11440         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
11441         (nnimap-wait-for-connection): Accept the greeting from the stupid
11442         output from openssl s_client -starttls, too.
11443
11444         * tls.el (tls-starttls-switches): New variable.
11445         (tls-find-starttls-argument): Use it.
11446         (open-tls-stream): Ditto.
11447
11448         * netrc.el (netrc-credentials): Return the value of the "default" entry.
11449         (netrc-machine): Ditto.
11450
11451         * nnimap.el (nnimap-find-article-by-message-id): Really return the
11452         article number.
11453         (nnimap-split-fancy): New variable.
11454         (nnimap-split-incoming-mail): Use it.
11455
11456         * nntp.el (nntp-server-list-active-group): Document.
11457
11458         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
11459         SELECT to get the message-id.
11460
11461         * mail-source.el (mail-sources): Remove webmail support.
11462         (defvar): Ditto.
11463         (mail-source-fetcher-alist): Ditto.
11464         (mail-source-fetch-webmail): Remove.
11465
11466         * webmail.el: Remove -- doesn't seem relevant any more.
11467
11468         * gnus.el: Fix up make-obsolete-variable declarations throughout.
11469
11470         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
11471         the \r.
11472
11473 2010-09-30  Julien Danjou  <julien@danjou.info>
11474
11475         * gnus-agent.el (gnus-agent-add-group): Fix call to
11476         gnus-completing-read.
11477
11478 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11479
11480         * nndoc.el (nndoc-retrieve-groups): New function.
11481
11482         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
11483         `default', use nnmail-split-methods.
11484         (nnimap-request-article): Downcase the NILs so that they are nil.
11485
11486         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
11487         symbol.
11488
11489         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
11490         code, since if the user has requested network, that's what they ought
11491         to get.
11492         (nnimap-request-set-mark): Erase the buffer before issuing commands.
11493         (nnimap-split-rule): Mark as obsolete.
11494
11495         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
11496         New variable.
11497
11498         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
11499         correct slot, too.
11500
11501 2010-09-29  Julien Danjou  <julien@danjou.info>
11502
11503         * gnus.el (gnus-local-domain): Declare variable obsolete.
11504
11505         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
11506         Fix history computing.
11507         (gnus-ido-completing-read): Require ido.
11508
11509 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11510
11511         * gnus-registry.el: Don't prompt on load, which makes it impossible to
11512         build Gnus.
11513
11514         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
11515         when interpreting the structures.
11516         (nnimap-request-accept-article): Add \r\n to the lines to make this
11517         work with Cyrus.
11518
11519         * nndraft.el (nndraft-request-expire-articles): Use the group name
11520         instead if "nndraft".  Fix found by Nils Ackermann.
11521
11522 2010-09-29  Ludovic Courtès  <ludo@gnu.org>
11523
11524         * nnregistry.el: Add.
11525
11526 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11527
11528         * nnmail.el (group, group-art-list, group-art):
11529         Remove unneeded directives.
11530
11531 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11532
11533         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
11534         (mm-mime-charset):
11535         * rfc2047.el (rfc2047-syntax-table):
11536         * utf7.el (utf7-utf-16-coding-system): Comment fix.
11537
11538         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
11539         rather than `insert-file-contents' and `eval-region'.
11540
11541         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
11542         construction.
11543
11544         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
11545
11546         * time-date.el: No need to require cl for Emacs 21.
11547
11548 2010-09-29  Julien Danjou  <julien@danjou.info>
11549
11550         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
11551         replacement of `gnus-gravatar-relief' to mimic
11552         `gnus-faces-properties-alist'.
11553         Add :version property.
11554
11555 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11556
11557         * mail-source.el (mail-source-report-new-mail):
11558         * message.el (message-default-mail-headers):
11559         * mm-decode.el (mm-valid-image-format-p): Comment fix.
11560
11561         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
11562
11563 2010-09-28  Julien Danjou  <julien@danjou.info>
11564
11565         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
11566         mail-address contains the same string as real-name.
11567
11568         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
11569         non-blank in header, otherwise it'll get stripped.
11570
11571         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
11572         real-name, and then for mail address rather than doing : or , search.
11573
11574 2010-09-27  Julien Danjou  <julien@danjou.info>
11575
11576         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
11577         right completing-read function.
11578         (gnus-use-ido): New variable
11579         (gnus-completing-read-with-default): Remove.
11580         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
11581         (gnus-agent-add-group):
11582         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
11583         * mm-view.el (mm-view-pkcs7-decrypt):
11584         * mm-util.el (mm-codepage-setup):
11585         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
11586         * mml-smime.el (mml-smime-openssl-sign-query):
11587         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
11588         (mml-insert-multipart):
11589         * gnus-msg.el (gnus-summary-yank-message):
11590         * gnus-int.el (gnus-start-news-server):
11591         * mm-decode.el (mm-interactively-view-part):
11592         * gnus-dired.el (gnus-dired-attach):
11593         * gnus.el (gnus-read-method):
11594         * gnus-bookmark.el (gnus-bookmark-jump):
11595         * gnus-art.el (gnus-mime-view-part-as-type)
11596         (gnus-mime-action-on-part, gnus-article-encrypt-body):
11597         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
11598         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
11599         * nnmairix.el (nnmairix-create-server-and-default-group)
11600         (nnmairix-update-groups, nnmairix-get-server)
11601         (nnmairix-backend-to-server, nnmairix-goto-original-article)
11602         (nnmairix-get-group-from-file-path):
11603         * nnrss.el (nnrss-find-rss-via-syndic8):
11604         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
11605         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
11606         (gnus-group-browse-foreign-server):
11607         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
11608         (gnus-summary-execute-command, gnus-summary-respool-article)
11609         (gnus-read-move-group-name):
11610         * gnus-score.el (gnus-summary-increase-score)
11611         (gnus-summary-score-effect):
11612         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
11613
11614 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11615
11616         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
11617         x-focus-frame.
11618
11619         * nnimap.el (auth-source-forget-user-or-password)
11620         (auth-source-user-or-password): Autoload.
11621
11622         * message.el (message-from-style, message-interactive)
11623         (message-cite-prefix-regexp, message-sendmail-envelope-from)
11624         (message-yank-prefix, message-indentation-spaces, message-signature)
11625         (message-signature-file): Add comment.
11626
11627 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11628
11629         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
11630         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
11631         new articles.
11632
11633         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
11634         parts.
11635         (nnimap-request-article): Work with the t setting, too.
11636
11637         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
11638         that you don't get flashes of other buffers.
11639         (gnus-summary-show-complete-article): Intern before setting.
11640
11641 2010-09-27  David Engster  <dengste@eml.cc>
11642
11643         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
11644         well as HEADERS.
11645         (nnmairix-retrieve-headers): Provide new argument for the above.
11646
11647 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11648
11649         * gnus-sum.el (gnus-summary-move-article): Don't alter
11650         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
11651         group.
11652
11653         * nnimap.el (nnimap-update-info): Don't destructively alter active.
11654
11655         * message.el (message-cite-prefix-regexp): Revert my last edit.
11656
11657         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
11658         variable instead of the Gnus variable.
11659
11660         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
11661
11662         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
11663
11664         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
11665         since some servers don't like it.
11666         (nnimap-open-connection): Forget credentials if the server says the
11667         password was wrong.
11668         (nnimap-parse-line): Protect against invalid data.
11669
11670         * gnus-sum.el (gnus-summary-move-article): Add comment.
11671         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
11672         nothing alters it while scanning for new messages.
11673
11674         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
11675         which may or may not help.
11676         (nnimap-open-connection): If we're doing a stream connection, and then
11677         discover we're on a STARTTLS-capable server, then open a STARTTLS
11678         connection instead.
11679
11680 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11681
11682         * nnimap.el (utf7): Require.
11683
11684         * message.el (message-cite-prefix-regexp): Remove "}" from citation
11685         prefix.
11686
11687 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
11688
11689         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
11690
11691 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11692
11693         * nnimap.el (nnimap-request-accept-article): Message the error on
11694         error.
11695
11696 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11697
11698         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
11699
11700 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11701
11702         * nndoc.el (nndoc-request-list): Return success always.
11703
11704         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
11705         `fetch-old' -- we only want to fetch the articles we've requested.
11706         The rest are in the agent, probably.
11707         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
11708         disappeared server" to something low.  It's not important.
11709
11710         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
11711         arrived before the FETCH data.
11712
11713         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
11714         target here, because we don't know the Gnus name of the group.
11715
11716         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
11717         for the correct group.
11718
11719         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
11720
11721         * gnus.el (gnus): Give a final warning after startup.
11722
11723         * gnus-util.el (gnus-action-message-log): New variable.
11724         (gnus-message): Use it.
11725         (gnus-final-warning): New function.
11726
11727         * nnimap.el (nnimap-open-connection): Record the greeting.
11728         (nnimap): Add greeting.
11729
11730 2010-09-26  Julien Danjou  <julien@danjou.info>
11731
11732         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
11733         arguments.
11734         (gnus-html-wash-images): Fix spec computing to include start/end.
11735
11736         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
11737
11738 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11739
11740         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
11741         deletion.
11742         (nnimap-retrieve-headers): Don't select the group, because that's
11743         already done by nnimap-possibly-change-group.
11744
11745         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
11746         (gnus-picon-transform-address): Use it.
11747
11748         * mail-source.el (mail-source-value): Revert previous patch.
11749
11750         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
11751         on failure.
11752         (nnimap-open-connection): Look up both virtual and physical server name
11753         credentials.
11754
11755         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
11756
11757 2009-02-07  Dave Love  <fx@gnu.org>
11758
11759         * tls.el (open-tls-stream): Don't query killing process.
11760
11761 2009-02-08  Dave Love  <fx@gnu.org>
11762
11763         * gnus-win.el (gnus-window-to-buffer-helper)
11764         (gnus-all-windows-visible-p): Function needn't be a symbol.
11765
11766         * mail-source.el (mail-source-value): Function needn't be a symbol.
11767
11768 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11769
11770         * message.el (message-cite-prefix-regexp): Remove } from the cite
11771         prefix.
11772
11773         * gnus-art.el (gnus-treatment-function-alist): Do picons before
11774         highlight again, so that the highlight is correct.
11775
11776         * gnus-picon.el (gnus-picon): Remove again.
11777         (gnus-picon-create-glyph): Set the background XPM color explicitly.
11778
11779         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
11780         doing the header highlightling, so that the background color of the
11781         picon is correct.
11782
11783         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
11784         (gnus-picon): Ditto.
11785         (gnus-picon): Reinstate.  The background color for picons is white.
11786         (gnus-picon-insert-glyph): Make the background white.
11787
11788         * nnml.el (nnml-open-nov): Don't return dead buffers.
11789
11790         * auth-source.el (auth-source-create): Query the user for whether to
11791         store the credentials.
11792
11793         * netrc.el (netrc-store-data): New function.
11794
11795         * auth-source.el (auth-source-user-or-password): Use the existing auth
11796         sources, if any, for creation.
11797
11798         * gnus.el (gnus-group-fast-parameter): Return the last matching
11799         parameter instead of the first matching parameter.
11800
11801 2010-09-26  Julien Danjou  <julien@danjou.info>
11802
11803         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
11804
11805 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11806
11807         * mml2015.el (mml2015-use): Remove gpg support.
11808
11809         * mml1991.el (mml1991-function-alist): Remove gpg function.
11810         (mml1991-gpg-sign): Remove.
11811
11812 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
11813
11814         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
11815         (gnus-browse-unsubscribe-current-group): Document it.
11816         (gnus-browse-unsubscribe-group): Use it.
11817
11818 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11819
11820         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
11821         address to the To list for easier response.
11822
11823         * gnus.el (gnus-play-startup-jingle): Remove.
11824         (gnus-splash): Don't play jingle.
11825         (gnus): Silence gnus-load message.
11826
11827         * gnus-art.el (gnus-treat-play-sounds): Remove.
11828
11829         * gnus.el (gnus-play-jingle): Remove audio support.
11830
11831         * gnus-cus.el (gnus-score-customize): Remove audio reference.
11832
11833         * earcon.el: Remove -- no users.
11834
11835         * gnus-audio.el: Remove -- no users of this package.
11836
11837         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
11838
11839         * gnus-start.el (gnus-setup-news): Remove nocem support.
11840
11841         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
11842
11843         * gnus.el (gnus-use-nocem): Remove.
11844
11845         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
11846         Remove.
11847
11848         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
11849         uses NoCeM any more.
11850
11851         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
11852         (gnus-button-ctan-handler): Ditto.
11853         (gnus-button-handle-ctan-bogus-regexp): Ditto.
11854         (gnus-button-ctan-directory-regexp): Ditto.
11855         (gnus-button-handle-ctan): Ditto.
11856         (gnus-button-tex-level): Ditto.
11857         (gnus-button-alist): Remove CTAN stuff.
11858
11859 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11860
11861         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
11862         nnimap-streaming test.
11863
11864         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
11865         servers twice.
11866
11867         * nnimap.el (nnimap-open-connection): Add more error reporting when
11868         nnimap fails early.
11869
11870         * nnheader.el (nnheader-get-report-string): New function.
11871         (nnheader-get-report): Use it.
11872
11873         * gnus-int.el (gnus-check-server): Say what the error was when opening
11874         failed.
11875
11876         * nnimap.el (nnimap-wait-for-response): Search further when we're not
11877         using streaming.
11878
11879 2010-09-25  Julien Danjou  <julien@danjou.info>
11880
11881         * gnus-html.el (gnus-html-rescale-image): Use our defalias
11882         gnus-window-inside-pixel-edges.
11883
11884 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11885
11886         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
11887
11888         * mm-decode.el (mm-save-part): Allow saving to other directories the
11889         normal Emacs way.
11890
11891         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
11892         Suggested by Jay Berkenbilt.
11893
11894         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
11895         there isn't a single byte.
11896
11897         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
11898         just do it.  It doesn't really seem to matter what the user responds
11899         here, I think, so it's just a confusing question.
11900
11901         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
11902         non-streaming case.
11903
11904         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
11905         (gnus-article-encrypt-body): Use it.
11906
11907         * gnus-sum.el (gnus-summary-show-complete-article): New command and
11908         keystroke.
11909
11910         * nnimap.el (nnimap-find-wanted-parts-1):
11911         Use gnus-fetch-partial-articles.
11912
11913         * gnus-art.el (gnus-fetch-partial-articles): New variable.
11914
11915         * nnimap.el (nnimap-insert-partial-structure): New function.
11916         (nnimap-get-partial-article): New function.
11917         (nnimap-request-article): Use it.
11918         (nnimap-wait-for-response): Return whether the wait was successful.
11919         (nnimap-finish-retrieve-group-infos): Don't do anything if the
11920         retrieval wasn't successful.
11921         (nnimap-retrieve-group-data-early): Allow throttling servers.
11922         (nnimap-streaming): New variable.
11923         (nnimap-fetch-partial-articles): Remove.
11924
11925         * mm-decode.el (mm-with-part): Protect against killed buffers.
11926
11927         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
11928         for prettier summary display.
11929
11930 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
11931
11932         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
11933
11934 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11935
11936         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
11937         apparently third-party libraries depend on it.
11938
11939         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
11940         before starting negotiation.
11941
11942         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
11943         privacy reasons.
11944         (gnus-treat-mail-gravatar): Ditto.
11945
11946         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
11947         buffer when inserting images.  Inserting text into the headers, for
11948         instance, can make them invalid.
11949
11950 2010-09-25  Julien Danjou  <julien@danjou.info>
11951
11952         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
11953         variables.
11954
11955         * nnheader.el: Remove useless variables news-reply-yank-from and
11956         news-reply-yank-message-id.
11957
11958         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
11959         variables.
11960
11961         * mml1991.el: Remove useless mml1991-verbose.
11962
11963         * gnus.el: Remove useless variable gnus-use-generic-from.
11964         Remove obsolete variable gnus-topic-indentation.
11965
11966         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
11967
11968         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
11969
11970         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
11971
11972         * gnus-group.el: Remove useless gnus-group-icon-cache.
11973         Remove useless gnus-ephemeral-group-server.
11974
11975         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
11976
11977         * mml2015.el: Remove useless mml2015-verbose.
11978
11979         * mml-smime.el: Remove useless mml-smime-verbose.
11980
11981         * gnus.el: Remove useless gnus-local-domain.
11982
11983         * gnus-gravatar.el (gnus-gravatar-transform-address):
11984         Use gnus-gravatar-size.
11985
11986         * gnus-art.el: Remove useless gnus-treat-translate.
11987
11988 2010-09-24  Julien Danjou  <julien@danjou.info>
11989
11990         * gnus-sum.el: Add support for Gravatars.
11991
11992         * gnus-art.el: Add support for Gravatars.
11993
11994         * gnus-gravatar.el: Add this file.
11995
11996         * gravatar.el: Add this file.
11997
11998 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11999
12000         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
12001
12002         * gnus-group.el (gnus-group-fetch-faq): Remove.
12003
12004         * gnus.el (gnus-group-faq-directory): Remove.
12005
12006         * gnus-group.el (gnus-group-fetch-charter): Remove.
12007
12008         * gnus.el (gnus-group-charter-alist): Remove.
12009
12010         * gnus-group.el (gnus-group-archive-directory): Remove.
12011         (gnus-group-recent-archive-directory): Ditto.
12012         (gnus-group-make-archive-group): Remove.
12013
12014         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
12015
12016         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
12017         use the same article number for all the cached articles.
12018
12019         * nnimap.el (nnimap-command): Register the last command time so
12020         that we can use it for idling NOOPs.
12021         (nnimap-open-connection): Start the keeplive timer.
12022         (nnimap-make-process-buffer): Store all the process buffers.
12023         (nnimap-keepalive): New function.
12024
12025         * starttls.el (starttls-open-stream): Add autoload cookie.
12026
12027 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
12028
12029         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
12030         handling.
12031
12032 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12033
12034         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
12035         its data structures.
12036
12037         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
12038         instead of the cl.el copy-list.
12039         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
12040         equalp.
12041
12042 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12043
12044         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
12045         and tool-bar-local-item-from-menu.
12046
12047         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
12048         mode-line-highlight face for Emacs.
12049
12050         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
12051         loading gnus-sum.elc; fix comment for canlock-verify.
12052         (gnus-article-jump-to-part): Use read-number.
12053         (gnus-insert-mime-button, gnus-insert-mime-security-button):
12054         Remove Emacs pre-21 compatible code for help-echo.
12055         (gnus-article-next-page-1): No need to adjust the number of lines.
12056         (gnus-article-describe-bindings): Always use help-buffer.
12057
12058         * gnus-audio.el (gnus-audio-inline-sound):
12059         * gnus-cus.el (gnus-custom-mode):
12060         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
12061
12062         * gnus-sum.el (gnus-remove-overlays): Doc fix.
12063
12064         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
12065         compatible code.
12066
12067 2010-09-24  Glenn Morris  <rgm@gnu.org>
12068
12069         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
12070         visiting the fcc file in rmail-mode.
12071
12072         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
12073
12074 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12075
12076         * nnir.el: Silence the byte compiler.
12077
12078         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
12079         alias to browse-url-url-encode-chars if any.
12080         (gnus-html-encode-url): Use it.
12081
12082 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12083
12084         * gnus-start.el (gnus-use-backend-marks): New variable.
12085         (gnus-get-unread-articles-in-group): Use it.
12086
12087         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
12088         makeover.
12089
12090 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
12091
12092         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
12093
12094 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12095
12096         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
12097         Remove.
12098         (gnus-setup-news-hook):
12099         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
12100
12101         * gnus-int.el (gnus-request-update-info): Protect against backends not
12102         having the function.
12103
12104         * nnimap.el (nnimap-stream): Mention starttls.
12105         (nnimap-open-connection): Add starttls support.
12106
12107 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
12108
12109         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
12110
12111 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12112
12113         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
12114         BODYSTRUCTUREs.
12115         (nnimap-transform-headers): Unfold quoted {42} headers.
12116
12117         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
12118         the info.
12119         (gnus-get-unread-articles): Only call updatep on backends that support
12120         it.
12121
12122         * nnweb.el (nnweb-request-update-info): NOOP.
12123
12124         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
12125
12126         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
12127         since it only deals with marks.
12128
12129         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
12130         gnus-request-marks, and make a new gnus-request-update-info.
12131
12132         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
12133         the active instead of the high number, which is usually too low.
12134
12135 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
12136
12137         * netrc.el (netrc-parse): Remove encrypt.el mentions.
12138         * encrypt.el: Remove.
12139
12140 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12141
12142         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
12143         server in symbolic form.
12144
12145         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
12146
12147 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12148
12149         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
12150         (nnimap-update-info): Fix up code slightly.
12151
12152         * gnus-int.el (gnus-open-server): Add tracing for performance
12153         debugging.
12154
12155         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
12156         (gnus-group-insert-group-line): Pass the real group name so that it
12157         gets the right data.
12158
12159         * gnus-start.el (gnus-get-unread-articles): Don't have
12160         `gnus-get-unread-articles-in-group' update info, since that can be
12161         really slow and doesn't seem to be needed?
12162
12163 2010-09-22  Dan Christensen  <jdc@uwo.ca>
12164
12165         * time-date.el (date-to-time): Try using parse-time-string first before
12166         using the slower timezone-make-date-arpa-standard.
12167
12168 2010-09-22  Julien Danjou  <julien@danjou.info>
12169
12170         * gnus-group.el (gnus-group-insert-group-line):
12171         Call gnus-group-highlight-line.
12172         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
12173         default hook list.
12174         (gnus-group-update-eval-form): Add new function.
12175         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
12176         (gnus-group-get-icon): Use gnus-group-update-eval-form.
12177
12178 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12179
12180         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
12181         immediate, then expire all articles.
12182         (nnimap-update-info): Fix off-by-one errors.
12183         (nnimap-flags-to-marks): Would return no marks lists for group with no
12184         flags.  Instead return the other data.
12185
12186 2010-09-22  Julien Danjou  <julien@danjou.info>
12187
12188         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
12189         Only return an icon.
12190         (gnus-group-insert-group-line): Compute icon to return.
12191
12192         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
12193         (gnus-html-image-fetched): Only cache if
12194         gnus-html-image-automatic-caching is set.
12195         (gnus-html-image-fetched): Check for errors.
12196
12197 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12198
12199         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
12200         once per method on `g'.  This ensures that backends like nnfolder don't
12201         open all their folders.
12202
12203         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
12204         (nnimap-request-list): Nix out group in the correct buffer.
12205         (nnimap-parse-flags): Implement by using `read' instead of
12206         hand-parsing.
12207         (nnimap-flags-to-marks): Pass on permanent-flags.
12208         (nnimap-make-process-buffer): Record the server name.
12209         (nnimap-parse-flags): Fix typo.
12210         (nnimap-request-scan): Run split on the server in general, not just a
12211         single group.
12212
12213         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
12214         parameter, and propagate this downwards.
12215
12216         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
12217         since EXAMINE changes it on the server.
12218
12219         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
12220         this command might take a while.
12221
12222 2010-09-22  Julien Danjou  <julien@danjou.info>
12223
12224         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
12225         harmful if you have 2 images side-by-side, they can't be properly
12226         update on text deletion.  Using text-property is safer here.
12227         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
12228         data.
12229
12230 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12231
12232         * nnimap.el (nnimap-expunge-inbox): Remove.
12233         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
12234         (nnimap-expunge): Flip default to t.
12235
12236         * gnus.el (gnus-method-to-server): Don't push things to the cache
12237         unless it's unique.
12238         (gnus-server-to-method): Ditto.
12239
12240 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
12241
12242         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
12243
12244 2010-09-22  Julien Danjou  <julien@danjou.info>
12245
12246         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
12247         get the start of data.
12248         (gnus-html-encode-url): Add this function to encode special chars in
12249         URL.
12250         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
12251         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
12252
12253         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
12254         default.
12255         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
12256
12257         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
12258         images alt-text.
12259         (gnus-html-put-image): Put alt-text as help-echo.
12260
12261 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12262
12263         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
12264         * mm-util.el (mm-decompress-buffer):
12265         * nnir.el (nnir-run-find-grep):
12266         * pop3.el (pop3-list): Use 3rd arg of split-string.
12267
12268         * time-date.el (format-seconds): Comment fix.
12269
12270         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
12271         and byte-optimize-form-code-walker.
12272         (dgnushack-make-auto-load): Don't advise make-autoload.
12273
12274         * lpath.el: Remove Emacs 21 stuff.
12275
12276 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12277
12278         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
12279         outside the active range.  Suggested by Dan Christensen.
12280
12281         * gnus-start.el (gnus-get-unread-articles): Get the extended method
12282         slightly later to avoid double-getting it.
12283
12284         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
12285         previous patch.
12286
12287         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
12288
12289 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
12290
12291         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
12292
12293 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12294
12295         * gnus-int.el (gnus-open-server): Give a better error message in the
12296         "go offline" case.
12297
12298         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
12299         marks for nnimap, which is seldom the right thing to do.
12300
12301         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
12302         (gnus-same-method-different-name): New function.
12303
12304         * nnimap.el (parse-time): Require.
12305
12306         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
12307         method in the presence of many similar methods.
12308
12309         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
12310
12311         * nnimap.el (nnimap-find-expired-articles): Don't refer to
12312         nnml-inhibit-expiry.
12313
12314         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
12315         find out whether methods are equal.
12316
12317         * nnimap.el (nnimap-find-expired-articles): New function.
12318         (nnimap-process-expiry-targets): New function.
12319         (nnimap-request-move-article): Request the article before looking at
12320         what the Message-ID is.  Fix found by Andrew Cohen.
12321         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
12322
12323         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
12324         for oldness in addition to being a predicate.
12325
12326         * nnimap.el (nnimap-request-group): When we have zero articles, return
12327         the right data to Gnus.
12328         (nnimap-request-expire-articles): Only delete articles immediately if
12329         the target is 'delete.
12330
12331         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
12332         method, this would bug out.
12333
12334         * gnus-group.el (gnus-group-expunge-group): Rename from
12335         gnus-group-nnimap-expunge, and implemented as a normal interface
12336         function.
12337
12338         * gnus-int.el (gnus-request-expunge-group): New function.
12339
12340         * nnimap.el (nnimap-request-create-group): Implement.
12341         (nnimap-request-expunge-group): New function.
12342
12343 2010-09-21  Julien Danjou  <julien@danjou.info>
12344
12345         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
12346         (gnus-html-cache-expired): Add new function.
12347         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
12348         wethever we should display image for fetch it.
12349         Compute alt-text earlier to pass it to the fetching function too.
12350         (gnus-html-schedule-image-fetching): Change function argument to only
12351         get one image at a time, not a list.
12352         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
12353         cache.
12354         (gnus-html-get-image-data): New function to retrieve image data from
12355         cache.
12356         (gnus-html-put-image): Change buffer argument to use image data rather
12357         than file, and place image above region rather than inserting a new
12358         one.  Do not take alt-text as argument, since it's useless now: we place
12359         the image above alt-text.
12360         (gnus-html-prune-cache): Remove.
12361         (gnus-html-show-images): Start to fetch image when we find one, do not
12362         push into a temporary list.
12363         (gnus-html-prefetch-images): Only fetch image if they have expired.
12364         (gnus-html-browse-image): Fix, use 'gnus-image-url.
12365         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
12366
12367 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12368
12369         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
12370
12371 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12372
12373         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
12374         spec inser "*" if the group isn't active instead of 0.
12375
12376         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
12377         opening the server.
12378         (nnimap-request-delete-group): Implement group deletion.
12379         (nnimap-transform-headers): Return the size of the entire message in
12380         the Bytes header, not just the size of the first part.
12381         (nnimap-request-move-article): When moving an article from nnimap,
12382         request the article first so the accepting form has an article to
12383         accept.  Reported by Dan Christensen.
12384         (nnimap-command): Make sure that the error message doesn't error out.
12385
12386 2010-09-20  David Edmondson  <dme@dme.org>
12387
12388         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
12389         we haven't requested anything.
12390
12391 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12392
12393         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
12394         "".  Fix found by Andrew Cohen.
12395
12396         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
12397         instead of -encode-string.
12398
12399 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12400
12401         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
12402
12403         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
12404         by mm-subst-char-in-string.
12405
12406 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12407
12408         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
12409         waiting for the connection string.
12410
12411         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
12412         arriving.
12413
12414         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
12415         bogus characters.  This allows selecting certain Gmail groups.
12416
12417         * nnimap.el (nnimap-find-wanted-parts-1): New function.
12418         (nnimap-fetch-partial-articles): New variable.
12419         (nnimap-open-connection): When looking for credentials, also use the
12420         nnimap-server-port.
12421         (nnimap-request-article): Return the group/article number, so that Gnus
12422         `^' works as expected.
12423         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
12424
12425         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
12426         comments.
12427         (gnus-methods-sloppily-equal): New function.
12428         (gnus): When using the development version of Gnus, load the gnus-load
12429         file.
12430
12431         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
12432         `gnus-open-server' on each method before trying to scan them etc.
12433         This ensures that all the backend parameters are set correctly.
12434
12435         * nnimap.el (nnimap-authenticator): New variable.
12436         (nnimap-open-connection): Allow anonymous login.
12437         (nnimap-transform-headers): The chars header is called Chars not Bytes.
12438         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
12439
12440         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
12441         patch, found by Knut Anders Hatlen.
12442
12443 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
12444
12445         * gnus-agent.el (gnus-agent-batch-confirmation)
12446         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
12447         to gnus-message.
12448         * gnus-art.el (gnus-article-describe-briefly): Likewise.
12449         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
12450         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
12451         * gnus-int.el (gnus-open-server): Likewise.
12452         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
12453         (gnus-score-check-syntax): Likewise.
12454         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
12455         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
12456         Likewise.
12457         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
12458
12459 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12460
12461         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
12462         calling conventions so that prefetch doesn't bug out.
12463
12464 2010-09-19  Julien Danjou  <julien@danjou.info>
12465
12466         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
12467         rather than `subst-char-in-region' in order to be able to replace ASCII
12468         char by UTF-8 ones.
12469
12470         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
12471         than curl.
12472         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
12473         the right URL and ALT text on images.
12474         (gnus-html-wash-tags): Fix tag case.
12475         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
12476         (gnus-article-html): Add -o display_ins_del=2 option.
12477         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
12478
12479 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12480
12481         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
12482         the extra mail headers, which sometimes seem to happen for unknown
12483         reasons.
12484
12485         * mail-parse.el (mail-header-encode-parameter): Define as
12486         rfc2045-encode-string instead of as rfc2231-encode-string, since some
12487         (or most, perhaps?) mail readers don't understand the latter, but do
12488         understand the former.
12489
12490         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
12491         to nil, so that no methods are automatically agentized.  I think this
12492         is probably what most users want.
12493
12494         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
12495         from url-retrieve, for instance about invalid URLs.
12496
12497         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
12498         groups that have no articles.
12499         (nnimap-request-article): Check that we really got an article when we
12500         requested one.
12501
12502         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
12503         doesn't exist.
12504
12505         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
12506         nntp buffer so the agent can save it.
12507         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
12508         that CRLF doesn't get translated to \n.
12509         (nnimap-open-connection): Don't make 'shell commands only send \n.
12510
12511 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12512
12513         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
12514         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
12515         Update var name.
12516         (nnml-generate-nov-file): Use dolist.
12517         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
12518         Use with-current-buffer.
12519
12520 2010-09-18  Julien Danjou  <julien@danjou.info>
12521
12522         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
12523         parallel.
12524
12525 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12526
12527         * nnimap.el (nnimap-update-info): When doing partial marks update, get
12528         the range update right.
12529         (nnimap-request-group): Don't make `M-g' bug out on group with no
12530         marks.
12531         (nnoo): Require, so that other packages can require nnimap.
12532         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
12533         command we're looking for.  This helps when the server sends more
12534         responses after we've gotten everything we expected.
12535         (nnimap): Add a `newlinep' field to keep track of end-of-line
12536         conventions.
12537         Don't send CRLF to things that don't want it.
12538         (nnimap-request-accept-article): Ditto.
12539
12540 2010-09-18  Julien Danjou  <julien@danjou.info>
12541
12542         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
12543         than curl to retrieve images.
12544
12545 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12546
12547         * nnimap.el (nnimap-update-info): Extend the info so that we can set
12548         the marks.
12549         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
12550         (nnimap-wait-for-connection): New function.
12551         (nnimap-open-connection): If we have PREAUTH, don't query for login
12552         credentials.
12553         (nnimap-update-info): Fix off-by-one error when concatenating ranges
12554         when doing a partial update.
12555
12556 2010-09-18  Julien Danjou  <julien@danjou.info>
12557
12558         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
12559         tags.
12560
12561 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12562
12563         * nnimap.el (nnimap-credentials): New function.
12564         (nnimap-open-connection): Use the new function to look for credentials
12565         also on the numeric equivalents of "imap" and "imaps".
12566
12567         * gnus-start.el (gnus-activate-group): Send the info to
12568         gnus-request-group.
12569
12570         * nnimap.el (nnimap-request-group): Have the "check" version of the
12571         function parse flags and update the info, so that a `M-g' get a total
12572         resync of all flags from the group.
12573
12574         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
12575         to allow backends to alter the info on group selection.  Also alter all
12576         the backend -request-group functions to take the parameter.
12577
12578         * nnimap.el (nnimap-store-info): New function.
12579         (nnimap-update-info): Store the info for later usage.
12580         (nnimap-request-group): Use the stored info for the dont-check case, so
12581         that we don't retrieve all marks when we enter a group.
12582
12583         * nnimap.el: Use deffoo instead of defun for interface functions.
12584
12585         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
12586         update the group info.  This makes the nndraft groups, for instance, go
12587         back to their old behavior.
12588
12589         * gnus-sum.el (gnus-select-newsgroup): Indent.
12590
12591         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
12592         in.
12593         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
12594         nothing.
12595
12596         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
12597         from methods that are denied.
12598
12599         * gnus-int.el (gnus-method-denied-p): New function.
12600
12601         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
12602         store the password instead of netrc.
12603         (nnimap-open-connection): Don't error out when we can't make a
12604         connections.
12605
12606         * auth-source.el (auth-source-create): In the password prompt, say what
12607         we're querying for.  Also prompt for user name if that hasn't been
12608         given.
12609
12610         * nnimap.el (nnimap-with-process-buffer): Remove.
12611
12612 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12613
12614         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
12615         method when we're reading from the agent.
12616
12617         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
12618
12619         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
12620         that's probably most useful for users.
12621
12622         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
12623         "failed" all the time.
12624
12625         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
12626         ...)) with (with-current-buffer ... ).
12627
12628         * nntp.el (nntp-open-server): Return whether the open was successful or
12629         not.
12630
12631         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
12632         select an unread unseen article first.
12633
12634         * nnimap.el (nnimap-open-connection): If the user doesn't have a
12635         /etc/services, supply some sensible port defaults.
12636
12637         * dgnushack.el: Define netrc-credentials.
12638
12639 2010-09-17  Julien Danjou  <julien@danjou.info>
12640
12641         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
12642
12643 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
12644
12645         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
12646         doesn't have any parameters.
12647
12648 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12649
12650         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
12651         only upcased checks.
12652
12653         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
12654
12655         * nnimap.el (nnimap-open-shell-stream): New function.
12656         (nnimap-open-connection): Use it.
12657         (nnimap-transform-headers): Get the number of lines in each message.
12658         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
12659         number of lines.
12660         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
12661         problem.
12662
12663         * utf7.el (utf7-encode): Autoload.
12664
12665         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
12666         to allow the mail splitting to not return a default group.  This is
12667         useful for nnimap, which will leave unmatched mail in the inbox.
12668
12669         * nnimap.el: Rewritten.
12670
12671         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
12672         nnimap usage.
12673
12674         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
12675         if the move is internal, so that nnimap can do fast internal moves.
12676
12677         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
12678         data.
12679         (gnus-read-active-for-groups): Support finishing the early retrieval of
12680         data.
12681
12682         * gnus-range.el (gnus-range-nconcat): New function.
12683
12684         * gnus-int.el (gnus-finish-retrieve-group-infos)
12685         (gnus-retrieve-group-data-early): New functions.
12686
12687 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12688
12689         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
12690         (nnrss-retrieve-groups):
12691         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
12692         (pop3-quit): Use with-current-buffer.
12693
12694 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12695
12696         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
12697         instead of nnheader-accept-process-output.
12698
12699         * dgnushack.el (dgnushack-compile): Add comment.
12700
12701         * lpath.el: No need to fbind propertize for XEmacs 21.4.
12702
12703         * gnus-html.el (gnus-html-schedule-image-fetching)
12704         (gnus-html-prefetch-images): Replace process-kill-without-query by
12705         gnus-set-process-query-on-exit-flag.
12706
12707 2010-09-16  Romain Francoise  <romain@orebokech.com>
12708
12709         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
12710
12711 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12712
12713         * gnus-registry.el (gnus-registry-install-shortcuts): The second
12714         parameter to unintern is mandatory-ish in Emacs 24.
12715
12716         * gnus-html.el (gnus-html-schedule-image-fetching)
12717         (gnus-html-prefetch-images): Check for curl before using it.
12718
12719         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
12720         depend on curl, which isn't essential.
12721
12722         * imap.el: Revert back to version
12723         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
12724         seem problematic.
12725
12726 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
12727
12728         * gnus-registry.el (gnus-registry-install-shortcuts):
12729         Explicitly pass `obarray' to `unintern' to avoid a warning.
12730
12731 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12732
12733         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
12734         change.
12735
12736         * nnrss.el (nnrss-request-list): Remove this function and related
12737         functions, including the moreover stuff.
12738
12739 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12740
12741         * nnrss.el (nnrss-retrieve-groups): New function.
12742
12743 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
12744
12745         * .dir-locals.el: Add no-byte-compile cookie.
12746
12747 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12748
12749         * time-date.el (format-seconds): Comment fix.
12750
12751         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
12752         for back end that doesn't support request-scan.
12753
12754 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12755
12756         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
12757         then do request scans from the backends.
12758
12759         * netrc.el (netrc-credentials): New conveniency function.
12760
12761         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
12762         avoid running a hook per line, since this takes a lot of time,
12763         profiling shows.
12764         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
12765         directly if gnus-visual-p is true.
12766
12767 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12768
12769         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
12770         groups; replace mapcar with dolist which is a bit faster; pass groups
12771         info to gnus-read-active-file-1.
12772         (gnus-read-active-file-1): Scan only specified groups if the new
12773         optional arg `infos' is given.
12774
12775 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12776
12777         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
12778
12779         * pop3.el (pop3-movemail): Remove.
12780         (pop3-streaming-movemail): Rename to pop3-movemail.
12781
12782         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
12783         don't restrict end-tag searches to the end of the line.
12784
12785 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12786
12787         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
12788         articles of every unchecked group to t, which means unknown since the
12789         server has never been opened.
12790
12791 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12792
12793         * gnus-html.el (gnus-html-show-alt-text): New command.
12794         (gnus-html-browse-image): Ditto.
12795         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
12796         to browse the image directly.
12797         (gnus-html-wash-tags): Search for images first, so that <a><img> works
12798         better.
12799
12800         * gnus-async.el (gnus-async-article-callback):
12801         Call `gnus-html-prefetch-images' unconditionally.
12802
12803         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
12804         before feeding URLs to curl.
12805
12806 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12807
12808         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
12809         internal images as deletable by `W D D'.
12810
12811         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
12812         (gnus-async-article-callback): Fix typo.
12813
12814 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12815
12816         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
12817         current line to work around bugs in the output from w3m.
12818
12819         * gnus-async.el (gnus-async-article-callback): Always prefetch images
12820         for groups that want that.
12821
12822         * nntp.el (nntp-wait-for-string): Supply a timeout for
12823         accept-process-output to ensure progress.
12824
12825         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
12826         level to get unread articles from, then use that for foreign groups,
12827         too.
12828
12829         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
12830         confuses the rest of the function.
12831
12832         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
12833         for the methods that support -retrieve-groups, too.
12834
12835         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
12836
12837 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12838
12839         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
12840         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
12841
12842         * pop3.el: Require cl when compiling.
12843         (pop3-number-of-responses): Search for "+OK", not "+OK ".
12844
12845 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12846
12847         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
12848         that aren't going to be activated.
12849         (gnus-get-unread-articles): Fix up the last commit.
12850
12851         * gnus-html.el (gnus-article-html): Allow calling without specifying
12852         the handle.  In that case, dissect the buffer first.
12853
12854         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
12855
12856         * nnimap.el (nnimap-open-connection): Revert the change that would look
12857         into authinfo for imaps instead of imap.
12858
12859         * gnus-start.el (gnus-activate-group): Take an optional parameter to
12860         say that you don't want to call gnus-request-group with don-check, but
12861         do check the reponse.  This is for virtual groups only.
12862         (gnus-get-unread-articles): Count the archive groups as secondary, so
12863         that they're activated the same way as before.
12864
12865         * imap.el (imap-message-map): Removed optional buffer parameter, since
12866         no callers use it.
12867         (imap-message-get): Ditto.
12868         (imap-message-put): Ditto.
12869         (imap-mailbox-map): Ditto.
12870         (imap-mailbox-put): Ditto.
12871         (imap-mailbox-get): Ditto.
12872         (imap-mailbox-get): Revert last change for this function.
12873
12874         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
12875         case-insensitively.
12876         (nnimap-debug): Remove.
12877
12878         * net/imap.el (imap-fetch-safe): Remove function, and alter all
12879         callers to use `imap-fetch' instead.  According to the comments, this
12880         should be safe, since all other IMAP clients use the 1:* syntax.
12881         (imap-enable-exchange-bug-workaround): Remove.
12882         (imap-debug): Remove -- doesn't seem very useful.
12883
12884         * mail-source.el (mail-source-fetch): Don't message if we're fetching
12885         mail from a file, and the file doesn't exist.
12886
12887         * imap.el (imap-log): New convenience function used throughout instead
12888         of repeating the same code all over the place.
12889
12890         * pop3.el (pop3-streaming-movemail): Return t for success.
12891
12892         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
12893         .authinfo if we're using ssl connection.
12894
12895         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
12896         already have if we're in a main Gnus `g' run.
12897
12898         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
12899
12900 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12901
12902         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
12903
12904         * nnmh.el (nnmh-request-list-1): Bind `file'.
12905
12906         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
12907         alias to set-process-query-on-exit-flag or process-kill-without-query.
12908         (pop3-open-server): Use it.
12909
12910 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12911
12912         * mail-source.el (mail-source-delete-crash-box): Always move the crash
12913         box to the Incoming file.  Fixes mistake in previous checkin.
12914
12915         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
12916         request loop (for debugging purposes) removed.
12917
12918         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
12919         culprit is more visible.
12920         (nnml-save-incremental-nov, nnml-open-incremental-nov)
12921         (nnml-add-incremental-nov): New functions to do "incremental" nov
12922         updates, where we just append to the end of the existing nov files
12923         without reading/writing them in full.
12924
12925         * mail-source.el (mail-source-delete-crash-box): Really only check the
12926         incoming files once in a while.
12927
12928         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
12929
12930         * mail-source.el (mail-source-delete-crash-box): Only check the
12931         incoming files for deletion once per day to save a lot of file
12932         accesses.
12933
12934         * pop3.el (pop3-logon): Fix up unbound variable typo.
12935
12936         * mail-source.el (pop3-streaming-movemail): Autoload.
12937
12938         * pop3.el (pop3-streaming-movemail):
12939         Respect pop3-leave-mail-on-server.
12940
12941         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
12942         retrieval.
12943
12944         * pop3.el (pop3-process-filter): Remove unused function.
12945         (pop3-streaming-movemail, pop3-send-streaming-command)
12946         (pop3-wait-for-messages, pop3-write-to-file)
12947         (pop3-number-of-responses): New functions for streaming pop3
12948         retrieval.
12949
12950         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
12951         come from no known methods.
12952         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
12953         list.
12954
12955         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
12956         message sizes.
12957         (pop3-movemail): Use erase-buffer instead of looping and deleting
12958         regions, which seems rather odd.
12959
12960         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
12961         file once per `g' run.
12962
12963         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
12964         directories.  This makes the draft queue directory work.
12965
12966         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
12967         data from the backends, so that we only request the list of groups from
12968         each method once.  This should speed things up considerably.
12969
12970         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
12971         detect that it's not implemented.
12972
12973         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
12974         we actually do recurse down into the tree, but don't stat all leaf
12975         nodes.
12976
12977         * gnus-html.el (gnus-html-show-images): If there are no images to show,
12978         then say so instead of bugging out.
12979
12980         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
12981         files exist before trying to read them.
12982
12983         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
12984         around <pre_int>.
12985
12986         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
12987
12988         * nnmh.el (nnmh-request-list-1): Optimize for speed.
12989
12990 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12991
12992         * mm-util.el (mm-image-load-path): Just return the image directories,
12993         not all directories in the path in addition to the image directories.
12994         (mm-image-load-path): Maintain a cache of the image directories so that
12995         the `g' command in Gnus doesn't have to stat dozens of directories each
12996         time.
12997
12998         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
12999         (gnus-html-wash-tags): Add a new `i' command to insert images.
13000         (gnus-html-insert-image): New command and keystroke.
13001         (gnus-html-redisplay-with-images): New command and keystroke.
13002         (gnus-html-show-images): Rename command.
13003         (gnus-html-wash-tags): Remove more white space before <pre_int> image
13004         spacers.
13005         (gnus-html-wash-tags): Decode entities at the end, so that entities
13006         inside the tags don't mess up the rest of the "parsing".
13007
13008         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
13009         so that nnimap methods aren't agentized by default.  There's apparently
13010         many problems related to agent/imap behavior.
13011
13012         * gnus-art.el (gnus-article-copy-string): New command and key binding.
13013
13014         * gnus-html.el: Doc fix.
13015
13016 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13017
13018         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
13019         specifier-spec-list for Emacs 21.
13020
13021         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
13022         glyph-width and glyph-height instead of display-graphic-p and
13023         image-size; make avoidance of displaying small images work for XEmacs.
13024
13025         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
13026         for XEmacs.
13027
13028         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
13029         of symbol that holds plist data.
13030         (gnus-process-plist): Remove plist of process after getting it.
13031
13032 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13033
13034         * message.el (message-generate-hashcash): Change default to
13035         'opportunistic if hashcash is installed.
13036
13037         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
13038         (gnus-html-put-image): Only call image-size once, since it's somewhat
13039         time-consuming on remote X servers.
13040
13041 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13042
13043         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
13044         type on data, not a file name.
13045
13046         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
13047         window-pixel-edges for Emacs 21.
13048
13049         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
13050         decoded contents.
13051         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
13052
13053 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13054
13055         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
13056         group line format, since it isn't very interesting.
13057
13058         * gnus-agent.el (gnus-agent-short-article),
13059         (gnus-agent-long-article): Increase values for these two variables,
13060         since most people are likely to have more network connection and
13061         storage than before.
13062
13063         * gnus.el (gnus-refer-article-method): Change default to 'current.
13064         When referring an article, the common behavior is to refer it from the
13065         current select method, not the native select method.  The chances of
13066         the native select method having the message in question is rather slim
13067         these days.
13068
13069         * gnus-sum.el (gnus-auto-select-subject): Change default to
13070         `unseen-or-unread'.  I think it's likely that most people want to
13071         select an unseen article over a previously seen, but unread one.
13072
13073         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
13074         means that in the article buffer none of the minor mode elements will
13075         be shown, usually, and this is not desirable in most cases.
13076
13077         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
13078         that commands like `d' (and the like) go to the next line in the
13079         buffer, instead of the next unread article.  I think this is the
13080         behavior that is most natural for most users.
13081         (gnus-single-article-buffer): Change default to nil, so that people can
13082         have as many article buffers open as they have summary buffer.  I think
13083         this is the most natural way for the groups to behave.
13084
13085         * message.el (message-generate-new-buffers): Change default to
13086         `unsent', so that all new message buffers start their names with the
13087         string "*unsent", and it's easier to find the buffers if you move from
13088         them.
13089
13090 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13091
13092         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
13093         small.  They're probably tracking images.
13094         (gnus-html-wash-tags): Remove all <pre_int> place holders.
13095         (gnus-html-rescale-image): Yet another try at getting the image sizing
13096         right.
13097
13098         * nntp.el (nntp-request-set-mark): Refuse to do marks if
13099         nntp-marks-file-name is nil.
13100
13101 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
13102
13103         * gnus-html.el (gnus-html-wash-tags)
13104         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
13105         Better logging.
13106
13107 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13108
13109         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
13110
13111         * gnus-html.el (gnus-html-wash-tags): Check the value of
13112         gnus-blocked-images in the summary buffer.
13113
13114 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
13115
13116         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
13117
13118 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13119
13120         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
13121         like "a", it seems like.
13122         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
13123         since it needs to be picked from the correct buffer.
13124
13125         * nnwfm.el: Remove.
13126
13127         * nnlistserv.el: Remove.
13128
13129 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
13130
13131         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
13132         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
13133
13134 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13135
13136         * nnkiboze.el: Remove.
13137
13138         * nndb.el: Remove.
13139
13140         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
13141         alt text.
13142         (gnus-html-rescale-image): Try to get the rescaling logic right for
13143         images that are just wide and not tall.
13144
13145         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
13146         overshadow variable bindings.
13147
13148 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
13149
13150         * gnus-html.el (gnus-html-wash-tags)
13151         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
13152         Add extra logging.
13153
13154 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13155
13156         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
13157         (gnus-max-image-proportion): New variable.
13158         (gnus-html-rescale-image): New function.
13159         (gnus-html-put-image): Rescale images.
13160
13161 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13162
13163         Fix up some byte-compiler warnings.
13164         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
13165         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
13166         (gnus-article-fill-cited-article, gnus-article-hide-citation)
13167         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
13168         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
13169         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
13170         (gnus-group-update-group): Use save-excursion and with-current-buffer.
13171
13172 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13173
13174         * gnus-html.el (gnus-article-html): Decode contents by charset.
13175
13176 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13177
13178         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
13179         (gnus-html-frame-width, gnus-blocked-images):
13180         * message.el (message-prune-recipient-rules): Add custom version.
13181         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
13182
13183         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
13184         functions.
13185
13186         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
13187         gnus-process-get.
13188
13189 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
13190
13191         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
13192         instead of lsub directly.
13193
13194 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13195
13196         * nnwarchive.el: Remove.
13197
13198         * gnus-soup.el: Remove.
13199
13200         * nnsoup.el: Remove.
13201
13202         * nnultimate.el: Remove.
13203
13204         * gnus-html.el (gnus-blocked-images): New variable.
13205
13206         * message.el (message-prune-recipients): New function.
13207         (message-prune-recipient-rules): New variable.
13208
13209         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
13210         guess whether a long line is natural text or not.
13211
13212         * gnus-html.el (gnus-html-schedule-image-fetching):
13213         Use gnus-process-plist and friends for compatibility.
13214
13215 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
13216
13217         * gnus-html.el: Require packages that define macros used in this file.
13218         (gnus-article-mouse-face): Declare to silence byte-compiler.
13219         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
13220         process-get.
13221         (gnus-html-put-image): Use plist-get to avoid getf.
13222         (gnus-html-prefetch-images): Use with-current-buffer.
13223
13224 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13225
13226         * gnus-ems.el: Provide compatibility functions for
13227         gnus-set-process-plist.
13228
13229         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
13230         header-line-format for XEmacs 21.4.
13231
13232         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
13233         * gnus.el (gnus-valid-select-methods):
13234         * message.el (message-send-mail-partially-limit):
13235         * mm-decode.el (mm-text-html-renderer):
13236         * mml.el (mml-insert-mime-headers-always):
13237         * smiley.el (smiley-regexp-alist): Bump custom version.
13238
13239 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13240
13241         * gnus-html.el: Require mm-url.
13242         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
13243         with the url to `url'.
13244         (gnus-html-wash-tags): Support cid: URLs/images.
13245
13246 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13247
13248         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
13249         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
13250         bindings, as they aren't useful at all.  `w' is moved to `W w'.
13251
13252         * gnus-move.el: Remove file, since it doesn't really work.
13253
13254         * gnus-html.el (gnus-article-html): Tell w3m that the input is
13255         UTF-8.  This seems to fix problems with some German web feeds.
13256
13257         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
13258         at the top so that the proper colors are applied.
13259
13260         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
13261         don't have dots in their names.
13262
13263         * gnus-art.el (gnus-article-view-part): Doc fix.
13264
13265         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
13266         XEmacs-compatible.
13267         (gnus-html-put-image): Don't do images on non-graphic displays.
13268
13269         * nnslashdot.el: Remove this unused backend.
13270
13271         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
13272         actions.
13273         (gnus-undo-register-1): Revert last change.
13274
13275         * gnus-group.el (gnus-group-completing-read): Protect against not
13276         having completion-styles bound.
13277
13278         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
13279         make broken recipients happier.
13280
13281         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
13282
13283         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
13284         point parameter.
13285
13286         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
13287
13288         * gnus-group.el (gnus-group-completing-read): Add 'substring to
13289         completion-styles for group selection.
13290
13291 2009-02-04  Andreas Schwab  <schwab@suse.de>
13292
13293         * gnus-score.el (gnus-score-string): Fix regex for matching extra
13294         headers and regexp-quote the match if necessary.
13295
13296 2009-03-24  Miles Bader  <miles@gnu.org>
13297
13298         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
13299         the blinking smiley.
13300
13301 2009-03-24  Simon Josefsson  <simon@josefsson.org>
13302
13303         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
13304         blink smiley.
13305
13306 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13307
13308         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
13309         where the dribbel file lives exists.
13310
13311         * message.el (message-send-mail-partially-limit): Change the default to
13312         nil, since most people don't want this.
13313
13314         * mm-url.el (mm-url-decode-entities): Also decode entities like
13315         &#x3212.
13316
13317 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
13318
13319         * gnus-sum.el (gnus-summary-idna-message):
13320         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
13321         Hyperlink urls in docstrings with URL `...'.
13322
13323 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
13324
13325         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
13326         functions.
13327
13328 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13329
13330         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
13331         say what the mouseover text should be.
13332
13333         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
13334         version of the mm-w3m-safe-url-regexp variable to only download images
13335         in the groups where we want that to happen.
13336
13337         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
13338
13339         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
13340         easier debugging.
13341         (gnus-article-beginning-of-window): Add kludge to allow spacing past
13342         big pictures in the article buffer.
13343
13344         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
13345         gnus-article-html.
13346         (mm-text-html-renderer): gnus-article-html needs curl in addition to
13347         w3m.
13348
13349         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
13350
13351 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13352
13353         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
13354         which doesn't exist.
13355
13356         * message.el (message-inhibit-ecomplete): New variable to allow some
13357         function to inhibit ecomplete address storage.
13358         (message-resend): Disable ecomplete message storage when resending
13359         messages.
13360
13361         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
13362
13363 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13364
13365         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
13366         Save excursion while copying, moving, and deleting articles in order to
13367         prevent the cursor from jumping to unforeseen place.
13368
13369 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13370
13371         * lpath.el: No need to bind bookmark-current-buffer,
13372         bookmark-yank-point and bookmark-make-record-function.
13373
13374 2010-08-17  Glenn Morris  <rgm@gnu.org>
13375
13376         * gnus-sync.el: Require gnus components whose functions are used.
13377
13378         * gnus-art.el (bookmark-make-record-function):
13379         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
13380         Declare for compiler.
13381
13382         * mm-url.el (mml-compute-boundary): Autoload.
13383
13384 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13385
13386         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
13387
13388 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
13389
13390         Typo fix "hoo4a" -> "hook".
13391
13392         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
13393
13394 2010-08-14  Glenn Morris  <rgm@gnu.org>
13395
13396         * gnus-sync.el (gnus-sync): Fix defgroup version.
13397
13398 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
13399
13400         Doc fixes and keep unknown groups (ammended for nunion bug fix).
13401
13402         * gnus-sync.el: Fix docs.
13403         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
13404         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
13405
13406 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
13407
13408         Optimizations for gnus-sync.el.
13409
13410         * gnus-sync.el: Add docs about gnus-sync-backend
13411         possibilities.
13412         (gnus-sync-save): Remove unnecessary message.
13413         (gnus-sync-read): Optimize and show what groups were skipped.
13414
13415 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
13416
13417         Minor bug fixes for gnus-sync.el.
13418
13419         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
13420         Don't read the sync on get-new-news.
13421
13422         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
13423         quiet.
13424
13425         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
13426         (fix typo).
13427
13428 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
13429
13430         Make saving and restoring of hidden threads work with overlays.
13431         Patch applied by Ted Zlatanov.
13432
13433         * gnus-sum.el (gnus-hidden-threads-configuration)
13434         (gnus-restore-hidden-threads-configuration): Update to deal with text
13435         properties, rather than searching for a magic character.
13436
13437 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
13438
13439         New gnus-sync.el library for synchronization of marks.
13440
13441         * gnus-sync.el: New library for synchronization of marks.
13442
13443         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
13444         renamed from `gnus-registry-grep-in-list'.
13445
13446         * gnus-registry.el (gnus-registry-follow-group-p):
13447         Use `gnus-grep-in-list'.
13448
13449         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
13450
13451 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13452
13453         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
13454         determining charset of text fails.
13455
13456 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13457
13458         * nnmail.el (nnmail-get-new-mail-1): Revert.
13459
13460         * nnml.el (nnml-active-number): Make sure names of newly created groups
13461         in nnml-group-alist are encoded.
13462
13463 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13464
13465         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
13466         containing non-ASCII characters in active file for nnml back end.
13467
13468 2010-07-24  David Engster  <dengste@eml.cc>
13469
13470         * mml-smime.el (mml-smime-epg-verify): Also accept the older
13471         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
13472
13473 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
13474
13475         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
13476         tag (Bug#6654).
13477
13478 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13479
13480         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
13481         the article buffer, not the summary buffer.
13482
13483 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13484
13485         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
13486         Emacs 23 as well.
13487
13488 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13489
13490         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
13491         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
13492
13493 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13494
13495         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
13496         Patch applied by Karl Fogel.
13497
13498         * gnus-sum.el (gnus-summary-bookmark-make-record):
13499         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
13500
13501 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13502
13503         Allow bookmarks to be set from Gnus Article buffers (Bug#5975).
13504         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
13505         C-w still not working correctly from Article buffers; Thierry's
13506         patch to fix that will be applied after this.
13507
13508         * gnus-art.el (bookmark-make-record-function): New local variable.
13509
13510         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
13511         article buffer.
13512         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
13513
13514 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
13515
13516         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
13517         on changes in bookmark.el.
13518
13519 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13520
13521         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
13522         `no-log' instead of message not to log prompt string.
13523
13524 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
13525
13526         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
13527         the *other* type of HTML form submission.
13528
13529 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
13530
13531         * auth-source.el (auth-source-pick): If choice does not contain a
13532         questioned keyword, set the check to t.
13533
13534 2010-06-12  Romain Francoise  <romain@orebokech.com>
13535
13536         * gnus-util.el (gnus-date-get-time): Move up before first use.
13537
13538 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13539
13540         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
13541         (gnus-article-edit-part): Bind it to make last part that is substituted
13542         or deleted visible.
13543         (gnus-mime-display-single): Buttonize part of which id equals to
13544         gnus-mime-buttonized-part-id.
13545
13546 2010-06-10  Dan Christensen  <jdc@uwo.ca>
13547
13548         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
13549         (gnus-dd-mmm): Use gnus-date-get-time.
13550         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
13551         simplify logic.
13552         (gnus-summary-limit-to-age): Use gnus-date-get-time.
13553         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
13554
13555 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
13556
13557         * auth-source.el (top): Autoload `secrets-list-collections',
13558         `secrets-create-item', `secrets-delete-item'.
13559         (auth-sources): Fix tag string.
13560         (auth-get-source, auth-source-retrieve, auth-source-create)
13561         (auth-source-delete): New defuns.
13562         (auth-source-pick): Rewrite in order to avoid 2 passes.
13563         (auth-source-forget-user-or-password): New parameter USERNAME.
13564         (auth-source-user-or-password): New parameters CREATE-MISSING and
13565         DELETE-EXISTING.  Retrieve password interactively, if needed.
13566
13567 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
13568
13569         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
13570         deleting unused directories when gnus-expert-user is t.
13571
13572 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13573
13574         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
13575         for each temp file when gnus-article-browse-delete-temp is ask.
13576
13577 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13578
13579         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
13580         Replace Lisp calls to delete-backward-char by calls to delete-char.
13581
13582 2010-05-20  Kevin Ryde  <user42@zip.com.au>
13583
13584         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
13585
13586 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
13587
13588         * password-cache.el (password-cache-remove): Fix docstring.
13589
13590 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13591
13592         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
13593         article unless decoding article to be saved.
13594
13595 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13596
13597         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
13598         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
13599         generated within the mm-with-unibyte-current-buffer macro.
13600
13601 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13602
13603         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
13604         to nil when we're in a mml-preview buffer and no group is selected.
13605
13606 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
13607
13608         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
13609         when catching the `C-g'.  Reported by "Leo".
13610
13611 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13612
13613         * message.el (message-forward-make-body-plain)
13614         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
13615         multibyte-string-p.
13616
13617         * lpath.el: Revert.
13618
13619 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13620
13621         * message.el (message-forward-make-body-mml): Assume original message
13622         is multibyte string; error on unibyte.
13623         (message-forward-make-body-plain): Ditto; don't add excessive newline
13624         in body end.
13625
13626         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
13627
13628 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
13629
13630         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
13631         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
13632
13633 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13634
13635         * mm-extern.el (mm-extern-url): Don't use
13636         mm-with-unibyte-current-buffer.
13637         (mm-extern-cache-contents): Use with-current-buffer instead of
13638         save-excursion + set-buffer.
13639
13640 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13641
13642         * mm-util.el (mm-emacs-mule): Remove.
13643
13644 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
13645
13646         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
13647         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
13648         change.
13649
13650 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13651
13652         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
13653         bind the default value of enable-multibyte-characters to nil.
13654
13655 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13656
13657         * message.el (message-forward-make-body-plain)
13658         (message-forward-make-body-mml):
13659         Don't use mm-with-unibyte-current-buffer.
13660
13661 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13662
13663         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
13664
13665 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
13666
13667         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
13668         (Bug#5592).
13669
13670 2010-05-07  Julien Danjou  <julien@danjou.info>
13671
13672         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
13673         it to mm-pipe-part.
13674
13675         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
13676         it is given.
13677
13678 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13679
13680         * binhex.el (binhex-decode-region-internal):
13681         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
13682         (dns-query):
13683         * nnweb.el (nnweb-gmane-search):
13684         * pgg-parse.el (pgg-parse-armor):
13685         * pgg.el (pgg-verify-region):
13686         * sha1.el (sha1-string-external):
13687         * uudecode.el (uudecode-decode-region-internal):
13688         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
13689         XEmacs.
13690
13691         * gnus-art.el (gnus-article-browse-html-parts):
13692         * gnus-group.el (gnus-read-ephemeral-gmane-group):
13693         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
13694         make-temp-file.
13695
13696         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
13697         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
13698         compiling.
13699
13700         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
13701         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
13702         XEmacs when compiling.
13703
13704         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
13705         gnus-pick-mode-off-hook for XEmacs when compiling.
13706         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
13707         gnus-binary-mode-off-hook for XEmacs when compiling.
13708
13709         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
13710         Return nil if char-charset is not available.
13711
13712         * imap.el (imap-disable-multibyte)
13713         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
13714         macros.
13715
13716         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
13717         instead of encode-coding-string.
13718
13719         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
13720         'xemacs) instead of mm-emacs-mule to switch function definitions.
13721         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
13722
13723         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
13724         bind temporary-file-directory for XEmacs;
13725         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
13726         timer-set-function for XEmacs 21.4 and SXEmacs;
13727         bind timer-list for XEmacs 21.4 and SXEmacs;
13728         fbind char-charset and find-charset-region for non-Mule XEmacs;
13729         fbind decode-coding-region, decode-coding-string, detect-coding-region,
13730         encode-coding-region and encode-coding-string for XEmacs having no
13731         file-coding feature.
13732
13733 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
13734
13735         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
13736
13737 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13738
13739         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
13740         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
13741
13742 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
13743
13744         * mm-util.el (mm-decompress-buffer): Use `delete-file';
13745         alias `jka-compr-delete-temp-file' no longer exists.
13746
13747 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13748
13749         Use define-minor-mode in Gnus where applicable.
13750         * mml.el (mml-mode): Use define-minor-mode.
13751         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
13752         (gnus-undo-mode): Use define-minor-mode.
13753         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
13754         (gnus-dead-summary-mode): Use define-minor-mode.
13755         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
13756         Initialize in declaration.
13757         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
13758         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
13759         (gnus-mailing-list-mode): Use define-minor-mode.
13760         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
13761         (gnus-draft-mode): Use define-minor-mode.
13762         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
13763         (gnus-dired-mode): Use define-minor-mode.
13764
13765 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
13766
13767         * mml.el (mml-generate-mime-1, mml-compute-boundary-1): Update 'mml
13768         handles on recursive mml-to-mime translation and check them for
13769         boundary delimiter collisions.  Reported by Greg Troxel.
13770
13771 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13772
13773         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
13774
13775 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13776
13777         * mm-util.el (mm-find-buffer-file-coding-system):
13778         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
13779
13780 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
13781
13782         * message.el (message-generate-headers): Record insertion of optional
13783         headers as well.  Otherwise the check to prevent repeated insertion of
13784         optional headers is a no-op.
13785
13786 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
13787
13788         * smime.el: Don't mention CVS.
13789
13790         * nnrss.el (nnrss-fetch): Don't mention CVS.
13791
13792         * nnir.el: Don't mention CVS.
13793
13794 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13795
13796         * gnus-sum.el (gnus-summary-bookmark-make-record):
13797         Add `location' field.
13798
13799 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13800
13801         * lpath.el: Fbind bookmark-default-handler,
13802         bookmark-get-bookmark-record, bookmark-make-record-default,
13803         bookmark-prop-get for Emacs <23 and XEmacs.
13804
13805 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13806
13807         * gnus-sum.el: Add bookmark declarations to silence the compiler.
13808         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
13809         Use with-current-buffer to silence the byte-compiler.
13810         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
13811         bother to require `gnus'.
13812         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
13813
13814 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13815
13816         * gnus-sum.el (gnus-summary-bookmark-make-record)
13817         (gnus-summary-bookmark-jump): New functions.
13818         (gnus-summary-mode): Setup bookmark support.
13819
13820 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
13821
13822         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
13823         if set.
13824
13825 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13826
13827         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
13828         gnus-article-browse-html-save-cid-image; make it work recursively for
13829         forwarded messages as well.
13830         (gnus-article-browse-html-parts): Work when prefix arg is given.
13831         (gnus-article-browse-html-article): Doc fix.
13832
13833 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
13834
13835         * message.el (message-default-mail-headers)
13836         (message-default-headers): Carry the value mail-default-headers over
13837         into message-default-mail-headers, rather than message-default-headers.
13838
13839 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
13840
13841         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
13842         charset.
13843
13844         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
13845         charset into the <meta> tag when the article is encoded to utf-8.
13846
13847 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13848
13849         * gnus-art.el (gnus-article-browse-delete-temp-files):
13850         Delete directories as well.
13851         (gnus-article-browse-html-parts): Work for images that do not specify
13852         file names; delete temp directory when quitting; insert header at the
13853         right place; use file: scheme for image files.
13854
13855 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
13856
13857         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
13858         (gnus-article-browse-html-parts): Use it to make temporary cid image
13859         files in addition to html file so that browser may display them.
13860
13861 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13862
13863         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
13864
13865 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
13866
13867         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
13868
13869 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
13870
13871         * auth-source.el (auth-sources): Change default to be simpler.
13872         Explain about Secret Service API sources.  Improve Customize options.
13873         (auth-source-pick): Change to accept any number of search parameters.
13874         Implement fallbacks iteratively, not recursively.  Add scoring on the
13875         second pass and sort by score.  Call Secret Service API when needed.
13876         (auth-source-user-or-password): Use it.  Call Secret Service API
13877         directly when needed to get the user name and the password.
13878
13879 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
13880
13881         * message.el (message-interactive): Doc fix.
13882         (message-qmail-inject-args): Reflow.
13883         (message-kill-to-signature): Fix typo in docstring.
13884
13885         * smiley.el (smiley-buffer): Fix typo in docstring.
13886
13887 2010-03-24  Glenn Morris  <rgm@gnu.org>
13888
13889         * mail-source.el (gnus-message): Declare.
13890         (mail-source-delete-old-incoming): Require gnus-util.
13891
13892 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13893
13894         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
13895
13896         * message.el (ecomplete-setup): Autoload it for Emacs <23.
13897
13898         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
13899         password-cache's default if it is not bound.
13900         (mml-secure-passphrase-cache-expiry): Default to 16 that is
13901         password-cache-expiry's default if it is not bound.
13902
13903         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
13904         available in Emacs 21.
13905
13906         * lpath.el: Suppress compiler warnings for:
13907         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
13908         XEmacs;
13909         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
13910         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
13911         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
13912
13913 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
13914
13915         * auth-source.el (auth-sources): Fix up definition so extra parameters
13916         are always inline.
13917
13918 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
13919
13920         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
13921         wasn't updated after mismatch.  Clear cached mailbox info correctly
13922         when uidvalidity changes.
13923         (nnimap-group-prefixed-name): New function to avoid some code
13924         duplication.
13925         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
13926         (nnimap-request-group): Use it.
13927         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
13928         (nnimap-update-unseen): Significantly improved speed of Gnus startup
13929         with many imap folders.  This is done by caching the group status from
13930         the imap server persistently in a group parameter `imap-status'.  (This
13931         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
13932         but not persistently, so every Gnus startup was still very slow.)
13933
13934 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
13935
13936         * assistant.el (assistant-render-text): Run `widget-setup' and don't
13937         delete the extra newline.  Otherwise editing of :string and :number
13938         types don't work.
13939
13940 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
13941
13942         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
13943         secrets.el dependency.
13944         (auth-sources): Add optional user name.  Add secrets.el configuration
13945         choice (unused right now).
13946
13947 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
13948
13949         * gnus-sum.el (gnus-summary-make-menu-bar):
13950         Let `gnus-registry-install-shortcuts' fill in the functions.
13951
13952         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
13953         warnings.
13954         (gnus-registry-misc-menus): Variable to hold registry mark menus.
13955         (gnus-registry-install-shortcuts): Populate and use it in a
13956         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
13957
13958 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
13959
13960         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
13961         In-place substitutions for the group name encoding/decoding.
13962         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
13963         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
13964         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
13965         (nnimap-update-unseen, nnimap-request-list)
13966         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
13967         (nnimap-request-set-mark, nnimap-split-to-groups)
13968         (nnimap-split-articles, nnimap-request-newgroups)
13969         (nnimap-request-create-group, nnimap-request-accept-article)
13970         (nnimap-request-delete-group, nnimap-request-rename-group)
13971         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
13972         `encoded-mbx' for consistency.
13973         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
13974         variable `imap-current-mailbox'.
13975
13976         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
13977         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
13978
13979 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
13980
13981         * pop3.el (pop3-display-message-size-flag): Display message size byte
13982         counts during POP3 download.
13983         (pop3-movemail): Use it.
13984         (pop3-list): Implement listing of available messages.
13985
13986 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
13987
13988         * nnir.el (nnir-get-article-nov-override-function): New function to
13989         override the normal NOV retrieval.
13990         (nnir-retrieve-headers): Use it.
13991
13992 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
13993
13994         * auth-source.el (netrc-machine-user-or-password): Autoload.
13995
13996 2010-03-19  Glenn Morris  <rgm@gnu.org>
13997
13998         Stop message.el from loading about 40 libraries it doesn't always need.
13999         The general approach is to autoload rather than require, and to
14000         require in the specific functions rather than the file.  (Bug#5642)
14001
14002         * gmm-utils.el: Don't require wid-edit.
14003         (widget-create-child-value, widget-convert, widget-default-get):
14004         Autoload.
14005
14006         * gnus-util.el: Don't require time-date, netrc.
14007         (message-fetch-field, gnus-group-name-decode): Declare rather than
14008         autoloading.
14009         (gnus-fetch-field): Require message.
14010         (gnus-decode-newsgroups): Require gnus-group.
14011
14012         * ietf-drums.el: Don't require time-date.
14013
14014         * message.el: Don't require hashcash, canlock, ecomplete.
14015         Do require mail-utils.  Require nnheader only when compiling.
14016         (smtpmail-default-smtp-server): Remove declaration.
14017         (message-send-mail-function): Check smtpmail-default-smtp-server
14018         is bound rather than requiring smtpmail.
14019         (message-auto-save-directory, message-insert-signature):
14020         Use expand-file-name rather than nnheader-concat.
14021         (nnheader-insert-file-contents): Autoload.
14022         (hashcash-wait-async): Declare.
14023         (message-send-mail): Only call gnus-setup-posting-charset if
14024         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
14025         (message-send-mail-with-sendmail): Require sendmail.
14026         (canlock-password, canlock-password-for-verify): Declare.
14027         (message-canlock-password): Require canlock.
14028         (nnheader-get-report): Autoload.
14029         (gnus-setup-posting-charset): Declare.
14030         (message-send-news): Require gnus-msg.
14031         (message-make-references, message-make-in-reply-to): Use mail-header-id
14032         rather than the alias mail-header-message-id.
14033         (ecomplete-add-item, ecomplete-save): Declare.
14034         (message-put-addresses-in-ecomplete): Require ecomplete.
14035         (ecomplete-display-matches): Autoload.
14036
14037         * mm-decode.el: Don't require mailcap, gnus-util.
14038         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
14039         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
14040         Autoload.
14041         (mailcap-mime-extensions): Declare.
14042
14043         * mm-encode.el: Don't require mailcap.
14044         (mailcap-extension-to-mime): Autoload.
14045
14046         * mml-sec.el: Don't require password-cache.
14047
14048         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
14049         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
14050         (mml-minibuffer-read-type): Require mailcap.
14051         (mml-preview): Require gnus-msg.
14052
14053         * mml1991.el: Require password-cache.
14054         (password-cache-expiry): Remove declaration.
14055
14056         * mml2015.el: Require password-cache.
14057         (password-cache-expiry): Remove declaration.
14058
14059         * nneething.el (mailcap): Require mailcap.
14060
14061         * nnheader.el (declare-function): Add compatibility stub.
14062         (message-remove-header): Declare rather than autoload.
14063         (nnheader-replace-header): Require message.
14064
14065         * nnimap.el (declare-function): Add compatibility stub.
14066         (netrc-parse, netrc-machine-user-or-password): Declare.
14067         (nnimap-open-connection): Require netrc.
14068
14069         * nntp.el (declare-function): Add compatibility stub.
14070         (netrc-parse, netrc-machine, netrc-get): Declare.
14071         (nntp-send-authinfo): Require netrc.
14072
14073         * rfc2047.el: Don't require qp.
14074         (quoted-printable-encode-region, quoted-printable-decode-string):
14075         Autoload.
14076
14077         * sieve-mode.el: Don't require easymenu.
14078         (easy-menu-add-item): Autoload it.
14079
14080         * spam-stat.el (time-to-number-of-days): Autoload it.
14081
14082 2010-03-19  Glenn Morris  <rgm@gnu.org>
14083
14084         * password-cache.el (password-cache, password-cache-expiry): Autoload.
14085
14086 2010-03-18  Glenn Morris  <rgm@gnu.org>
14087
14088         * hashcash.el (declare-function): Remove duplicate definition.
14089
14090 2010-03-17  Kevin Ryde  <user42@zip.com.au>
14091
14092         * mml.el (mml-read-tag): Unquote values with `read' to reverse
14093         prin1 in mml-insert-tag (just stripping the quotes gave wrong
14094         value if any backslash escapes).
14095
14096 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14097
14098         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
14099         if it is available.  (bug#5647)
14100
14101         * lpath.el: Suppress compiler warning for coding-system-from-name for
14102         Emacs 21 and XEmacs.
14103
14104 2010-03-14  Juri Linkov  <juri@jurta.org>
14105
14106         * hmac-def.el:
14107         * hmac-md5.el:
14108         * netrc.el: Fix keywords.
14109
14110 2010-02-26  Glenn Morris  <rgm@gnu.org>
14111
14112         * message.el (message-send-mail-function): Change the default, so that
14113         it inherits from a customized send-mail-function.  (Bug#5643)
14114
14115 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14116
14117         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
14118         shell-command-to-string signals an error (bug#5299).
14119
14120 2010-02-24  Glenn Morris  <rgm@gnu.org>
14121
14122         * message.el (message-smtpmail-send-it)
14123         (message-send-mail-with-mailclient): Doc fixes.
14124
14125 2010-02-16  Glenn Morris  <rgm@gnu.org>
14126
14127         * message.el (message-default-mail-headers): Change the default value
14128         to ease the transition from mail-mode to message-mode.  (Bug#5555)
14129
14130 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14131
14132         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
14133         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
14134
14135 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
14136
14137         * time-date.el (date-to-time): Doc fix (Bug#5408).
14138
14139 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
14140
14141         * message.el (message-mail): Just pass yank-action on to message-setup.
14142         (message-setup): Handle (FUN . ARGS) form of yank-action.
14143         (message-with-reply-buffer, message-widen-reply)
14144         (message-yank-original): Handle non-buffer values of
14145         message-reply-buffer (Bug#4080).
14146         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
14147
14148 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
14149
14150         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
14151         Fix typo in docstring.
14152
14153 2010-01-08  Jason Rumney  <jasonr@gnu.org>
14154
14155         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
14156         response.
14157
14158 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14159
14160         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
14161
14162         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
14163
14164         * message.el (message-check-news-header-syntax): Protect against a
14165         string that `rfc822-addresses' returns when parsing fails.
14166
14167 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14168
14169         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
14170         (gnus-previous-char-property-change): New functions.
14171
14172         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
14173
14174 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
14175
14176         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
14177         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
14178
14179 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
14180
14181         * message.el (message-exchange-point-and-mark): Rework last change to
14182         avoid using optional arg of exchange-point-and-mark, for backward
14183         compatibility.
14184
14185 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
14186
14187         * message.el (message-exchange-point-and-mark):
14188         Call exchange-point-and-mark with an argument rather than setting
14189         mark-active by hand (Bug#5175).
14190
14191 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14192
14193         * nntp.el (nntp-service-to-port): Work for service expressed with
14194         numeric string; replace [:digit:] with [0-9] for XEmacs.
14195
14196 2009-12-17  Glenn Morris  <rgm@gnu.org>
14197
14198         * gnus-group.el (gnus-bug-group-download-format-alist):
14199         Change emacs entry to debbugs.gnu.org.  Bump :version.
14200
14201 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
14202
14203         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
14204
14205 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
14206
14207         * message.el (message-info): Explain why we use `Info-goto-node'.
14208
14209 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14210
14211         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
14212
14213 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14214
14215         * message.el (message-completion-in-region): New compatibility function.
14216         (message-expand-group): Use it.
14217
14218 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14219
14220         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
14221         with no unread article should be listed if the 2nd arg `predicate' is
14222         given.
14223
14224 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14225
14226         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
14227
14228 2009-11-29  Juri Linkov  <juri@jurta.org>
14229
14230         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
14231         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
14232         on `gnus-recenter'.  (Bug#4698, Bug#4981)
14233
14234 2009-11-26  Kevin Ryde  <user42@zip.com.au>
14235
14236         * sha1.el (sha1-string-external): default-directory "/" in case
14237         otherwise non-existent.  process-connection-type pipe for touch of
14238         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
14239
14240 2009-11-25  Kevin Ryde  <user42@zip.com.au>
14241
14242         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
14243         it's comms related and sgml-mode.el has "comm" on that basis too.
14244
14245 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14246
14247         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
14248         containing tspecial characters if they have been already quoted.
14249
14250 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
14251
14252         * dns-mode.el (auto-mode-alist): Purecopy string.
14253
14254 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14255
14256         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
14257
14258 2009-10-24  Glenn Morris  <rgm@gnu.org>
14259
14260         * gnus-art.el (help-xref-stack-item): Define for compiler.
14261
14262 2009-10-21  Kevin Ryde  <user42@zip.com.au>
14263
14264         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
14265
14266 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14267
14268         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
14269
14270 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14271
14272         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
14273         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
14274
14275 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14276
14277         * gnus.el (gnus-overlay-get): New alias to overlay-get.
14278         (gnus-overlays-in): New alias to overlays-in.
14279
14280         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
14281         gnus-overlay-get, and gnus-delete-overlay.
14282         (gnus-summary-show-thread): Make it work as well for systems in which
14283         next-single-char-property-change is not available.
14284         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
14285
14286         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
14287         (gnus-overlay-get): New alias to extent-property.
14288         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
14289
14290         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
14291         SXEmacs.
14292
14293         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
14294         SXEmacs.
14295
14296 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
14297
14298         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
14299
14300 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
14301
14302         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
14303         and XEmacs that don't have `remove-overlays'.
14304
14305 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14306
14307         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
14308         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
14309         selective display.  Use overlays instead.
14310
14311 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
14312
14313         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
14314
14315 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
14316
14317         * spam-stat.el (spam-stat-load): Fix typo in message.
14318
14319 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
14320
14321         * dig.el (dig-invoke): Fix typo in docstring.
14322         (query-dig): Reflow docstring.
14323
14324 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
14325
14326         * gnus-art.el (gnus-article-encrypt-body):
14327         * message.el (message-check-recipients):
14328         * mm-util.el (mm-codepage-setup):
14329         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
14330         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
14331
14332 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
14333
14334         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
14335         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
14336         keys from the menu if mm-{sign,encrypt}-option is 'guided.
14337         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
14338         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
14339
14340 2009-09-21  Kevin Ryde  <user42@zip.com.au>
14341
14342         * dig.el: Add "Keywords: comm", as per net-utils.el.
14343
14344 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14345
14346         * dig.el (dig-mode): Use define-derived-mode.
14347
14348 2009-09-19  Glenn Morris  <rgm@gnu.org>
14349
14350         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
14351
14352 2009-09-18  Glenn Morris  <rgm@gnu.org>
14353
14354         * gnus-diary.el (gnus-diary-check-message):
14355         * message.el (message-insert-formatted-citation-line):
14356         * nnbabyl.el (top-level):
14357         * nndiary.el (nndiary-schedule):
14358         Fix typos in condition-case handlers.
14359
14360 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14361
14362         * gnus-art.el (gnus-article-edit-part): Work for the buffer
14363         configuration that provides the sole article window in a frame;
14364         position point correctly after deleting a part.
14365
14366 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
14367
14368         * spam.el (spam-unregister-on-reregister): Add boolean variable.
14369         (spam-resolve-registrations-routine): Use it to unregister articles
14370         that change status.
14371
14372 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14373
14374         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
14375         with XEmacs.
14376         (parse-time-string-chars): Use it.
14377
14378 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
14379
14380         * imap.el (imap-interactive-login): Better messages.
14381         (imap-open): Fix bug with renamed buffer on reconnect.
14382         (imap-authenticate): Add buffer-local imap-last-authenticator variable
14383         for easier debugging and cleaner code.  On successful (guessed based on
14384         server capabilities) secondary authentication, set imap-state
14385         correctly.
14386         (imap-last-authenticator): Define imap-last-authenticator as a variable
14387         to avoid warnings.
14388
14389 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14390
14391         * nnrss.el (nnrss-request-article): Remove binding of
14392         default-enable-multibyte-characters that has gotten needless by
14393         the 2007-07-13 change in rfc2047-encode-message-header.
14394
14395         * mml.el (mml-insert-multipart): Error on the message header.
14396         (mml-insert-part): Error on the message header; position point at
14397         the end of a MIME tag.
14398
14399 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14400
14401         * time-date.el (autoload): Expand define-obsolete-function-alias into
14402         defalias and make-obsolete for old Emacsen that Gnus supports.
14403         (with-no-warnings): Define it for old Emacsen.
14404         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
14405         is available.
14406         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
14407         float-time is available; suppress compile warning for time-to-seconds.
14408
14409         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
14410         (gnus-float-time): Alias to float-time if it exists.
14411
14412         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
14413         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
14414         float-time is available; suppress compile warning for time-to-seconds.
14415
14416         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
14417         XEmacs.
14418
14419 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
14420
14421         * imap.el (imap-message-map): Docstring fix.
14422
14423 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14424
14425         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
14426         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
14427         Add the optional argument `encoding' that overrides the default.
14428
14429         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
14430         mm-encode-buffer.
14431
14432 2009-09-04  Glenn Morris  <rgm@gnu.org>
14433
14434         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
14435         mm-disable-multibyte, rather than default-enable-multibyte-characters.
14436         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
14437         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
14438         * mm-util.el (mm-with-unibyte-current-buffer)
14439         (mm-find-buffer-file-coding-system):
14440         * yenc.el (yenc-decode-region): Use default-value rather than
14441         default-enable-multibyte-characters.
14442
14443 2009-09-03  Glenn Morris  <rgm@gnu.org>
14444
14445         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
14446         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
14447         than default-enable-multibyte-characters.
14448
14449 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
14450
14451         * gnus-art.el (gnus-article-read-summary-keys):
14452         Fix gnus-buffer-configuration's value temporarily used.
14453
14454 2009-09-02  Glenn Morris  <rgm@gnu.org>
14455
14456         * gnus-util.el (gnus-float-time): New function.
14457         * gnus-delay.el (gnus-delay-article):
14458         * gnus-sum.el (gnus-thread-latest-date):
14459         * gnus-util.el (gnus-user-date): Use gnus-float-time.
14460         * nnspool.el (nnspool-request-newgroups):
14461         Use gnus-float-time rather than time-to-seconds.
14462         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
14463
14464         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
14465         (gnus-header-subject-face, gnus-header-newsgroups-face)
14466         (gnus-header-name-face, gnus-header-content-face):
14467         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
14468         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
14469         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
14470         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
14471         (gnus-cite-face-11):
14472         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
14473         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
14474         (gnus-server-closed-face, gnus-server-denied-face)
14475         (gnus-server-offline-face):
14476         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
14477         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
14478         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
14479         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
14480         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
14481         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
14482         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
14483         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
14484         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
14485         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
14486         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
14487         (gnus-summary-selected-face, gnus-summary-cancelled-face)
14488         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
14489         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
14490         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
14491         (gnus-summary-high-undownloaded-face)
14492         (gnus-summary-low-undownloaded-face)
14493         (gnus-summary-normal-undownloaded-face)
14494         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
14495         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
14496         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
14497         (gnus-splash-face):
14498         * message.el (message-header-to-face, message-header-cc-face)
14499         (message-header-subject-face, message-header-newsgroups-face)
14500         (message-header-other-face, message-header-name-face)
14501         (message-header-xheader-face, message-separator-face)
14502         (message-cited-text-face, message-mml-face):
14503         * sieve-mode.el (sieve-control-commands-face)
14504         (sieve-action-commands-face, sieve-test-commands-face)
14505         (sieve-tagged-arguments-face):
14506         * spam.el (spam-face):
14507         Mark face aliases with "-face" in the name as obsolete.
14508
14509 2009-09-01  Glenn Morris  <rgm@gnu.org>
14510
14511         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
14512         than goto-line.
14513
14514 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14515
14516         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
14517         Don't move point if the command is invoked inside the message header.
14518
14519 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14520
14521         * imap.el (imap-send-command): Simplify.
14522         (imap-wait-for-tag): point-max -> buffer-size.
14523
14524 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14525
14526         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
14527         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
14528         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
14529         * nnir.el (nnir-swish-e-index-file):
14530         * gnus-sum.el (gnus-summary-delete-marked-as-read)
14531         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
14532         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
14533         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
14534         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
14535         (gnus-treat-display-xface): Add Emacs version of obsolescence.
14536
14537 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14538
14539         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
14540         Don't save excursion.
14541
14542 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14543
14544         * nnheader.el (nnheader-find-file-noselect):
14545         * mm-util.el (mm-insert-file-contents):
14546         Use (default-value 'major-mode) instead of default-major-mode.
14547
14548 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14549
14550         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
14551
14552 2009-08-26  Glenn Morris  <rgm@gnu.org>
14553
14554         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
14555         than placing in files.el.
14556
14557 2009-08-25  Glenn Morris  <rgm@gnu.org>
14558
14559         * nnir.el (top-level): Don't require cl at run-time.
14560         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
14561         Replace cl-function substitute with gnus-replace-in-string.
14562         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
14563         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
14564         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
14565         simplified expansions.
14566
14567 2009-08-25  Kevin Ryde  <user42@zip.com.au>
14568
14569         * dig.el (dig): Add autoload cookie.
14570
14571 2009-08-22  Glenn Morris  <rgm@gnu.org>
14572
14573         * gnus-art.el (gnus-button-patch): Use forward-line rather than
14574         goto-line.
14575
14576 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
14577
14578         * parse-time.el (parse-time-string-chars): Save match data.
14579
14580 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
14581
14582         * parse-time.el (parse-time-string-chars): Compute using character
14583         classes, to handle non-ascii characters (Bug#3190).
14584
14585 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14586
14587         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
14588
14589         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
14590         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
14591         (gnus-mm-display-part, gnus-mime-display-single)
14592         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
14593         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
14594
14595         * gnus-sum.el
14596         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
14597         (gnus-summary-move-article): Add expirable mark to articles copied or
14598         moved to group that has auto-expire turned on if the option is non-nil.
14599
14600 2009-07-24  Glenn Morris  <rgm@gnu.org>
14601
14602         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
14603         Fix typo.  (Bug#3903)
14604
14605 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14606
14607         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
14608         gnus-article-read-summary-keys rather than gnus-summary-edit-article
14609         that should not be used for draft articles.
14610         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
14611         that has no concern in minor mode keys.
14612         (gnus-article-summary-command, gnus-article-summary-command-nosave):
14613         Abolish.
14614
14615 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14616
14617         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
14618         article without making inquiry to a user for unknown encoding.
14619
14620         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
14621         (nnmaildir--scan): Assume i-node and device number that file-attributes
14622         returns might be cons-cell.
14623
14624         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
14625
14626         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
14627
14628 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
14629
14630         * auth-source.el: Remove docs now in auth.texi.  Don't use
14631         `gnus-message' for logging.  Add new variables `auth-source-debug' and
14632         `auth-source-hide-passwords' and use them.
14633
14634 2009-07-15  Glenn Morris  <rgm@gnu.org>
14635
14636         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
14637
14638 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14639
14640         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
14641         excessive whitespace from the default values of title and description.
14642
14643 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14644
14645         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
14646         mail-fetch-field to fetch Content-Description header in order to
14647         exclude newlines.
14648
14649 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
14650
14651         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
14652         format used by GnuPG 2.0.11.
14653
14654 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14655
14656         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
14657         to deleted part.
14658
14659 2009-05-30  David Engster  <dengste@eml.cc>
14660
14661         * nnmairix.el: Remove old documentation in the commentary block.
14662         (nnmairix-request-group): Do not update active file for nnml back ends.
14663         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
14664         end so that overview files are ignored.
14665         (nnmairix-update-groups): Make updating the groups more robust by using
14666         marks.
14667         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
14668         with dollar characters in message-id.
14669
14670 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
14671
14672         * spam.el: Use dns-query instead of query-dns.  Was renamed on
14673         2008-12-25 in dns.el.
14674
14675 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14676
14677         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
14678         could happen if the text is only composed of spaces and/or tabs.
14679
14680 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
14681
14682         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
14683         when sending a queued message to avoid extra mml tags.
14684
14685 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14686
14687         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
14688
14689 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14690
14691         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
14692         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
14693         rmail-toggle-header for XEmacs;
14694         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
14695
14696 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14697
14698         * gnus-dired.el: Remove autoload for gnus-setup-message.
14699         (gnus-dired-attach): Fake this-command value to prevent Gnus from
14700         displaying Gnus logo; always use compose-mail.
14701
14702 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14703
14704         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
14705
14706 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14707
14708         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
14709         (gnus-nocem-issuers): List currently active issuers; fix custom type.
14710         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
14711         available.
14712         (gnus-nocem-epg-verify): New function.
14713
14714 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
14715
14716         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
14717
14718 2009-02-15  Glenn Morris  <rgm@gnu.org>
14719
14720         * gnus-util.el (rmail-insert-rmail-file-header)
14721         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
14722         autoloads.
14723         (rmail-default-rmail-file): Remove unnecessary declaration.
14724         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
14725
14726 2009-02-14  Glenn Morris  <rgm@gnu.org>
14727
14728         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
14729         variable (only used in gnus-util, which declares it anyway).
14730         (rmail-output-to-rmail-file): Remove autoload of deleted function,
14731         which was only needed by gnus-art (changed to not use it any more).
14732         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
14733         only used in gnus-util, which autoloads it itself.
14734         (rmail-update-summary): Fix autoload.
14735
14736         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
14737         rather than rmail-output-to-rmail-file.
14738
14739 2009-02-07  Glenn Morris  <rgm@gnu.org>
14740
14741         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
14742         autoload of function that no longer exists.
14743         (rmail-toggle-header): Declare.
14744         (message-forward-rmail-make-body): Handle mbox Rmail.
14745
14746 2009-01-31  Glenn Morris  <rgm@gnu.org>
14747
14748         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
14749         2009-01-09 change.
14750
14751 2009-01-31  Dave Love  <fx@gnu.org>
14752
14753         * imap.el (imap-fetch-safe): Bind debug-on-error.
14754         (imap-debug): Add imap-fetch-safe.
14755
14756 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
14757
14758         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
14759         (auth-source-forget-all-cached): New convenience function.
14760         (auth-source-user-or-password): Accept list of modes or a single mode.
14761
14762         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
14763         auth-source modes.
14764
14765         * netrc.el (netrc-machine-user-or-password): Use list of
14766         auth-source modes.
14767
14768         * nnimap.el (nnimap-open-connection): Use list of
14769         auth-source modes.
14770
14771         * nntp.el (nntp-send-authinfo): Use list of
14772         auth-source modes.
14773
14774 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
14775
14776         * auth-source.el: Update docs to reflect epa-file-enable is to be used
14777         now.
14778
14779 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14780
14781         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
14782         coding system in XEmacs; add a workaround for XEmacs.
14783
14784         * lpath.el: Fbind coding-system-aliasee.
14785
14786 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14787
14788         * mm-util.el (mm-coding-system-priorities): Protect against nil value
14789         of current-language-environment.
14790
14791 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
14792
14793         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
14794         available at runtime.
14795
14796 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14797
14798         * gnus-art.el (article-date-ut): Fix end point of narrowing.
14799
14800 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
14801
14802         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
14803         the greatest positive fixnum value doesn't work under an XEmacs with
14804         bignum support; use the most-positive-fixnum constant instead,
14805         available since Emacs 21.1 with cl and XEmacs 21.1.
14806
14807 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14808
14809         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
14810         XEmacs gets not to work.
14811
14812 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14813
14814         * mm-util.el (mm-coding-system-priorities): Allow the value like
14815         "Japanese (UTF-8)" of current-language-environment.
14816
14817 2009-01-09  Glenn Morris  <rgm@gnu.org>
14818
14819         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
14820         with last-command-event.
14821
14822 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
14823
14824         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
14825         in the doc string.
14826
14827         * message.el (message-fix-before-sending): Amend comment.
14828
14829 2009-01-08  Dave Love  <fx@gnu.org>
14830
14831         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
14832
14833 2009-01-07  David Engster  <dengste@eml.cc>
14834
14835         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
14836         simplified server definitions by converting it via
14837         gnus-server-to-method.
14838
14839 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14840
14841         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
14842         parameter's operands.
14843
14844 2009-01-06  David Engster  <dengste@eml.cc>
14845
14846         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
14847         primary select method (for gnus-group-mark-article-as-read).
14848
14849 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
14850
14851         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
14852         `(gnus)Face', not `(gnus)X-Face'.
14853
14854 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14855
14856         * mm-util.el (mm-ucs-to-char): New function.
14857
14858         * mm-url.el (mm-url-decode-entities): Use it.
14859
14860         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
14861         unicode-to-char.
14862
14863 2009-01-05  Dave Love  <fx@gnu.org>
14864
14865         * time-date.el: Require cl for `declare'.
14866
14867 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
14868
14869         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
14870         Dave Love.
14871
14872 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
14873
14874         * message.el (message-fix-before-sending): Add `eight-bit' to
14875         illegible-text check.
14876
14877 2009-01-03  Michael Olson  <mwolson@gnu.org>
14878
14879         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
14880         `headers' is nil.  This can occur if the IMAP server does not have
14881         permissions to read messages from a folder, but can write new messages
14882         to the folder.
14883         (nnimap-request-article-part): Do not insert `data' if it is nil.
14884
14885         * imap.el (imap-parse-fetch): Courier can insert spurious blank
14886         characters which will confuse `read', so skip past them.
14887
14888 2009-01-01  Dave Love  <fx@gnu.org>
14889
14890         * imap.el (imap-string-to-integer): Fix typo.
14891         (imap-fetch-safe): New function.
14892         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
14893
14894         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
14895
14896         * imap.el (imap-process-connection-type, imap-debug, imap-open):
14897         (imap-parse-greeting): Fix doc strings.
14898         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
14899         (imap-parse-flag-list): Make messages unique.
14900         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
14901
14902         * nnimap.el: Fix author email.
14903         (nnimap-split-rule): Add FIXME comment.
14904         (nnimap-debug): Fix doc string.
14905
14906 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
14907
14908         * dns.el (dns-set-servers): Check "Address".  Fix typo.
14909
14910 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
14911
14912         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
14913         nslookup if resolv.conf isn't available.
14914         (dns-query): Rename from query-dns.
14915         (dns-query-cached): Rename from query-dns-cached.
14916
14917 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14918
14919         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
14920         overlay-arrow-position and overlay-arrow-string buffer-local; no need
14921         to check if those variables exist (first appeared in Emacs 18.50).
14922
14923 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14924
14925         * mm-util.el (mm-line-number-at-pos): New function.
14926
14927         * spam-report.el (spam-report-process-queue): Use it.
14928
14929 2008-12-24  David Engster  <dengste@eml.cc>
14930
14931         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
14932         parameters that haven't existed as variables as buffer-local variables.
14933
14934 2008-12-23  Dave Love  <fx@gnu.org>
14935
14936         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
14937         cadar.
14938
14939         * sieve-manage.el (sieve-manage-starttls-p): Rename from
14940         imap-starttls-p.
14941         (sieve-manage-starttls-open): Rename from imap-starttls-open.
14942
14943 2008-12-22  Dave Love  <fx@gnu.org>
14944
14945         * imap.el: Fix author email.  Doc fixes.
14946         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
14947         reply.
14948
14949 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
14950
14951         * spam-report.el (spam-report-gmane-max-requests): New constant.
14952         (spam-report-gmane-wait): New variable.
14953         (spam-report-gmane-ham, spam-report-gmane-spam)
14954         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
14955         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
14956         the server.
14957
14958         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
14959         Add explanations.
14960
14961         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
14962         nnheader-accept-process-output and nnheader-read-timeout if available.
14963         (pop3-movemail): Use it.
14964
14965         * message.el (message-check-news-body-syntax): Fix signature check if
14966         there's an attachment.
14967
14968 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14969
14970         * mm-util.el: Add comments to the mm- emulating functions.
14971
14972 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
14973
14974         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
14975         Reported by Stephen Berman <stephen.berman@gmx.net>.
14976
14977 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14978
14979         * mm-util.el (mm-substring-no-properties): New function.
14980         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
14981         (mm-special-display-p): Enable those lambda forms to be byte compiled.
14982         (mm-string-to-multibyte): Doc fix.
14983
14984         * mml.el (mml-attach-file): Use mm-substring-no-properties.
14985
14986 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14987
14988         * mml.el (mml-attach-file): Strip text properties from file name.
14989         (Bug#1574)
14990
14991 2008-12-16  Glenn Morris  <rgm@gnu.org>
14992
14993         * mm-util.el (mm-charset-override-alist): Declare for compiler.
14994
14995 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14996
14997         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
14998         knows since the charset specified might be a bogus alias that
14999         mm-charset-synonym-alist provides.
15000
15001 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
15002
15003         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
15004         "ISO_8859-1".
15005
15006         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
15007
15008 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15009
15010         * mm-util.el (mm-charset-eval-alist):
15011         Define it before mm-charset-to-coding-system.
15012         (mm-charset-to-coding-system): Add optional argument `silent';
15013         define it before mm-charset-override-alist.
15014         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
15015         default value if it can be used in Emacs currently running;
15016         silence mm-charset-to-coding-system.
15017
15018 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15019
15020         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
15021         `allow-override' which says whether to use `mm-charset-override-alist'.
15022         (rfc2047-decode-encoded-words): Use it.
15023
15024         * mm-util.el (mm-charset-override-alist): Fix custom type;
15025         add `(gb2312 . gbk)' to choices.
15026
15027 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15028
15029         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
15030         fast.
15031
15032         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
15033
15034         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
15035
15036 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
15037
15038         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
15039         on links.
15040
15041         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
15042
15043 2008-12-03  Lute Kamstra  <lute@gnu.org>
15044
15045         * sha1.el: Remove leading * from docstrings of defcustoms,
15046         deffaces, defconsts and defuns.
15047
15048 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15049
15050         * message.el (message-idna-to-ascii-rhs-1): Protect against local
15051         users' addresses that don't have domain parts.
15052         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
15053         rather than message-narrow-to-head since there will be the message
15054         header separator.
15055
15056 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15057
15058         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
15059         since the result is inserted in a unibyte buffer anyway.
15060         (nnimap-demule-use-string-to-multibyte): Remove.
15061         (nnimap-demule): Alias it to mm-string-to-multibyte.
15062
15063 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
15064
15065         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
15066         variable for debugging bug#464 and bug#1174.
15067         (nnimap-demule): Use it.
15068
15069 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
15070
15071         * gnus-score.el (gnus-score-find-trace): Handle default score in total
15072         score calculation correctly.
15073
15074 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15075
15076         * message.el (message-send-mail): Just set the buffer to unibyte
15077         rather than use mm-with-unibyte-current-buffer which does a lot more.
15078         (message-send-mail-partially): Don't bother with
15079         mm-with-unibyte-current-buffer since it's already been made unibyte by
15080         message-send-mail.
15081
15082 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
15083
15084         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
15085
15086 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
15087
15088         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
15089
15090 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15091
15092         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
15093         require itself and to remove `with-no-warnings'.
15094
15095 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
15096
15097         * starttls.el (starttls-any-program-available): Get the name of the
15098         available TLS layer program.
15099         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
15100         well as the host name in the "opening" message.
15101
15102         * auth-source.el (auth-source-cache, auth-source-do-cache)
15103         (auth-source-user-or-password): Cache passwords and logins by default,
15104         allow override with `auth-source-do-cache'.
15105         (auth-source-forget-user-or-password): Allow users to remove cache
15106         entries if needed.
15107
15108 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
15109
15110         * md4.el (md4-buffer): Fix typo in docstring.
15111         (md4, md4-64): Doc fixes.
15112         (md4-pack-int32): Reflow docstring.
15113
15114 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
15115
15116         * ietf-drums.el (ietf-drums-remove-comments): Localize second
15117         condition-case to only the forward-sexp call.
15118
15119 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
15120
15121         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
15122         quotes contained.  Make it more robust regardless by an extra
15123         condition-case wrapper.
15124
15125 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15126
15127         * lpath.el: No need to fbind codepage-setup for Emacs 23.
15128
15129 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15130
15131         * nnml.el (nnml-request-expire-articles): Check if the function set to
15132         `nnmail-expiry-target' returns the symbol `delete'.
15133
15134         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
15135
15136         * nnmail.el (nnmail-expiry-target): Fix custom type.
15137
15138 2008-10-02  Glenn Morris  <rgm@gnu.org>
15139
15140         * mm-util.el (mm-codepage-setup): Tweak codepage error.
15141         Silence compiler warning.
15142
15143 2008-10-01  Magnus Henoch  <mange@freemail.hu>
15144
15145         * tls.el (open-tls-stream): Show the actual command being
15146         executed, instead of the format string.
15147
15148 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15149
15150         * lpath.el: Fbind codepage-setup for Emacs 23.
15151
15152 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
15153
15154         * mml.el (mml-menu): Don't assume mml2015 is bound.
15155
15156 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15157
15158         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
15159         exists.
15160
15161 2008-09-27  Glenn Morris  <rgm@gnu.org>
15162
15163         * gnus-util.el (mail-header-remove-comments): Autoload it.
15164
15165 2008-09-27  Andreas Schwab  <schwab@suse.de>
15166
15167         * gnus-util.el (gnus-split-references): Strip comments.
15168         (gnus-parent-id): Likewise.
15169
15170 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
15171
15172         * message.el (message-confirm-send): Fix version.
15173
15174 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15175
15176         * message.el (message-idna-to-ascii-rhs-1): Use
15177         mail-extract-address-components rather than mail-header-parse-addresses
15178         that is an alias by default to ietf-drums-parse-addresses that does not
15179         support non-ASCII names in headers' contents.
15180
15181 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
15182
15183         * message.el (message-confirm-send): Fix variable documentation to
15184         avoid the "y/n" wording.
15185
15186 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
15187
15188         * message.el (message-set-auto-save-file-name): Save to a different
15189         filename so multiple messages (especially drafts) can be recovered.
15190
15191 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
15192
15193         * message.el (message-confirm-send): Add appropriate version.
15194
15195 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
15196
15197         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
15198         defvar.
15199
15200 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
15201
15202         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
15203         (mm-pkcs7-enveloped-magic): Ditto.
15204
15205 2008-09-17  Simon Josefsson  <simon@josefsson.org>
15206
15207         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
15208         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
15209
15210 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
15211
15212         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
15213         default, it's better.
15214
15215 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
15216
15217         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
15218         summary line gnus-number property and ignore them (with a warning
15219         message).
15220
15221 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15222
15223         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
15224         macro caddr in the interactive form since it won't be expanded.
15225
15226 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15227
15228         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
15229         `charset'; fix name of function called recursively.
15230         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
15231
15232 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15233
15234         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
15235         (gnus-mime-set-charset-parameters): New function.
15236         (gnus-mime-view-part-as-charset): Use it to correctly display part
15237         specifying wrong charset.
15238
15239 2008-09-08  David Engster  <dengste@eml.cc>
15240
15241         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
15242         in completing-read for back end server.
15243
15244 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
15245
15246         * message.el (message-confirm-send): New variable to confirm sending a
15247         message.
15248         (message-send): Use it.
15249
15250 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
15251
15252         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
15253
15254 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15255
15256         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
15257
15258 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
15259
15260         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
15261         prevent tracking too many groups.
15262         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
15263         Use it.
15264
15265 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
15266
15267         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
15268         moving point to the bottom of the window in order to avoid recentering.
15269
15270 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15271
15272         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
15273
15274         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
15275         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
15276         (gnus-article-beginning-of-window): Fix calculation.
15277
15278 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15279
15280         * gnus-msg.el (gnus-summary-supersede-article)
15281         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
15282         value of gnus-newsgroup-charset to decode non-MIME encoded text in
15283         message header.
15284
15285 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
15286
15287         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
15288         pending output coming after the status change.
15289
15290 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
15291
15292         * message.el:
15293         * gnus-start.el:
15294         * gnus-registry.el: Remove VMS support.
15295
15296 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15297
15298         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
15299         macro.
15300         (rfc2104-hash): Use it.
15301
15302 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
15303
15304         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
15305         (gnus-summary-sort-by-most-recent-date): New commands.
15306         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
15307         and menu entries.
15308
15309 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15310
15311         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
15312         don't redisplay article for raw contents; remove plural articles stuff.
15313
15314         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
15315         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
15316         on gnus-summary-save-article; display results properly.
15317
15318 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15319
15320         * lpath.el: No need to fbind ns-focus-frame.
15321
15322 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15323
15324         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
15325
15326 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15327
15328         * gnus-art.el (gnus-summary-save-in-pipe):
15329         Consider gnus-save-all-headers.
15330
15331 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
15332
15333         * gnus-util.el (ns-focus-frame): Remove declaration.
15334         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
15335         like x.
15336
15337 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
15338
15339         * rfc2104.el (rfc2104-zero): Delete defconst.
15340         (rfc2104-hex-alist): Likewise.
15341         (rfc2104-hex-to-int): Delete func.
15342         (rfc2104-hexstring-to-bitstring): Likewise.
15343         (rfc2104-nybbles): New defconst.
15344         (rfc2104-hash): Rewrite for speed.
15345
15346 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15347
15348         * tls.el (open-tls-stream): Make it work with the 2nd argument
15349         BUFFER that is a string but does not exist as a buffer object, as
15350         mentioned in the doc-string.
15351
15352 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15353
15354         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
15355         SXEmacs.
15356
15357 2008-07-16  Glenn Morris  <rgm@gnu.org>
15358
15359         * gnus-util.el (ns-focus-frame): Declare for compiler.
15360
15361 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15362
15363         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
15364         set as a group parameter.
15365         (gnus-summary-save-in-pipe): Work when it is called independently.
15366         (gnus-summary-pipe-to-muttprint): Don't modify
15367         gnus-summary-pipe-output-default-command.
15368
15369 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15370
15371         * message.el (message-send-mail-with-sendmail):
15372         Display the error message.
15373
15374 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15375
15376         * gnus-art.el (gnus-default-article-saver):
15377         Add gnus-summary-save-in-pipe to choices.
15378         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
15379         gnus-summary-pipe-output-default-command as the default command.
15380         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
15381         instead of gnus-last-shell-command.
15382
15383         * gnus-sum.el (gnus-summary-pipe-output-default-command):
15384         New user option.
15385         (gnus-summary-muttprint-program): Mention the value will be changed.
15386         (gnus-summary-save-article): Force showing of all headers.
15387         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
15388
15389 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
15390
15391         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
15392
15393 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
15394
15395         * nnimap.el (nnimap-id):
15396         * sieve-manage.el (sieve-manage-open): Doc fixes.
15397
15398 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
15399
15400         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
15401         if available.
15402
15403 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15404
15405         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
15406
15407         * nnkiboze.el (nnkiboze-generate-group):
15408         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
15409
15410         * nnmairix.el: Require CL.
15411
15412 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15413
15414         * dgnushack.el: Autoload get-display-table and put-display-table for
15415         XEmacs 21.5.
15416
15417         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
15418         21.4 and SXEmacs.
15419
15420 2008-06-15  David Engster  <dengste@eml.cc>
15421
15422         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
15423
15424 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
15425
15426         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
15427         New macros that expand to an `aset'/`aref' call under Emacs, and to a
15428         runtime choice under XEmacs.
15429
15430         * gnus-sum.el (gnus-summary-set-display-table):
15431         Use `gnus-put-display-table', `gnus-get-display-table',
15432         `gnus-set-display-table' for the display table, instead of `aset'.
15433
15434         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
15435         Use `gnus-put-display-table', `gnus-get-display-table',
15436         `gnus-set-display-table' for the display table.
15437
15438 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
15439
15440         * nnmairix.el: Add autoloads.
15441
15442 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
15443
15444         * nnmairix.el (nnmairix-delete-recreate-group)
15445         (nnmairix-update-and-clear-marks): Fix error messages.
15446
15447 2008-06-14  David Engster  <dengste@eml.cc>
15448
15449         * nnmairix.el: Upgrade to version 0.6.
15450         (nnmairix-group-toggle-propmarks-this-group)
15451         (nnmairix-group-toggle-readmarks-this-group)
15452         (nnmairix-group-delete-recreate-this-group)
15453         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
15454         (nnmairix-remove-tick-mark-original-article): New commands.
15455         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
15456         (nnmairix-propagate-marks-to-nnmairix-groups)
15457         (nnmairix-only-use-registry, nnmairix-allowfast-default)
15458         (nnmairix-marks-cache, nnmairix-version-output): New variables.
15459         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
15460         functions needed for marks propagation and manipulation of read marks.
15461         (nnmairix-update-groups): New function.
15462         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
15463         (nnmairix-determine-original-group-from-registry)
15464         (nnmairix-determine-original-group-from-path)
15465         (nnmairix-get-group-from-file-path, nnmairix-map-range)
15466         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
15467         New helper functions.
15468         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
15469         keystrokes for new commands.
15470         (nnmairix-delete-and-create-on-change): Doc string cleanup.
15471         (nnmairix-request-group): Check allow-fast group parameter.
15472         (nnmairix-request-create-group): Set allow-fast group parameter if
15473         nnmairix-allowfast-default is set.
15474         (nnmairix-close-group): Propagate marks upon closing if needed.
15475         (nnmairix-group-toggle-threads-this-group): Use new.
15476         nnmairix-group-toggle-parameter helper function.
15477         (nnmairix-search): Better check for empty search result.
15478         (nnmairix-goto-original-article): Use new helper functions for
15479         determining original article.
15480         (nnmairix-show-original-article): Make sure message-id is in brackets.
15481         (nnmairix-call-mairix-binary): Change variable name.
15482         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
15483         helper function.
15484         (nnmairix-widget-toggle-activate): Fix doc string.
15485
15486 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15487
15488         * nnir.el: Require edmacro when compiling with XEmacs.
15489         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
15490         available in Emacs 21.
15491
15492 2008-06-11  Glenn Morris  <rgm@gnu.org>
15493
15494         * gnus-util.el (x-focus-frame):
15495         * gnus.el (image-size):
15496         * mm-decode.el (image-size): Declare.
15497
15498         * gnus-picon.el (declare-function): Add compat definition.
15499         (image-size): Declare.
15500
15501         * gnus-group.el (tool-bar-map):
15502         * gnus-sum.el (tool-bar-map): Define for compiler.
15503
15504         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
15505
15506         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
15507
15508         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
15509         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
15510         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
15511         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
15512         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
15513         * sieve-manage.el, spam-report.el, spam.el:
15514         Remove unnecessary eval-and-compile of autoloads.
15515
15516 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
15517
15518         * auth-source.el: Precise Tramp doc.
15519
15520 2008-06-07  Glenn Morris  <rgm@gnu.org>
15521
15522         * nnmairix.el: Remove unnecessary eval-when-compile.
15523
15524 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15525
15526         * lpath.el: Fbind propertize for XEmacs 21.4.
15527
15528 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
15529
15530         * nnir.el: Move here from ../contrib.
15531
15532 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15533
15534         * gnus-util.el (gnus-read-shell-command): New function.
15535         * mm-decode.el (mm-pipe-part):
15536         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
15537
15538 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15539
15540         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
15541
15542 2008-06-03  Glenn Morris  <rgm@gnu.org>
15543
15544         * pop3.el (nnheader-accept-process-output): Autoload it.
15545
15546 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15547
15548         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
15549         are not 2-digit hexadecimal characters that follow `%'s.
15550
15551 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
15552
15553         * message.el (message-bogus-recipient-p): Fix type in doc string.
15554         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
15555         (message-bogus-addresses): Rename from message-bogus-address-regexp.
15556         Improve custom options.
15557         (message-bogus-recipient-p): Adjust accordingly.
15558
15559 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
15560
15561         * parse-time.el (parse-time-months, parse-time-weekdays): Add
15562         long-form month and day names.
15563
15564 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15565
15566         * dgnushack.el: Autoload debug, eudc-expand-inline and
15567         pgg-snarf-keys-region for XEmacs.
15568
15569         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
15570
15571         * nnmairix.el: Require edmacro when compiling with XEmacs.
15572
15573 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
15574
15575         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
15576         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
15577
15578 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
15579
15580         * auth-source.el: Add more docs.
15581
15582         * netrc.el (netrc-machine): Always match if the port is not given.
15583
15584 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15585
15586         * nnheader.el (nnheader-read-timeout): Change the default timeout from
15587         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
15588         retrieval faster in some cases, but might make CPU usage larger.
15589         If this has any bad side effects, we might revert this change.
15590
15591         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
15592         seems to make mail retrieval much, much faster.
15593         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
15594         unconditionally.
15595
15596         * gnus-draft.el (gnus-group-send-queue):
15597         Bind message-send-mail-partially-limit to nil to avoid being prompted.
15598
15599 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
15600
15601         * mml.el (mml-attach-buffer): Prompt for `disposition'.
15602
15603         * message.el (message-bogus-address-regexp): Fix and improve custom
15604         type.
15605         (message-setup-hook): Add message-check-recipients as custom option.
15606
15607 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
15608
15609         * message.el (message-cite-function): Remove bogus autoload which crept
15610         in during merge from v5-10.
15611
15612 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
15613
15614         * nnimap.el (nnimap-open-connection): Fix login/password bug.
15615
15616         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
15617
15618         * auth-source.el: Preliminary Tramp docs.
15619         (auth-sources): Change the default auth-sources to use
15620         EPA .gpg files.
15621
15622 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
15623
15624         * nntp.el: Autoload `auth-source-user-or-password'.
15625         (nntp-send-authinfo): Use it.
15626
15627         * nnimap.el: Autoload `auth-source-user-or-password'.
15628         (nnimap-open-connection): Use it.
15629
15630         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
15631         for the gnus-message function.
15632         (auth-source-user-or-password): Use it.
15633
15634 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15635
15636         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
15637         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
15638         (rfc2104-hash): Use it.
15639
15640 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
15641
15642         * gnus-art.el (gnus-article-toggle-truncate-lines):
15643         Don't use `iff' in docstring.
15644
15645 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
15646
15647         * gnus-registry.el: Adjusted copyright dates and added a keyword.
15648
15649         * gnus-util.el (gnus-extract-address-component-name)
15650         (gnus-extract-address-component-email): Convenience functions around
15651         `gnus-extract-address-components'.
15652
15653         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15654         Use `gnus-extract-address-component-email' to fix bug of comparing full
15655         sender name to `user-mail-address'.
15656
15657 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
15658
15659         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
15660         catch/throw to optimize.
15661         (gnus-registry-find-keywords): Just use member to find a keyword.
15662
15663 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15664
15665         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
15666         is current before calling gnus-server-prepare.
15667         (gnus-server-setup-buffer, gnus-server-update-server)
15668         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
15669
15670 2008-05-04  Juri Linkov  <juri@jurta.org>
15671
15672         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
15673         (mailcap-file-default-commands): Use mailcap-replace-in-string
15674         instead of replace-regexp-in-string, and mailcap-delete-duplicates
15675         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
15676
15677 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
15678
15679         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
15680
15681 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15682
15683         * gnus.el: Bump version to 0.11.
15684
15685 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15686
15687         * gnus.el: No Gnus v0.10 is released.
15688
15689 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15690
15691         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
15692         hooks.
15693         (gnus-update-read-articles): Speed up non-marks-using users.
15694         (gnus-use-marks): Define gnus-use-marks.
15695         (gnus-propagate-marks): Rename variable to something more sensible.
15696
15697 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
15698
15699         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
15700         (gmm-image-load-path-for-library): Fix typos in docstrings.
15701         (gmm-message): Reflow docstring.
15702
15703 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
15704
15705         * mail-source.el (mail-source-set-1, mail-source-bind):
15706         Move auth-source code out of the macro to clean it up and fix bugs.
15707
15708 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
15709
15710         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
15711         by sender if it's equal to user-mail-address, it's likely to be
15712         useless.
15713
15714         * mail-source.el (mail-source-bind): Don't use user or password if they
15715         are not bound.  Unintern them if they are nil.  Don't use server unless
15716         it's bound, and default it to empty string otherwise.
15717
15718 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
15719
15720         * mail-source.el: Load auth-source.el.
15721         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
15722         get user name or password, if auth-sources is set up.
15723
15724         * gnus-registry.el (gnus-registry-split-strategy): New variable for
15725         strategy of splitting with parent.
15726         (gnus-registry-split-fancy-with-parent)
15727         (gnus-registry-post-process-groups): Use it and fix prior
15728         bug (returning a list as the split result).
15729
15730         * auth-source.el (auth-sources): Remove server parameter.
15731         (auth-source-pick, auth-source-user-or-password)
15732         (auth-source-user-or-password-imap)
15733         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
15734         (auth-source-user-or-password-sftp)
15735         (auth-source-user-or-password-smtp): Remove server parameter.
15736
15737 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
15738
15739         * smime.el (smime-sign-region, smime-encrypt-region)
15740         (smime-decrypt-region):
15741         Remove redundant calls to `generate-new-buffer-name'.
15742
15743 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
15744
15745         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
15746         Don't use QP for message/rfc822.
15747         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
15748
15749 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15750
15751         * sieve-manage.el (sieve-string-bytes): Remove.
15752         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
15753         correct byte-length only if the process's coding-system is the same as
15754         the one used internally by Emacs to represent strings.
15755
15756 2008-04-22  Juri Linkov  <juri@jurta.org>
15757
15758         * mailcap.el (mailcap-file-default-commands): New function.
15759
15760 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
15761
15762         * message.el (message-signature-separator, message-cite-function):
15763         Change custom version.
15764
15765 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
15766
15767         * tls.el (tls-program): Add -ign_eof argument to call the openssl
15768         commands.
15769         (tls-checktrust): Ditto.
15770
15771 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
15772
15773         * mm-decode.el (mm-display-external): Make temp file read-only.
15774
15775 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
15776
15777         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
15778         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
15779         `C-c C-f d'.
15780
15781 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
15782
15783         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
15784
15785 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
15786
15787         * gnus.el: Bump version to 0.9.
15788
15789 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
15790
15791         * gnus.el: No Gnus v0.8 is released.
15792
15793 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15794
15795         * mail-source.el (mail-source-value):
15796         Prefer fboundp to functionp so it works with macros as well.
15797
15798 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15799
15800         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15801         Fix last change in case the element is not even a symbol.
15802
15803 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15804
15805         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15806         Prefer fboundp to functionp so it works with macros as well.
15807
15808 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
15809
15810         * auth-source.el: Add docs.
15811         (auth-sources): Modify format to support server.
15812         (auth-source-pick, auth-source-user-or-password)
15813         (auth-source-user-or-password-imap)
15814         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
15815         (auth-source-user-or-password-sftp)
15816         (auth-source-user-or-password-smtp): Add server parameter.
15817
15818 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
15819
15820         * gnus-registry.el: Initialize the registry when gnus-registry-install
15821         is t.
15822
15823 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15824
15825         * compface.el (uncompface): Make buffer unibyte.
15826
15827 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15828
15829         * mail-source.el (mail-source-value):
15830         Prefer fboundp to functionp so it works with macros as well.
15831
15832 2008-04-05  Glenn Morris  <rgm@gnu.org>
15833
15834         * gnus-ems.el (mm-disable-multibyte): Autoload it.
15835
15836 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15837
15838         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
15839         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
15840
15841         * nnheader.el (nnheader-init-server-buffer): Change buffer's
15842         multibyteness after rather than before erasing it.
15843
15844         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
15845         mm-with-multibyte.
15846         (gnus-request-article-this-buffer): Make sure the proper decoding is
15847         used if gnus-original-article-buffer happens to be unibyte.
15848
15849         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
15850         default-enable-multibyte-characters.
15851
15852         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
15853         default-enable-multibyte-characters.
15854
15855         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
15856
15857         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
15858
15859 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15860
15861         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15862         Fix last change in case the element is not even a symbol.
15863
15864 2008-04-02  Simon Josefsson  <simon@josefsson.org>
15865
15866         * imap.el (imap-enable-exchange-bug-workaround): New variable.
15867         (imap-message-copyuid-1): Use it.
15868         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
15869         J. Williams in
15870         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
15871
15872         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
15873         imap-enable-exchange-bug-workaround.
15874         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
15875
15876 2008-04-01  Simon Josefsson  <simon@josefsson.org>
15877
15878         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
15879         a 100 byte status-checks into a 2-3MB transfer for each group.
15880         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
15881         to enable bug workaround or not.
15882         (nnimap-find-minmax-uid): Only enable workaround conditionally.
15883
15884 2008-03-31  Glenn Morris  <rgm@gnu.org>
15885
15886         * message.el (mml2015-use): Declare for compiler.
15887         (message-info): Require mml2015 when appropriate.
15888
15889 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
15890
15891         * Makefile.in (EMACS_COMP): Quote directory name that might contain
15892         whitespace.
15893
15894 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15895
15896         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
15897         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
15898         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
15899         (nntp-service-to-port): New function.
15900         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
15901         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
15902         (nntp-open-netcat-stream): New function.
15903         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
15904
15905 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
15906
15907         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
15908
15909 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
15910
15911         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
15912
15913 2008-03-28  Magnus Henoch  <mange@freemail.hu>
15914
15915         * dns.el (dns-write): Use set-buffer-multibyte.
15916
15917 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
15918
15919         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
15920
15921 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
15922
15923         * message.el (message-signature-separator): Change default.
15924         Improve custom type.
15925         (message-cite-function): Change default to
15926         message-cite-original-without-signature.
15927
15928         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
15929         toggle.
15930
15931         * message.el (message-check-news-body-syntax): Fix signature check.
15932         (message-setup-1): Mark buffer as unmodified _after_ running
15933         message-setup-hook and handling message-alternative-emails.
15934         (message-shorten-references): Be more strict when building list of
15935         valid references to comply with GNKSA.
15936
15937         * gnus-group.el (gnus-read-ephemeral-bug-group)
15938         (gnus-read-ephemeral-debian-bug-group)
15939         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
15940
15941         * message.el (message-info): Don't use booleanp which isn't supported
15942         in Emacs 21 and XEmacs.
15943
15944 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
15945
15946         * gnus-group.el (gnus-gmane-group-download-format): Rename from
15947         gnus-group-gmane-group-download-format.
15948         (gnus-group-read-ephemeral-gmane-group): Rename from
15949         gnus-group-read-ephemeral-gmane-group.
15950         (gnus-read-ephemeral-gmane-group-url): Rename from
15951         gnus-group-read-ephemeral-gmane-group-url.
15952         (gnus-bug-group-download-format-alist): New variable.
15953         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
15954         (gnus-read-ephemeral-emacs-bug-group): New commands.
15955
15956 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
15957
15958         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
15959         (gnus-visible-headers): Improve custom type.
15960
15961 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
15962
15963         * mml.el (mml-menu): Add workarounds for XEmacs.
15964
15965         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
15966         X-Boundary header.
15967
15968         * message.el (message-simplify-recipients): Fix previous commit.
15969
15970 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15971
15972         * mm-util.el (mm-set-buffer-multibyte): New function.
15973         * mm-decode.el (mm-copy-to-buffer): Use it.
15974
15975         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15976         Prefer fboundp to functionp so it works with macros as well.
15977
15978 2008-03-19  Glenn Morris  <rgm@gnu.org>
15979
15980         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
15981         Accidentally removed in the sync process with Emacs.
15982
15983 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
15984
15985         * message.el (message-alter-recipients-discard-bogus-full-name):
15986         New function.
15987         (message-alter-recipients-function): New variable.
15988         (message-get-reply-headers): Use it.
15989         (message-replace-header): New helper function.
15990         (message-recipients-without-full-name): New variable.
15991         (message-simplify-recipients): New command.
15992
15993         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
15994
15995         * message.el (message-info): Handle EasyPG manual.
15996
15997         * mml.el (mml-menu): Add entry for EasyPG.
15998
15999 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
16000
16001         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
16002         parameter.
16003
16004         * message.el (message-disassociate-draft): Specify drafts group name
16005         fully.
16006
16007 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
16008
16009         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16010         Eliminate unnecessary duplicates from the match list.
16011
16012 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16013
16014         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
16015
16016         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
16017
16018         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
16019         args of `how-many' of which the XEmacs version doesn't take; declare
16020         Info-index-next as function.
16021
16022 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
16023
16024         * gnus-score.el (gnus-score-headers): Fix handling of
16025         gnus-inhibit-slow-scoring.
16026
16027         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
16028         string.
16029         (gnus-button-url-regexp): Improve handling of parenthesis.
16030         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
16031         (gnus-button-handle-info-keystrokes): Handle index entries.
16032
16033 2008-03-15  Glenn Morris  <rgm@gnu.org>
16034
16035         * parse-time.el (parse-time-string): Simplify.
16036
16037 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16038
16039         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
16040         Incoming* files.
16041
16042 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
16043
16044         * auth-source.el (auth-sources): Rename from auth-source-choices.
16045         (auth-source-pick): Use it.
16046
16047 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16048
16049         * binhex.el (binhex-decode-region-internal):
16050         * uudecode.el (uudecode-decode-region-internal):
16051         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
16052         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
16053         setting default-enable-multibyte-characters.
16054
16055 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
16056
16057         * auth-source.el (auth-source-protocols)
16058         (auth-source-protocols-customize, auth-source-choices): Add and
16059         modified variable customizations and defaults.
16060         (auth-source-pick, auth-source-user-or-password)
16061         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
16062         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
16063         (auth-source-user-or-password-sftp)
16064         (auth-source-user-or-password-smtp): Use new variables and provide an
16065         interface to netrc.el.
16066
16067 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16068
16069         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
16070         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
16071         Make sure the nntp port to specify is a string.
16072
16073 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16074
16075         * nntp.el: Use with-current-buffer.
16076         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
16077         dubious mm-with-unibyte-current-buffer.
16078         (nntp-with-open-group-function): New function extracted from
16079         nntp-with-open-group macro.
16080         (nntp-with-open-group): Use the function, so it's easier to debug.
16081         Add indentation and debugging info.
16082         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
16083         Recommend the use of the netcat alternatives.
16084
16085         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
16086         Avoid mm-string-as-multibyte as well.
16087
16088         * nnweb.el (nnweb-insert-html):
16089         Remove use of nnheader-string-as-multibyte.
16090
16091         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
16092         (nnheader-string-as-multibyte): Remove.
16093
16094         * mm-view.el: Use inhibit-read-only.
16095         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
16096         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
16097         or unibyte-string.
16098
16099         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
16100         (mm-uu-yenc-extract): Use with-current-buffer.
16101
16102         * gnus-soup.el (gnus-soup-send-packet): Don't use
16103         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
16104
16105         * nnmh.el: Use with-current-buffer.
16106         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
16107         mm-string-as-multibyte on the output of mm-encode-coding-string.
16108
16109         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
16110         (nnimap-request-move-article): Use with-current-buffer.
16111
16112         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
16113         inserting the handle-buffer's text, so the implicit multibyte->unibyte
16114         conversion uses string-make-unibyte rather than string-as-unibyte.
16115
16116         * gnus-msg.el: Use with-current-buffer.
16117
16118         * message.el (message-ignored-resent-headers): Add "Delivered-To".
16119
16120 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
16121
16122         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
16123         string for caching if it is 'PIN.
16124
16125 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16126
16127         * lpath.el: Consider the case without Emacs/W3.
16128
16129 2008-03-08  Glenn Morris  <rgm@gnu.org>
16130
16131         * time-date.el (date-to-time, time-subtract, time-add)
16132         (safe-date-to-time): Doc fixes.
16133
16134 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
16135
16136         * mail-source.el (mail-source-delete-old-incoming-confirm):
16137         Change default to nil.
16138         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
16139
16140 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16141
16142         * lpath.el: Rearrange.
16143
16144         * gnus-art.el (gnus-narrow-to-page): Position point properly.
16145         (gnus-article-goto-prev-page): Work for articles having ^L's.
16146
16147         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
16148
16149         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
16150
16151 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
16152
16153         * gnus-bookmark.el: Adjust for renames in bookmark.el.
16154         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
16155         (gnus-bookmark-jump): Adjust some variable names.
16156
16157 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
16158
16159         * auth-source.el: New package.
16160         (auth-source-choices): Add customization entry point variable.
16161
16162         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
16163         bug.
16164
16165 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
16166
16167         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
16168         (gnus-registry-initialize, gnus-registry-install-p): Use it.
16169         (gnus-registry-install-shortcuts): Rename from
16170         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
16171         the `gnus-registry-mark-map' keymap dynamically from
16172         `gnus-registry-marks'.  The generated functions update the summary line
16173         when a registry mark is added or deleted, and will call
16174         `gnus-registry-install-p' (see the comments in the code).
16175         (gnus-registry-user-format-function-M): Use concat intelligently.
16176
16177         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
16178         the registry mark functions.
16179
16180 2008-03-05  Glenn Morris  <rgm@gnu.org>
16181
16182         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
16183         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
16184         gnus-art.
16185         (top-level): No need to load own source when compiling.
16186
16187 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
16188
16189         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
16190         Suggested by <chris.anderton@zetnet.co.uk>.
16191
16192 2008-03-04  Glenn Morris  <rgm@gnu.org>
16193
16194         * gnus-sum.el (top-level): No need to require gnus when compiling,
16195         since unconditionally required near start of file.
16196         (gnus-summary-display-while-building): Move definition before use.
16197
16198 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
16199
16200         * gnus-registry.el (gnus-registry-user-format-function-M):
16201         Add formatting function.
16202
16203 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
16204
16205         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
16206         with plists.
16207         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
16208         Use new format.
16209
16210 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16211
16212         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
16213         `where-is-internal' that returns a range of key sequences.
16214
16215 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16216
16217         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
16218
16219         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
16220         (gnus-summary-jump-to-group): Consider windows on other displayed
16221         frames as well.  Similar changes might be needed elsewhere, but that's
16222         the one I've bumped into during my use.
16223
16224         * nndoc.el (nndoc-oe-dbx-type-p):
16225         * gnus-msg.el (gnus-debug):
16226         * gnus-group.el (gnus-update-group-mark-positions):
16227         Use mm-string-to-multibyte.
16228
16229 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
16230
16231         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
16232         doesn't handle NotDashEscaped.
16233
16234         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
16235         (mml-dnd-attach-options): Fix typo in custom choice.
16236
16237         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
16238         Change nndoc-article-type to mbox.
16239         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
16240
16241         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
16242         to nil, instead of html2text.
16243
16244         * imap.el (imap-debug): Add `imap-ping-server'.
16245
16246         * gnus-bookmark.el: Add FIXMEs.
16247
16248         * message.el (message-form-letter-separator)
16249         (message-send-form-letter-delay): New variables.
16250         (message-send-form-letter): Use them.  New command to send form
16251         letters.  Requested by Uwe Siart.
16252         (message-send-mail-function): Doc fix.  Add "Other" custom option.
16253
16254 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
16255
16256         * Update copyright years.
16257
16258 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
16259
16260         Sync from EMACS_22_BASE.
16261
16262         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
16263
16264 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
16265
16266         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
16267         empty author.
16268
16269 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
16270
16271         * gnus-registry.el (gnus-registry-marks): Add variable for
16272         customization of marks and their appearance.
16273         (gnus-registry-read-mark): Use it.
16274         (gnus-registry-do-marks): Add utility function to loop through
16275         `gnus-registry-marks'.
16276         (gnus-registry-install-shortcuts-and-menus): Add function to install
16277         shortcuts and menus.
16278         (gnus-registry-initialize): Use it.
16279         (gnus-registry-default-mark): Clarify documentation.
16280
16281 2008-02-29  Glenn Morris  <rgm@gnu.org>
16282
16283         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
16284         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
16285         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
16286         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
16287         Change defcustom :version from 23.0 to 23.1.
16288
16289 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
16290
16291         * gnus-registry.el (gnus-registry-follow-group-p)
16292         (gnus-registry-post-process-groups): Add functions to aid registry
16293         splitting and improve logging.  Clarify behavior in function
16294         documentation.
16295         (gnus-registry-split-fancy-with-parent): Use them.
16296
16297 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16298
16299         * gnus-art.el: Use with-current-buffer.
16300
16301 2008-02-27  David Engster  <dengste@eml.cc>
16302
16303         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
16304         Express real group name in the response.
16305
16306 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16307
16308         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
16309         (nnmairix-last-server, nnmairix-current-server): Defvar them.
16310         (nnmairix-goto-original-article): Defvar gnus-registry-install and
16311         autoload gnus-registry-fetch-group when compiling.
16312         (nnmairix-request-group-with-article-number-correction):
16313         Remove unreferenced argument passed to nnmairix-call-backend.
16314
16315 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
16316
16317         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
16318         (mm-uu-extract): Improve face for low color ttys.
16319         Reported by Sascha Wilde.
16320
16321 2008-02-27  Glenn Morris  <rgm@gnu.org>
16322
16323         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
16324         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
16325         variables to defconsts.  Convert comments to doc-strings.
16326         (nnmairix-last-server, nnmairix-current-server): Convert from free
16327         variables to defvars.  Convert comments to doc-strings.
16328         (gnus-registry-fetch-group): Autoload.
16329         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
16330         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
16331         (nnmairix-widget-build-editable-fields): Use car cddr rather than
16332         caddr.
16333         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
16334         nnmairix-request-group-with-article-number-correction call.
16335         (nnmairix-fast, nnmairix-group): New, less general names, for free
16336         variables passed from nnmairix-request-group to
16337         nnmairix-request-group-with-article-number-correction.  Declare.
16338         (nnmairix-request-group-with-article-number-correction):
16339         Use nnmairix-fast, nnmairix-group rather than fast, group.
16340
16341 2008-02-26  David Engster  <dengste@eml.cc>
16342
16343         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
16344         version 0.5.
16345
16346 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
16347
16348         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
16349         instead of making an extra function call.  Don't add the current group
16350         to articles only when they have the group.  Use
16351         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
16352         Reported by David <de_bb@arcor.de>.
16353
16354 2008-02-24  Miles Bader  <miles@gnu.org>
16355
16356         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
16357         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
16358         (mm-find-mime-charset-region):
16359         * mm-bodies.el (mm-encode-body):
16360         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
16361
16362 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16363
16364         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
16365         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
16366
16367 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
16368
16369         * mail-source.el (mail-source-delete-incoming): Change default.
16370         Supplement doc string.
16371
16372         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
16373
16374 2008-02-14  Glenn Morris  <rgm@gnu.org>
16375
16376         * time-date.el (format-seconds): New function.
16377
16378 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
16379
16380         * nnmail.el (nnmail-message-id-cache-file): Derive from
16381         `gnus-home-directory'.
16382
16383 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
16384
16385         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
16386         Document negative prefix.
16387
16388         * gnus-group.el (gnus-group-read-group): Document negative prefix.
16389
16390 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16391
16392         * message.el (message-unsent-separator): Add the Exim bounce
16393         separator.
16394
16395 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
16396
16397         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
16398         list.
16399         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
16400         recipient/signer list.
16401
16402 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16403
16404         * Makefile.in (datarootdir): Define.
16405         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
16406         name that might contain whitespace.
16407
16408 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
16409
16410         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
16411         fbound (Emacs 23 unicode), signal an error.
16412
16413 2008-02-08  Glenn Morris  <rgm@gnu.org>
16414
16415         * gnus-art.el (pgg-display-output-buffer): Declare as function.
16416
16417 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
16418
16419         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
16420         ports to the calls to `netrc-machine-user-or-password' in addition to
16421         "imap" and "imaps".
16422
16423 2008-02-01  Zhang Wei  <id.brep@gmail.com>
16424
16425         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
16426
16427         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
16428
16429 2008-02-01  Kenichi Handa  <handa@m17n.org>
16430
16431         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
16432         rfc2104-hexstring-to-bitstring and changed to return a byte list.
16433         (rfc2104-hash): Convert the result of concat to unibyte string.
16434
16435 2008-02-01  Dave Love  <fx@gnu.org>
16436
16437         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
16438         coding-system-for-read.
16439         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
16440
16441 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
16442
16443         * gnus.el (gnus-group-startup-message): Add `find-image' call before
16444         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
16445         <hanche@math.ntnu.no>.
16446
16447 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16448
16449         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
16450
16451         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
16452
16453 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
16454
16455         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
16456         * message.el (message-beginning-of-line): Use featurep instead of bound
16457         tests in order to resolve conditionals at compile time.
16458
16459 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
16460
16461         * mail-source.el (mail-sources): Add `group' choice.
16462
16463         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
16464         parameter `in-group' to control into which group the articles go.
16465         Add treatment of `group' mail-source.
16466
16467 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16468
16469         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
16470
16471         * mm-decode.el (mm-dissect-buffer): Decode description.
16472
16473         * mml.el (mml-to-mime): Encode message header first.
16474
16475 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16476
16477         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
16478         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
16479
16480         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
16481         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
16482
16483 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
16484
16485         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
16486
16487 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16488
16489         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
16490         prefix keys.
16491         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
16492         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
16493         gnus-xmas.el.
16494
16495         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
16496         (gnus-xmas-article-describe-bindings): New function.
16497         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
16498         gnus-xmas-article-describe-bindings.
16499
16500         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
16501
16502 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
16503
16504         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
16505         Add new variables for article mark management.
16506         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
16507         list of extra data entries which, when present, will indicate that the
16508         article ID should not be trimmed from the registry.
16509         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
16510         functions.
16511         (gnus-registry-read-mark): New function to read a mark name from the
16512         user.
16513         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
16514         (gnus-registry-set-article-mark-internal): New functions to add and
16515         remove marks.
16516         (gnus-registry-get-article-marks): New function to show the marks for
16517         an article, or retrieve them for further use.
16518
16519 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16520
16521         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
16522         keys when no argument is given.
16523
16524 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
16525
16526         * imap.el (imap-ping-server): New variable.
16527         (imap-opened): On add extra ping if imap-ping-server is non-nil.
16528         (imap-ping-server): Minor doc string fixes.
16529
16530 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
16531
16532         * imap.el (imap-ping-server): New function.
16533         (imap-opened): Call imap-ping-server.
16534
16535 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
16536
16537         * gnus-sum.el (gnus-article-sort-by-random)
16538         (gnus-thread-sort-by-random): Fix doc strings.
16539         Reported by jidanni@jidanni.org.
16540
16541 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16542
16543         * gnus-art.el (gnus-article-describe-bindings): New function.
16544         (gnus-article-read-summary-keys): Use it.
16545         (gnus-article-mode-map): Bind `C-h b' to it.
16546
16547 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16548
16549         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
16550         XEmacs.
16551         (gnus-article-describe-key, gnus-article-describe-key-briefly):
16552         Protect against non-character events.
16553
16554         * lpath.el: Fbind map-keymap for Emacs 21.
16555
16556 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
16557
16558         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
16559         New command.
16560         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
16561         instead of END.  Change name of the temp file.
16562         (gnus-group-gmane-group-download-format): Add doc string.  Make it
16563         customizable.
16564
16565 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16566
16567         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
16568         bind `S W' to gnus-article-wide-reply-with-original; set default
16569         binding to gnus-article-read-summary-send-keys.
16570         (gnus-article-read-summary-keys): Fix the order of keys; display
16571         continuation keys correctly in the echo area; describe bindings
16572         correctly when keys end with `C-h'.
16573         (gnus-article-read-summary-send-keys): New function.
16574         (gnus-article-describe-key, gnus-article-describe-key-briefly):
16575         Work for gnus-article-read-summary-send-keys; display continuation keys
16576         correctly in the echo area.
16577         (gnus-article-reply-with-original): Ignore prefix argument.
16578         (gnus-article-wide-reply-with-original): New function.
16579
16580         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
16581         Emacs 21.
16582
16583 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16584
16585         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
16586         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
16587
16588 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16589
16590         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
16591         (gnus-group-read-ephemeral-gmane-group): New command.
16592
16593 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
16594
16595         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
16596
16597 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
16598
16599         * message.el (message-send-mail-function): Increase custom version.
16600
16601         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
16602         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
16603
16604 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
16605
16606         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
16607         for the cases where imap-authenticate is called with a nil buffer
16608         parameter.
16609
16610 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16611
16612         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
16613         html parts correctly; support forwarded messages.
16614         (gnus-article-browse-html-article): Remove work buffers.
16615
16616         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
16617         compiling.
16618         (netrc-bound-and-true-p): New macro.
16619         (netrc-parse): Use it instead of bound-and-true-p that is not available
16620         in XEmacs 21.4.
16621
16622 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
16623
16624         * gnus-registry.el (gnus-registry-mark-article)
16625         (gnus-registry-article-marks): Add functionality to mark articles
16626         through the Gnus registry.
16627
16628         * encrypt.el: Clarify documentation for the new pgg method.
16629         (encrypt-file-alist): Add PGG option.
16630         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
16631         functionality.  Abstract password key and messaging to external
16632         functions.
16633         (encrypt-password-key, encrypt-get-passphrase-if-needed)
16634         (encrypt-message-method-and-cipher): Add new convenience external
16635         functions.
16636         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
16637         (encrypt-pgg-process-buffer): Add PGG functionality glue.
16638
16639         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
16640         (netrc-parse): Use encrypt-file-alist to determine if
16641         encrypt-find-model or encrypt-insert-file-contents should be used.
16642
16643         * encrypt.el: Clarify documentation.  Load password-cache or
16644         password, whichever one is found first, instead of autoloading.
16645
16646 2007-12-19  Glenn Morris  <rgm@gnu.org>
16647
16648         * mml.el (message-options-set, message-narrow-to-head)
16649         (message-in-body-p, message-mail-p, message-encode-message-body):
16650         Autoload.
16651         (message-remove-header, message-narrow-to-headers-or-head)
16652         (message-subscribed-p, message-make-mail-followup-to)
16653         (message-position-on-field, message-news-p)
16654         (message-options-set-recipient, message-generate-headers)
16655         (message-sort-headers): Declare as functions.
16656
16657 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
16658
16659         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
16660         convention in doc string.
16661
16662 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16663
16664         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
16665         title to html parts.
16666         (gnus-article-browse-html-article): Pass message header to it.
16667
16668         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
16669
16670 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
16671
16672         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
16673         or password compatible with XEmacs.
16674
16675 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
16676
16677         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
16678         format document.
16679         (gnus-mime-delete-part): Don't write description line if empty.
16680         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
16681
16682 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
16683
16684         * gnus-sum.el (gnus-summary-mark-unread-as-read)
16685         (gnus-summary-mark-read-and-unread-as-read)
16686         (gnus-summary-mark-current-read-and-unread-as-read)
16687         (gnus-summary-mark-unread-as-ticked): Doc fix.
16688         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
16689
16690 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
16691
16692         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
16693         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
16694
16695 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
16696
16697         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
16698         yes-or-no-p.
16699
16700 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16701
16702         * mm-decode.el (mm-add-meta-html-tag): New function.
16703         (mm-save-part-to-file, mm-pipe-part): Use it.
16704
16705         * gnus-art.el (gnus-article-browse-delete-temp-files):
16706         Use gnus-y-or-n-p instead of y-or-n-p.
16707         (gnus-article-browse-html-parts): Work with message/external-body; use
16708         mm-add-meta-html-tag.
16709
16710 2007-12-11  Glenn Morris  <rgm@gnu.org>
16711
16712         * gnus-cache.el: Require gnus-sum not just when compiling.
16713
16714         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
16715
16716         * gnus-int.el (gnus-server-opened, gnus-status-message):
16717         Move definitions before use.
16718
16719         * mm-decode.el: Require gnus-util.
16720         (mm-remove-part): Only call delete-annotation on XEmacs.
16721
16722         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
16723
16724         * nnmail.el: Require gnus-int.
16725
16726         * spam.el: Move `require's before `eval-when-compile's.
16727
16728         * gnus-ems.el (gnus-alive-p):
16729         * gnus-fun.el (message-goto-eoh):
16730         * gnus-util.el (gnus-group-name-decode):
16731         * mail-source.el (gnus-compress-sequence):
16732         * message.el (Info-goto-node, format-spec):
16733         * mm-bodies.el (message-options-get):
16734         * mm-decode.el (mm-view-pkcs7):
16735         * mm-util.el (gmm-write-region):
16736         * mml-smime.el (mml-compute-boundary)
16737         (gnus-completing-read-with-default):
16738         * mml.el (widget-button-press, gnus-make-hashtable):
16739         * mml1991.el (mm-decode-content-transfer-encoding)
16740         (mm-encode-content-transfer-encoding)
16741         (message-options-get, message-options-set):
16742         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
16743         * nnfolder.el (gnus-request-group):
16744         * nnheader.el (ietf-drums-unfold-fws):
16745         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
16746         * smime.el (gnus-run-mode-hooks):
16747         * spam-stat.el (gnus-message): Autoload.
16748
16749         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
16750         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
16751         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
16752         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
16753         Add declare-function compatibility definition.
16754
16755         * gnus-cache.el (nnvirtual-find-group-art):
16756         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
16757         (gnus-add-image, gnus-add-wash-type):
16758         * gnus-group.el (nnkiboze-score-file):
16759         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
16760         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
16761         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
16762         (message-tokenize-header, gnus-get-buffer-create)
16763         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
16764         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
16765         * gnus.el (gnus-group-decoded-name):
16766         * mail-source.el (imap-capability):
16767         * mm-bodies.el (message-options-set):
16768         * mm-decode.el (gnus-configure-windows):
16769         * mm-extern.el (message-goto-body):
16770         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
16771         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
16772         (epg-sub-key-validity, message-options-set):
16773         * mml.el (widget-event-point, gnus-configure-windows):
16774         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
16775         * mml2015.el (epg-check-configuration, epg-configuration)
16776         (message-options-set):
16777         * nndb.el (nndb-request-article):
16778         * nnfolder.el (gnus-request-create-group):
16779         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
16780         * nnmaildir.el (gnus-group-mark-article-read):
16781         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
16782         * rfc1843.el (message-fetch-field):
16783         * spam.el (gnus-extract-address-components):
16784         Declare as functions.
16785
16786 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16787
16788         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
16789
16790         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
16791
16792         * lpath.el: Fbind run-mode-hooks for Emacs 21;
16793         bind show-trailing-whitespace for XEmacs.
16794
16795 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
16796
16797         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
16798         new no-op macro for backward compatibility.
16799
16800         * imap.el (imap-string-to-integer): New function.
16801
16802 2007-12-09  Glenn Morris  <rgm@gnu.org>
16803
16804         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
16805
16806         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
16807         * message.el, mm-view.el, sieve-manage.el, smime.el:
16808         Add declare-function compatibility definition.
16809
16810         * gnus-art.el (w3-region, w3m-region, Info-menu):
16811         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
16812         * gnus-sum.el (gnus-get-predicate):
16813         * gnus-util.el (mm-append-to-file, w32-focus-frame):
16814         * message.el (mail-abbrev-in-expansion-header-p):
16815         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
16816         (w3m-detect-meta-charset, w3m-region):
16817         * sieve-manage.el (password-read, password-cache-add)
16818         (password-cache-remove):
16819         * smime.el (password-read-and-add): Declare as functions.
16820
16821 2007-12-08  David Kastrup  <dak@gnu.org>
16822
16823         * gnus-sum.el (gnus-summary-simplify-subject-query):
16824         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
16825         `message'.
16826
16827 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16828
16829         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
16830         it to bind idna-program, installation-directory, defined-colors, and
16831         face-attribute for XEmacs of the version that compiles defcustom forms.
16832
16833 2007-12-07  Glenn Morris  <rgm@gnu.org>
16834
16835         * gnus-art.el (article-make-date-line): Revert previous change.
16836
16837 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
16838
16839         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
16840
16841 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
16842
16843         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
16844         Call gnus-add-to-range ranges only once with a prepared article-list.
16845
16846 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
16847
16848         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
16849         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
16850         group names with backslashes.
16851         Reported by Tassilo Horn <tassilo@member.fsf.org>.
16852
16853 2007-12-06  Deepak Goel  <deego3@gmail.com>
16854
16855         * gnus-art.el (article-make-date-line):
16856         * gnus-start.el (gnus-load):
16857         * pop3.el (pop3-read-response): Fix buggy call to `error'.
16858
16859 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16860
16861         * gnus-art.el (gnus-use-idna):
16862         * gnus-start.el (gnus-site-init-file):
16863         * message.el (message-use-idna):
16864         * mm-uu.el (mm-uu-hide-markers):
16865         * smiley.el (smiley-style): Revert changes that suppress warnings.
16866
16867 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16868
16869         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
16870         specify charset to html source.
16871         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
16872
16873 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16874
16875         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
16876         idna-program in order to suppress byte compile warning issued by XEmacs
16877         that came to byte compile the default value section of defcustom forms
16878         recently.
16879
16880         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
16881         value of installation-directory.
16882
16883         * message.el (message-use-idna): Don't directly refer to the value of
16884         idna-program.
16885
16886         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
16887
16888         * smiley.el (smiley-style): Don't directly call face-attribute.
16889
16890 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
16891
16892         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
16893
16894         * gnus-dired.el: Reduce Gnus dependencies.
16895         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
16896         Don't require.  Use autoloads instead.
16897         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
16898         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
16899         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
16900         (gnus-dired-mode): Adjust doc string.
16901         (gnus-dired-mail-mode): New variable.
16902         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
16903         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
16904         (gnus-dired-mail-buffers): New function.  Return mail or message
16905         composition buffers.
16906         (gnus-dired-attach): Use it.
16907         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
16908         NO-DECODE.
16909         (gnus-dired-print): Use `gnus-print-buffer' depending on
16910         `gnus-dired-mail-mode'.
16911
16912 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16913
16914         * rfc2047.el (rfc2047-encoded-word-regexp)
16915         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
16916         explaining what regexp patterns are for.
16917
16918 2007-12-04  Glenn Morris  <rgm@gnu.org>
16919
16920         * password.el: Move to password-cache.el.
16921
16922         * mml1991.el (password-read, password-cache-add, password-cache-remove):
16923         * mml2015.el (password-read, password-cache-add, password-cache-remove):
16924         * mml-smime.el (password-read, password-cache-add)
16925         (password-cache-remove):
16926         No need to autoload, since mml-sec requires password.
16927
16928         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
16929         * message.el (gnus-extract-address-components):
16930         * mml-smime.el (gnus-extract-address-components): Define for compiler.
16931
16932         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
16933         password.
16934
16935 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
16936
16937         * mailcap.el: Reduce dependencies.
16938         (mail-header-parse-content-type): Autoload.
16939         (mailcap-delete-duplicates): New alias.
16940         (mailcap-mime-info): Add optional argument NO-DECODE.
16941         (mailcap-mime-types): Use mailcap-delete-duplicates.
16942
16943         * message.el (message-ignored-supersedes-headers): Add "X-ID".
16944
16945 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
16946
16947         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
16948         (imap-parse-status): Upcase status-att for servers that sends them
16949         lower-case (e.g., MS Exchange 2007).
16950
16951 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16952
16953         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
16954         function.
16955
16956         * gnus-uu.el (gnus-uu-decode-yenc): New command.
16957         (gnus-uu-yenc-article): New function.
16958
16959         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
16960
16961         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
16962
16963 2007-12-02  Glenn Morris  <rgm@gnu.org>
16964
16965         * binhex.el (binhex): New custom group.
16966         (binhex-decoder-program, binhex-decoder-switches)
16967         (binhex-use-external): Move to the binhex custom group.
16968
16969         * uudecode.el (uudecode): New custom group.
16970         (uudecode-decoder-program, uudecode-decoder-switches)
16971         (uudecode-use-external): Move to the uudecode custom group.
16972
16973         * netrc.el (top-level): Don't load `encrypt' features.
16974         (netrc-parse): Don't use encrypt.
16975         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
16976
16977         * encrypt.el: Remove file.
16978
16979 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
16980
16981         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
16982         matches on patches.
16983
16984         * gnus-art.el (gnus-article-browse-html-article):
16985         Mention `mm-text-html-renderer' in the doc string.
16986
16987         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
16988         string.  Add comments.
16989
16990         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
16991         if rhs is ASCII.
16992
16993 2007-12-01  Glenn Morris  <rgm@gnu.org>
16994
16995         * mail-source.el (top-level): Require format-spec before
16996         eval-when-compile.
16997
16998 2007-11-30  Glenn Morris  <rgm@gnu.org>
16999
17000         * encrypt.el: Require password, rather than autoloading password-read.
17001
17002 2007-11-29  Glenn Morris  <rgm@gnu.org>
17003
17004         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
17005         (sasl-make-client, sasl-next-step, sasl-step-data)
17006         (sasl-step-set-data): Declare as functions.
17007
17008 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
17009
17010         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
17011
17012 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
17013
17014         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
17015         certs should be verified and what is to be done in the event of a
17016         verification failure.
17017
17018         * gnus.el (gnus-method-to-server): Add an optional parameter so the
17019         caller can indicate whether the cache should be disregarded for this
17020         call.  This way the result of the call is reproducible at all times and
17021         can be considered a canonical server name for the supplied method.
17022         (gnus-agent-method-p): Canonicalize server names by pushing their
17023         method through `gnus-method-to-server' using the no-cache argument.
17024
17025         * gnus-srvr.el (gnus-server-insert-server-line):
17026         Call `gnus-method-to-server' with `no-cache' argument.
17027
17028         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
17029         gnus-agent-possibly-synchronize-flags as this should be called when the
17030         server is actually being opened.
17031         (gnus-agent-possibly-synchronize-flags)
17032         (gnus-agent-possibly-synchronize-flags-server): Move check for the
17033         flags file of an agentized server to the latter function.
17034
17035         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
17036         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
17037         after a connection has been established successfully.
17038
17039 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17040
17041         * gnus-art.el (article-display-face): Force to display face if called
17042         interactively; check if gnus-article-x-face-too-ugly matches author.
17043         (article-display-x-face): Display face even if From header is missing
17044         as article-display-face does.
17045
17046 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
17047
17048         * hashcash.el (message-narrow-to-headers-or-head)
17049         (message-fetch-field, message-goto-eoh)
17050         (message-narrow-to-headers): Declare as functions.
17051
17052 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
17053
17054         * mail-source.el (mail-sources): Default to fetch from file for
17055         compatibility with default of nnmail-spool-file.
17056
17057 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17058
17059         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
17060         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
17061         to look for encoded word that should be encoded again.
17062         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
17063         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
17064         encoding pattern.
17065         (rfc2047-decode-region): Switch strict regexp and loose one according
17066         to rfc2047-allow-irregular-q-encoded-words.
17067
17068 2007-11-25  Romain Francoise  <romain@orebokech.com>
17069
17070         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
17071
17072 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
17073
17074         * tls.el (tls-program): Provide more custom choices from
17075         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
17076         (tls-process-connection-type, tls-success): Remove "*" in doc string.
17077
17078 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
17079
17080         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
17081         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
17082
17083         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
17084         `nnmail-spool-file'.
17085
17086         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
17087         `nnmail-spool-file'.
17088
17089         * gnus-move.el (gnus-change-server): Ditto.
17090
17091         * gnus-kill.el (gnus-batch-score): Ditto.
17092
17093         * gnus-cache.el (gnus-jog-cache): Ditto.
17094
17095         * gnus-msg.el (gnus-summary-reply):
17096         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
17097
17098 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
17099
17100         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
17101         version.  Minor improvement to doc strings.
17102         (tls-program): Add comment.
17103
17104 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
17105
17106         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
17107         (tls-checktrust): New variable.  Check if GNU TLS complained about a
17108         mismatch between the hostname provided in the certificate and the name
17109         of the host connnecting to.
17110         (open-tls-stream): Use them.  Check certificates against trusted root
17111         certificates.
17112
17113 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
17114
17115         * gnus-cache.el (gnus-cache-generate-nov-databases):
17116         Use nnml-generate-nov-databases-directory instead of
17117         nnml-generate-nov-databases-1.
17118
17119 2007-11-24  Glenn Morris  <rgm@gnu.org>
17120
17121         * message.el (message-tool-bar-retro): Update for rename
17122         mail_send.xpm->mail-send.xpm.
17123
17124 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
17125
17126         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
17127         `smime-ldap-search' for Emacs 22 and up.
17128
17129 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17130
17131         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
17132
17133         * message.el (message-send-mail-function): Fix error convention.
17134         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
17135         (message-widen-reply, message-send-mail, message-talkative-question)
17136         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
17137         (message-clone-locals, message-send-news): Use with-current-buffer.
17138         (message-insert-or-toggle-importance): Remove unused var `valid'.
17139         (message-make-references): Remove unused var `new-references'.
17140         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
17141
17142 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
17143
17144         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
17145         (spam-split-symbolic-return-positive): Reflow docstring.
17146         (spam-backends, spam-summary-exit-behavior)
17147         (spam-mark-ham-unread-before-move-from-spam-group)
17148         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
17149         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
17150         (spam-clear-cache, spam-backend-check, spam-install-backend)
17151         (spam-install-statistical-backend, spam-list-of-processors)
17152         (spam-group-processor-p, spam-split, spam-bogofilter-score)
17153         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
17154         (spam-check-crm114, spam-initialize, spam-unload-hook):
17155         Fix typos in docstrings.
17156
17157 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17158
17159         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
17160         been checked if they have never been read and those group levels are
17161         higher than the one that a user specified.
17162
17163 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17164
17165         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
17166         foreign groups unless a group level is specified by a user.
17167         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
17168
17169 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
17170
17171         * message.el (message-send-mail-function): Require sendmail.
17172
17173 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
17174
17175         * message.el (message-send-mail-function): Check for smtpmail too.
17176
17177         * utf7.el (utf7-encode, utf7-decode): Use coding system
17178         `utf-7'/`utf-7-imap' from utf-7.el' if available.
17179
17180         * message.el (message-send-mail-function): New function.
17181         (message-send-mail-function): Set default using
17182         message-send-mail-function.  Adjust doc string.
17183         (message-send-mail-with-mailclient): New function.
17184
17185 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
17186
17187         * smime.el (from):
17188         * rfc2047.el (message-posting-charset):
17189         * qp.el (mm-use-ultra-safe-encoding):
17190         * pop3.el (parse-time-months):
17191         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
17192         * nnml.el (files):
17193         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
17194         (jka-compr-compression-info-list, ange-ftp-path-format)
17195         (efs-path-regexp):
17196         * nndiary.el (files):
17197         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
17198         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
17199         (epg-digest-algorithm-alist, inhibit-redisplay)
17200         (password-cache-expiry):
17201         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
17202         (pgg-output-buffer, password-cache-expiry):
17203         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
17204         (efs-path-regexp):
17205         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
17206         (inhibit-redisplay):
17207         * mm-uu.el (file-name, start-point, end-point, entry)
17208         (gnus-newsgroup-name, gnus-newsgroup-charset):
17209         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
17210         (latin-unity-ucs-list):
17211         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
17212         (mm-uu-binhex-decode-function):
17213         * message.el (gnus-message-group-art, gnus-list-identifiers)
17214         (rmail-enable-mime-composing, gnus-local-organization)
17215         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
17216         (gnus-read-active-file, facemenu-add-face-function)
17217         (facemenu-remove-face-function, gnus-article-decoded-p)
17218         (tool-bar-mode):
17219         * mail-source.el (display-time-mail-function):
17220         * gnus-util.el (nnmail-pathname-coding-system)
17221         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
17222         (gnus-original-article-buffer, gnus-user-agent)
17223         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
17224         (xemacs-codename, sxemacs-codename, emacs-program-version):
17225         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
17226         * gnus-start.el (gnus-agent-covered-methods)
17227         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
17228         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
17229         (gnus-newsgroup-headers, gnus-group-list-mode)
17230         (gnus-group-mark-positions, gnus-newsgroup-data)
17231         (gnus-newsgroup-unreads, nnoo-state-alist)
17232         (gnus-current-select-method, mail-sources)
17233         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
17234         (nnmail-spool-file, gnus-cache-active-hashtb):
17235         * gnus-mh.el (mh-lib-progs):
17236         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
17237         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
17238         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
17239         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
17240         (gnus-group-buffer):
17241         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
17242         (font-lock-set-defaults):
17243         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
17244         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
17245         (gnus-summary-post-menu, total-parts, type, condition, length):
17246         * gnus-agent.el (gnus-agent-read-agentview):
17247         * flow-fill.el (show-trailing-whitespace):
17248         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
17249         eval-and-compile wrappers for byte compiler pacifiers.
17250
17251         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
17252         (mm-display-inline-fontify): Check for featurep 'xemacs not
17253         extent-list.
17254
17255         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
17256         itimer-list.
17257         (mm-create-image-xemacs): Only do something for XEmacs.
17258         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
17259
17260         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
17261
17262         * gnus-registry.el (gnus-adaptive-word-syntax-table):
17263         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
17264
17265 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
17266
17267         * nnimap.el (nnimap-split-download-body):
17268         * gnus-demon.el (gnus-demon):
17269         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
17270
17271 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17272
17273         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
17274         New macros.
17275         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
17276         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
17277         copy data from unibyte buffer to multibyte current buffer.
17278         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
17279         to copy data from unibyte current buffer to multibyte buffer.
17280         (nntp-make-process-buffer): Make process buffer unibyte.
17281
17282         * pop3.el (pop3-open-server): Fix typo in Lisp code.
17283
17284 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
17285
17286         * pop3.el (pop3-open-server): Accept and process data more robustly at
17287         connection start to avoid spurious "POP SSL connection failed" errors.
17288
17289 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17290
17291         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
17292         read group names.
17293
17294 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
17295
17296         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
17297
17298 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17299
17300         * nnmail.el (nnmail-parse-active): Make group names unibyte.
17301         (nnmail-save-active): Use a unibyte buffer when saving active file,
17302         which may contain non-ASCII group names.
17303
17304         * nnml.el (nnml-request-group): Decode group names in messages.
17305
17306 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
17307
17308         * message.el (message-citation-line-function)
17309         (message-insert-formatted-citation-line): Fix spelling of
17310         `message-insert-formated-citation-line'.
17311
17312 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
17313
17314         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
17315
17316 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17317
17318         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
17319         nnmail-pathname-coding-system.
17320
17321         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
17322         that a user enters; decode group names in messages.
17323
17324         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
17325
17326 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
17327
17328         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
17329
17330         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
17331
17332         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
17333         risky local variable.
17334
17335         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
17336
17337 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
17338
17339         * encrypt.el: Improve documentation to fix function name typo.
17340         Reported by Daiki Ueno <ueno@unixuser.org>.
17341
17342 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17343
17344         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
17345         even if the point is not in the last page of an article.
17346         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
17347         back to the previous page.
17348
17349 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
17350
17351         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
17352
17353 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17354
17355         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
17356
17357 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
17358
17359         * message.el (message-check-news-body-syntax):
17360         Avoid mm-string-as-multibyte.
17361         (message-hide-headers): Don't assume (point-min)==1.
17362
17363 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
17364
17365         * message.el (message-remove-blank-cited-lines): Fix if remove is
17366         given.
17367         (message-bogus-address-regexp): New variable.
17368         (message-bogus-recipient-p): New function.
17369         (message-check-recipients): New command.
17370         (message-syntax-checks): Add `bogus-recipient'.
17371         (message-fix-before-sending): Add `bogus-recipient'.
17372
17373         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
17374         (gnus-treat-body-boundary): Don't test window-system.
17375
17376 2007-10-28  Leo Liu  <sdl.web@gmail.com>
17377
17378         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
17379
17380 2007-10-28  Miles Bader  <miles@gnu.org>
17381
17382         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
17383         at compile-time too.
17384
17385 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
17386
17387         * gnus-msg.el (gnus-message-setup-hook):
17388         Add `message-remove-blank-cited-lines' to options.
17389
17390 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
17391
17392         * message.el (message-remove-blank-cited-lines): New function.
17393         Suggested by Karl Plästerer.
17394
17395 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17396
17397         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
17398         mapc.
17399
17400         * imap.el (imap-open): Replace mapcar called for effect with mapc.
17401         (top-level): Use mapc to set functions to be traced for debugging.
17402
17403         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
17404         called for effect with while loop.
17405
17406         * message.el (message-talkative-question): Replace mapcar called for
17407         effect with mapc.
17408
17409         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
17410         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
17411         called for effect with dolist.
17412
17413         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
17414
17415         * nndiary.el: Use dolist instead of mapcar to add diary headers to
17416         gnus-extra-headers and nnmail-extra-headers.
17417
17418         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
17419         called for effect with dolist.
17420         (top-level): Use mapc to set functions to be traced for debugging.
17421
17422         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
17423         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
17424         dolist.
17425
17426         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
17427         Replace mapcar called for effect with mapc.
17428         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
17429         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
17430         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
17431         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
17432
17433         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
17434         remove-if that's a cl function.
17435
17436         * webmail.el (webmail-debug): Replace mapcar called for effect with
17437         dolist.
17438
17439         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
17440         with mapc.
17441
17442 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17443
17444         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
17445         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
17446         with while loop.
17447
17448         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
17449         functions from article-* functions.
17450         (gnus-multi-decode-header): Replace mapcar called for effect with
17451         dolist.
17452
17453         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
17454         (gnus-bookmark-show-details): Replace mapcar called for effect with
17455         while loop.
17456
17457         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
17458         called for effect with while loop.
17459
17460         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
17461         with dolist.
17462
17463         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
17464         Replace mapcar called for effect with dolist.
17465
17466         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
17467
17468         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
17469         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
17470         Replace mapcar called for effect with dolist.
17471         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
17472         mapc.
17473
17474         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
17475         Replace mapcar called for effect with dolist.
17476         (gnus-topic-list): Replace mapcar called for effect with mapc.
17477
17478         * gnus.el: Use mapc instead of mapcar to add autoloads.
17479
17480 2007-10-23  Richard Stallman  <rms@gnu.org>
17481
17482         * gnus-group.el (gnus-group-highlight): Mark as risky.
17483
17484 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17485
17486         * gnus.el (gnus-server-to-method): Return method found first in
17487         gnus-newsrc-alist.
17488
17489         * gnus-art.el (gnus-article-highlight-signature)
17490         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
17491         button overlay without the front stickiness.
17492
17493 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
17494
17495         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
17496         overview buffer needed a catch to receive its throw.
17497         (gnus-agent-flush-cache): Declare as interactive to make this function
17498         easier to use.
17499
17500 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
17501
17502         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
17503         `next-line'.
17504
17505 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17506
17507         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
17508         exclude address matching message-dont-reply-to-names.
17509
17510 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17511
17512         * gnus-util.el (gnus-string<): New function.
17513
17514         * gnus-sum.el (gnus-article-sort-by-author)
17515         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
17516
17517 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17518
17519         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
17520         the frame-focus tag is set in gnus-buffer-configuration.
17521
17522 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17523
17524         * gnus-art.el (gnus-article-add-button): Make a button overlay without
17525         the front stickiness.
17526
17527 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17528
17529         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
17530         url pattern; remove duplicate one.
17531         (gnus-article-extend-url-button): New function.
17532         (gnus-article-add-buttons): Use it.
17533         (gnus-button-push): Use concatenated url that it makes.
17534
17535 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
17536
17537         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
17538
17539 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
17540
17541         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
17542         Don't hardcode point-min==1.
17543
17544 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
17545
17546         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
17547         Fix comment about "iso8859-1".
17548
17549 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
17550
17551         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
17552         ones returned from the verify-function.
17553
17554         * mm-uu.el (mm-uu-pgp-signed-extract-1):
17555         Call mml2015-extract-cleartext-signature if extraction failed.
17556
17557 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
17558
17559         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
17560         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
17561         failed.
17562
17563 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
17564
17565         * Relicense "GPLv2 or later" files to "GPLv3 or later".
17566
17567 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
17568
17569         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
17570         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
17571         recommends to use EasyPG instead of PGG.
17572
17573         * pgg.el: Revert to revision 6.23.2.16.
17574
17575         * pgg-def.el: Revert to revision 6.6.2.14.
17576
17577         * pgg-gpg.el: Revert to revision 6.23.2.34.
17578
17579 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
17580
17581         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
17582         to mark a thread as expirable.  Add variable `hide' to handle hiding of
17583         thread for both the null and zero (kill/expire thread) universal prefix
17584         cases.
17585         (gnus-summary-expire-thread): Add new function to expire a thread,
17586         using gnus-summary-kill-thread.
17587         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
17588         shortcuts for gnus-summary-expire-thread.
17589         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
17590         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
17591
17592 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
17593
17594         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
17595         extras value, so an extras entry can be deleted.
17596         (gnus-registry-delete-extra-entry): Use it.
17597         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
17598         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
17599         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
17600         storage through the gnus-registry, and provide an appropriate API for
17601         it.
17602
17603 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17604
17605         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
17606         Suggested by Leo <sdl.web@gmail.com>.
17607
17608         * gnus.el: Do.
17609
17610 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17611
17612         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
17613         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
17614
17615         * gnus-agent.el (gnus-agent-fetch-headers): Do.
17616
17617         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
17618         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
17619
17620 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17621
17622         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
17623         newline.
17624         (nnmbox-request-accept-article): Don't change article in source buffer;
17625         narrow to header to use message-fetch-field rather than
17626         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
17627         (nnmbox-request-replace-article): Quote lines that'll be misidentified
17628         as delimiters; make sure article ends with newline.
17629         (nnmbox-delete-mail): Correct last position of article to be deleted;
17630         ignore X-Gnus-Newsgroup header in article body.
17631         (nnmbox-save-mail): Quote lines looking like delimiters at the right
17632         positions; make sure article ends with newline.
17633
17634         * message.el (message-display-abbrev): Don't infloop when a user
17635         inserts SPC in the beginning of header.
17636
17637         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
17638         coding-system-for-read and coding-system-for-write for XEmacs having no
17639         file-coding feature.
17640
17641         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
17642
17643 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
17644
17645         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
17646         list of groups not followed by default.  Fix type to be regexp.
17647         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
17648
17649 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
17650
17651         * hmac-def.el (define-hmac-function): Switch from old-style to
17652         new-style backquotes.
17653
17654         * md4.el (md4-make-step): Likewise.
17655
17656 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17657
17658         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
17659         raw-text coding system when saving .newsrc file, which may contain
17660         non-ASCII group names.
17661
17662 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17663
17664         * gnus-cus.el (gnus-score-extra): New widget.
17665         (gnus-score-extra-convert): New function.
17666         (gnus-score-customize): Use it for Extra.
17667
17668 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
17669
17670         * mml2015.el (mml2015-extract-cleartext-signature): New function.
17671         (mml2015-mailcrypt-clear-verify): Use it.
17672         (mml2015-gpg-clear-verify): Use it.
17673         (mml2015-pgg-clear-verify): Use it.
17674         (mml2015-epg-clear-verify): Replace the current part with the output
17675         from GnuPG; don't extract the plaintext by itself.
17676
17677         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
17678         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
17679         mml2015-clear-verify-function; don't touch the armor headers or
17680         dash-escaped text here.
17681
17682 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17683
17684         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
17685         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
17686         parts, or application/octet-stream as a last resort.
17687         (gnus-mime-view-part-as-type): Don't toggle display.
17688         (gnus-mime-view-part-as-charset): Don't turn off display before
17689         querying charset.
17690
17691         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
17692         stuff to undisplayer function in Emacs.
17693         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
17694
17695         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
17696         text/calendar parts.
17697
17698 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17699
17700         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
17701         decoding text/calendar parts.
17702
17703         * message.el (message-forward-make-body-mime): Always mark body as
17704         having no illegible text; remove signed-or-encrypted argument.
17705         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
17706
17707         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
17708         (mml-generate-mime-1): Don't encode body if it is specified to be in
17709         raw form; don't make buffer be unibyte when inserting multibyte string.
17710
17711 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17712
17713         * sha1.el: Fix up comment style.
17714         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
17715         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
17716
17717         * hex-util.el: Fix up comment style.
17718         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
17719
17720         * gnus-salt.el: Use with-current-buffer.
17721         (gnus-pick-setup-message): Fix long-standing typo.
17722
17723 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17724
17725         * imap.el (imap-logout-timeout): New variable.
17726         (imap-logout, imap-logout-wait): New functions.
17727         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
17728
17729         * nnimap.el (nnimap-logout-timeout): New server variable.
17730         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
17731         nnimap-logout-timeout.
17732
17733         * gnus-art.el (gnus-article-summary-command-nosave)
17734         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
17735
17736 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17737
17738         * gnus.el (gnus-maximum-newsgroup): New variable.
17739
17740         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
17741         according to gnus-maximum-newsgroup.
17742
17743         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
17744         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
17745         Limit the range of articles according to gnus-maximum-newsgroup.
17746
17747 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
17748
17749         * gnus-art.el (gnus-sticky-article): Fix problems described in
17750         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
17751         Don't perform gnus-configure-windows here; reuse existing sticky
17752         article buffer.
17753
17754         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
17755         it doesn't exist in gnus-article-mode.
17756
17757 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17758
17759         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
17760         (gnus-agent-decoded-group-name): New function.
17761         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
17762         (gnus-agent-expire-group-1): Use it; decode group name in messages.
17763
17764 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
17765
17766         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
17767         Add binding for gnus-sticky-article.
17768         (gnus-summary-exit): Don't kill sticky article buffers.
17769
17770         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
17771         article buffer.
17772         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
17773         (gnus-kill-sticky-article-buffers): New commands.
17774
17775 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17776
17777         * nntp.el (nntp-xref-number-is-evil): New server variable.
17778         (nntp-find-group-and-number): If it is non-nil, don't trust article
17779         numbers in the Xref header.
17780
17781 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17782
17783         * gnus-agent.el (gnus-agent-read-group): New function.
17784         (gnus-agent-flush-group, gnus-agent-expire-group)
17785         (gnus-agent-regenerate-group): Use it.
17786         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
17787         nnmail-pathname-coding-system.
17788
17789 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17790
17791         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
17792
17793         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
17794         that are unread as unread, and also as selected so that information of
17795         marks having been changed by a user may be updated when exiting group.
17796
17797 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
17798
17799         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
17800
17801 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
17802
17803         * gnus-art.el (gnus-mime-display-single): Pass part number that is
17804         calculated ignoring signature parts to gnus-treat-article.
17805
17806 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17807
17808         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
17809         a point here in order to keep the window start.
17810         (gnus-insert-mime-security-button): Make a button overlay without the
17811         front stickiness.
17812         (gnus-mime-display-security): Goto the end of a button.
17813
17814         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
17815
17816 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17817
17818         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
17819         group-name-at-point.
17820         (gnus-group-completing-read): New function that offers decoded
17821         non-ASCII group names for completion.
17822         (gnus-fetch-group, gnus-group-read-ephemeral-group)
17823         (gnus-group-jump-to-group, gnus-group-make-group-simple)
17824         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
17825         (gnus-group-fetch-control): Use it.
17826         (gnus-fetch-group): Use group-name-at-point for the initial value
17827         rather than the default value; use gnus-alive-p.
17828
17829         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
17830         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
17831         (gnus-summary-post-news): Use gnus-group-completing-read.
17832
17833         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
17834         (gnus-read-move-group-name): Decode group name for completion.
17835
17836 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
17837
17838         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
17839         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
17840         Yamaoka slightly modified the code).
17841
17842 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17843
17844         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
17845         (nnmail-split-incoming): Bind it.
17846
17847         * nnml.el (nnml-group-name-charset): New function.
17848         (nnml-decoded-group-name): Use it; don't decode group name if
17849         nnmail-group-names-not-encoded-p is non-nil.
17850         (nnml-encoded-group-name): New function.
17851         (nnml-group-pathname): Inline nnml-decoded-group-name.
17852         (nnml-request-expire-articles): Decode group name in message.
17853         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
17854         nnmail-pathname-coding-system.
17855         (nnml-save-mail, nnml-active-number): Work with decoded group names and
17856         not decoded ones according to nnmail-group-names-not-encoded-p.
17857         (nnml-generate-active-info): Use nnml-encoded-group-name.
17858
17859 2007-08-08  Glenn Morris  <rgm@gnu.org>
17860
17861         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
17862         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
17863         doc-strings and comments.
17864
17865 2007-07-25  Glenn Morris  <rgm@gnu.org>
17866
17867         * Relicense all FSF files to GPLv3 or later.
17868
17869 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17870
17871         * gnus-sum.el (gnus-summary-move-article):
17872         Make gnus-summary-respool-article work.
17873
17874 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
17875
17876         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
17877         string.
17878
17879 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
17880
17881         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
17882         that should be ignored when comparing distant RSS articles with local
17883         ones.
17884         (nnrss-make-hash-index): New function.  Create a hash index according
17885         to the ignored fields.
17886         (nnrss-check-group): Use it.
17887
17888 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17889
17890         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
17891
17892         * gnus-art.el (article-decode-group-name): Decode Xref header too.
17893
17894         * gnus-group.el (gnus-group-make-group): Encode group name here unless
17895         the new optional argument ENCODED is non-nil.
17896         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
17897         coding system for encoding group name.
17898         (gnus-group-make-rss-group): Pass un-encoded group name to
17899         gnus-group-make-group.
17900         (gnus-group-set-info): Tell gnus-group-make-group that group name is
17901         encoded.
17902
17903         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
17904         Encode group name to which articles are moved or copied.
17905         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
17906         coding system for encoding Newsgroup, Followup-To and Xref headers.
17907
17908         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
17909         marks; use nnheader-file-coding-system to write a file.
17910         (nnagent-retrieve-headers): Bind file-name-coding-system to
17911         nnmail-pathname-coding-system.
17912
17913         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
17914
17915         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
17916         (nnml-request-article, nnml-request-create-group)
17917         (nnml-request-rename-group, nnml-find-id)
17918         (nnml-possibly-change-directory, nnml-possibly-create-directory)
17919         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
17920         (nnml-save-marks): Use nnml-group-pathname instead of
17921         nnmail-group-pathname.
17922
17923         (nnml-request-create-group, nnml-request-expire-articles)
17924         (nnml-request-move-article, nnml-request-delete-group)
17925         (nnml-deletable-article-p, nnml-possibly-create-directory)
17926         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
17927         (nnml-open-marks): Bind file-name-coding-system to
17928         nnmail-pathname-coding-system.
17929
17930         (nnml-request-article): Pass server argument to nnml-find-group-number.
17931         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
17932         Pass server argument to nnml-possibly-create-directory.
17933         (nnml-request-accept-article): Pass server argument to
17934         nnml-active-number and nnml-save-mail.
17935         (nnml-find-group-number): Pass server argument to nnml-find-id.
17936         (nnml-request-update-info): Pass server argument to
17937         nnml-marks-changed-p.
17938
17939         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
17940         (nnml-save-mail, nnml-active-number): Add server argument.
17941
17942         (nnml-request-delete-group): Warn if group is missing.
17943         (nnml-get-nov-buffer): Decode group name.
17944         (nnml-generate-active-info): Encode group name.
17945         (nnml-open-marks): Decode group name in messages.
17946
17947 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17948
17949         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
17950         if it is not specified.
17951         (gnus-article-pipe-part, gnus-article-save-part)
17952         (gnus-article-interactively-view-part, gnus-article-copy-part)
17953         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
17954         (gnus-article-inline-part, gnus-article-save-part-and-strip)
17955         (gnus-article-replace-part, gnus-article-delete-part)
17956         (gnus-article-view-part-as-type): Pass raw prefix argument to
17957         gnus-article-part-wrapper.
17958
17959 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17960
17961         * gnus-agent.el (gnus-agent-save-active):
17962         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
17963
17964         * gnus-cache.el (gnus-cache-save-buffers)
17965         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
17966         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
17967         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
17968         (gnus-cache-braid-nov, gnus-cache-braid-heads)
17969         (gnus-cache-generate-active, gnus-cache-rename-group)
17970         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
17971         (gnus-cache-update-overview-total-fetched-for):
17972         Bind file-name-coding-system to nnmail-pathname-coding-system.
17973         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
17974         New variables.
17975         (gnus-cache-decoded-group-name): New function.
17976         (gnus-cache-file-name): Use it.
17977         (gnus-cache-generate-active): Use non-decoded group name for active.
17978
17979         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
17980         right place.
17981         (gnus-write-active-file): Don't break non-ASCII group names.
17982
17983         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
17984         nnmail-pathname-coding-system.
17985
17986         * lpath.el: Bind default-file-name-coding-system,
17987         file-name-coding-system and language-info-alist for XEmacs.
17988
17989         * gnus-uu.el (gnus-uu-decode-save): Typo.
17990
17991 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17992
17993         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
17994
17995 2007-07-14  David Kastrup  <dak@gnu.org>
17996
17997         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
17998         finishing actions if we did not edit the article.
17999
18000 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18001
18002         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
18003         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
18004         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
18005         (gnus-agent-flush-group, gnus-agent-flush-cache)
18006         (gnus-agent-fetch-headers, gnus-agent-load-alist)
18007         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
18008         (gnus-agent-retrieve-headers, gnus-agent-request-article)
18009         (gnus-agent-regenerate-group)
18010         (gnus-agent-update-files-total-fetched-for)
18011         (gnus-agent-update-view-total-fetched-for):
18012         Bind file-name-coding-system to nnmail-pathname-coding-system.
18013         (gnus-agent-group-pathname): Don't encode file names by
18014         nnmail-pathname-coding-system.
18015         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
18016         coding-system-for-write instead of buffer-file-coding-system to
18017         gnus-agent-file-coding-system.
18018
18019         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
18020         Decode group name.
18021
18022         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
18023
18024         * gnus-start.el (gnus-update-active-hashtb-from-killed)
18025         (gnus-read-newsrc-el-file): Make group names unibyte.
18026
18027         * nnmail.el (nnmail-group-pathname): Don't encode file names by
18028         nnmail-pathname-coding-system.
18029
18030         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
18031         (nnrss-request-delete-group): Bind file-name-coding-system to
18032         nnmail-pathname-coding-system.
18033         (nnrss-read-server-data, nnrss-read-group-data):
18034         Bind file-name-coding-system correctly.
18035         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
18036
18037         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
18038         (nntp-server-to-method-cache): New variable.
18039         (nntp-group-pathname): New function that decodes non-ASCII group names.
18040         (nntp-possibly-create-directory, nntp-marks-changed-p)
18041         (nntp-save-marks, nntp-open-marks): Use it.
18042         (nntp-possibly-create-directory, nntp-open-marks):
18043         Bind file-name-coding-system to nnmail-pathname-coding-system.
18044         (nntp-open-marks): Decode group names when bootstrapping marks.
18045
18046         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
18047         Newsgroups and Followup-To headers.
18048
18049 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18050
18051         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
18052         (gnus-server-closed-face, gnus-server-denied-face)
18053         (gnus-server-offline-face): Remove variable.
18054         (gnus-server-font-lock-keywords): Use faces that are not aliases.
18055
18056         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
18057         of modifying message-stack directly for XEmacs.
18058
18059         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
18060         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
18061         if the coding-system argument is nil for XEmacs.
18062
18063         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
18064         mm-charset-override-alist.
18065
18066         * rfc2047.el: Don't require base64; require rfc2045 for the function
18067         rfc2045-encode-string.
18068         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
18069         to quote the parameter value.
18070
18071 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18072
18073         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
18074         form in gnus-group-name-charset-method-alist.
18075
18076         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
18077         overrides the default layout edit-form.
18078
18079         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
18080
18081         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
18082
18083 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18084
18085         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
18086         as unfetched articles.
18087
18088 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
18089
18090         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
18091
18092 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18093
18094         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
18095         original back end that keeps marks in the local system.
18096
18097 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18098
18099         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
18100         arg of pop-to-buffer for XEmacs.
18101         (gnus-article-read-summary-keys): Ditto; don't restore window
18102         configuration if summary command ends up with neither article buffer
18103         nor summary buffer; describe bindings if summary keys end with C-h.
18104
18105 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18106
18107         * message.el (message-fix-before-sending): Skip raw message part to be
18108         forwarded while checking illegible text.
18109         (message-forward-make-body-mime, message-forward-make-body):
18110         Mark signed or encrypted raw message as having no illegible text.
18111
18112 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18113
18114         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
18115         (gnus-message-with-timestamp-1): New macro.
18116         (gnus-message-with-timestamp): New function.
18117         (gnus-message): Use them.
18118
18119         * nnheader.el (nnheader-message): Use them.
18120
18121 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
18122
18123         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
18124         .newsrc.eld file.
18125
18126 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18127
18128         * gnus-agent.el (gnus-agent-fetch-headers)
18129         (gnus-agent-retrieve-headers):
18130         Bind gnus-decode-encoded-address-function to identity.
18131
18132         * nntp.el (nntp-send-xover-command): Recognize an xover command is
18133         available also when the server returns simply a dot.
18134
18135         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
18136
18137 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18138
18139         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
18140
18141 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18142
18143         * gnus-ems.el (gnus-x-splash): Make it work.
18144
18145         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
18146         from being used.
18147
18148         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
18149
18150 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
18151
18152         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
18153         4th and the 5th arguments.
18154
18155         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
18156         the front stickiness.
18157         (gnus-article-summary-command-nosave): Correct the order of the
18158         arguments passed to pop-to-buffer.
18159         (gnus-article-read-summary-keys): Ditto; make it work properly when the
18160         summary command ends up with the article buffer.
18161
18162         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
18163         the same faces.
18164
18165 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
18166
18167         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
18168
18169 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
18170
18171         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
18172         * gnus-sum.el (gnus-summary-highlight):
18173         * pgg.el (pgg-sign-region, pgg-sign):
18174         * mail-source.el (mail-source-delete-old-incoming-confirm):
18175         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
18176
18177 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18178
18179         * gnus-art.el (gnus-mime-view-part-externally)
18180         (gnus-mime-view-part-internally): Fix predicate function passed to
18181         completing-read.
18182
18183         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
18184
18185         * gnus.el (gnus-update-message-archive-method): Add :version.
18186
18187 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18188
18189         * gnus.el (gnus-update-message-archive-method): New variable.
18190
18191         * gnus-start.el (gnus-setup-news): Update saved "archive" method
18192         according to gnus-message-archive-method if
18193         gnus-update-message-archive-method is non-nil.
18194
18195 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18196
18197         * gnus-sum.el (gnus-summary-limit-to-address): New function.
18198         Suggested by Loic Dachary <loic@dachary.org>.
18199         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
18200
18201 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18202
18203         * message.el (message-pop-to-buffer): Add switch-function argument.
18204         (message-mail): Pass switch-function argument to it.
18205
18206 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
18207
18208         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
18209         Improve doc string.
18210
18211 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18212
18213         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
18214         (gnus-header-content):
18215         * gnus-cite.el (gnus-cite-10):
18216         * gnus-srvr.el (gnus-server-closed):
18217         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
18218         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
18219         (gnus-group-mail-3-empty, gnus-group-mail-low)
18220         (gnus-group-mail-low-empty, gnus-splash):
18221         * message.el (message-header-to, message-header-cc)
18222         (message-header-subject, message-header-other, message-header-name)
18223         (message-header-xheader, message-separator, message-cited-text)
18224         (message-mml): Lighten colors of faces used for dark background.
18225
18226 2007-05-24  Simon Josefsson  <simon@josefsson.org>
18227
18228         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
18229         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
18230
18231 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18232
18233         * message.el (message-narrow-to-headers-or-head):
18234         Ignore mail-header-separator in the body.
18235
18236 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18237
18238         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
18239         same as window size.
18240
18241 2007-05-22  Kevin Ryde  <user42@zip.com.au>
18242
18243         * message.el (message-font-lock-keywords): Use message-header-xheader
18244         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
18245         ahead of the anything pattern, to get it recognized.
18246
18247 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18248
18249         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
18250         spam.el loads uses it in the compiled defadvice form.
18251
18252 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
18253
18254         * gnus-sum.el (gnus-articles-to-read)
18255         (gnus-summary-insert-old-articles): Don't truncate group name for
18256         `read-string'.
18257
18258         * gnus-util.el (gnus-limit-string): Delete this function.
18259
18260         * gnus-sum.el (gnus-simplify-subject-fully):
18261         Use `truncate-string-to-width' instead.
18262
18263 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
18264
18265         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
18266         Tell if, on summary exit, the next group has to be selected.
18267         (gnus-summary-exit): Use it.
18268
18269 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
18270
18271         * gnus-art.el (gnus-article-mode): Fix comment about displaying
18272         non-break space.
18273
18274 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18275
18276         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
18277         Check if group is not a directory.
18278         (nnfolder-request-expire-articles): Don't delete articles if the target
18279         group is not available.
18280
18281         * nnml.el (nnml-request-create-group): Properly check if group is not a
18282         file.
18283         (nnml-request-expire-articles): Don't delete articles if the target
18284         group is not available.
18285
18286         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
18287         Don't quote characters that are within parentheses.
18288
18289 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18290
18291         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
18292         (gnus-handle-ephemeral-exit): Select article according to it.
18293
18294 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
18295
18296         * message.el (message-insert-formated-citation-line): Remove newline.
18297         (message-citation-line-format): Add final \n here so that the user can
18298         avoid a blank line.
18299
18300 2007-05-03  Dan Christensen  <jdc@uwo.ca>
18301
18302         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
18303         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
18304         Update lanl/arXiv support.
18305
18306 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
18307
18308         * gnus.el: Bump version number.
18309
18310 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18311
18312         * gnus.el (gnus-version-number): Bump version.
18313
18314 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
18315
18316         * gnus.el: No Gnus v0.6 is released.
18317
18318 2007-04-27  Didier Verna  <didier@xemacs.org>
18319
18320         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
18321         * gmm-utils.el (gmm-regexp-concat): ... here.
18322         * message.el: Don't require 'gnus-util.
18323         (message-dont-reply-to-names): Handle name change above.
18324         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
18325
18326 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18327
18328         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
18329         since the initial value varies according to the system.
18330
18331 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18332
18333         * mm-util.el (mm-charset-synonym-alist): Defcustom.
18334
18335 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
18336
18337         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
18338
18339 2007-04-24  Didier Verna  <didier@xemacs.org>
18340
18341         Improve the type of gnus-ignored-from-addresses.
18342         * gnus-util.el (gnus-orify-regexp): New function.
18343         * message.el (gnus-util): Require it.
18344         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
18345         * gnus-sum.el (gnus-ignored-from-addresses): New function.
18346         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
18347
18348 2007-04-24  Didier Verna  <didier@xemacs.org>
18349
18350         * gnus-sum.el:
18351         * gnus-utils.el: Fix some trailing whitespaces.
18352
18353 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18354
18355         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
18356         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
18357         article's Message-ID; refer parent article in summary buffer.
18358
18359         * message.el (message-bounce): Call mime-to-mml.
18360
18361         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
18362         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
18363         optimize and/or forms properly.
18364
18365 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
18366
18367         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
18368         URL.
18369
18370 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18371
18372         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
18373
18374 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18375
18376         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
18377         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
18378         displayed of multipart/alternative part if it is invoked from summary
18379         buffer.
18380
18381         * mm-view.el (mm-inline-text-html-render-with-w3m)
18382         (mm-inline-text-html-render-with-w3m-standalone)
18383         (mm-inline-render-with-function): Use mail-parse-charset by default.
18384
18385 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
18386
18387         * parse-time.el (parse-time-string-chars): Check if CHAR
18388         is less than the length of parse-time-syntax.
18389
18390 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18391
18392         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
18393         from gnus-newsgroup-processable.
18394
18395 2007-04-16  Didier Verna  <didier@xemacs.org>
18396
18397         * gnus-msg.el (gnus-configure-posting-styles):
18398         Handle message-signature-directory properly with :file syntax.
18399         Reported by "Leo".
18400
18401 2007-04-11  Didier Verna  <didier@xemacs.org>
18402
18403         New user option: message-signature-directory.
18404         * gnus-msg.el (gnus-configure-posting-styles): Support it.
18405         * message.el (message-insert-signature): Ditto.
18406         * message.el (message-signature-file): Doc update.
18407         * message.el (message-signature-directory): New.
18408
18409 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18410
18411         * gnus-msg.el (gnus-inews-yank-articles):
18412         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
18413
18414 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18415
18416         * message.el (message-yank-original): Make sure cited text ends with
18417         newline; don't exchange point and mark.
18418
18419 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
18420
18421         * tls.el (open-tls-stream): Properly handle case where there
18422         is no associated buffer.
18423
18424 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
18425
18426         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
18427         message-yank-original, make sure (< mark TEXT point).
18428
18429 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
18430
18431         * message.el (message-fill-column): New variable.
18432         (message-mode): Use it.  Add comment on a possible new hook.
18433
18434         * nnmail.el (nnmail-spool-file): Mark as obsolete.
18435         (nnmail-get-new-mail): Reformat.
18436
18437         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
18438
18439         * gmm-utils.el: Fix Commentary.
18440         (gmm-tool-bar-from-list): Fix typo in doc string.
18441
18442 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
18443
18444         * message.el (message-yank-original): Don't switch point and mark
18445         unnecessarily to put point and mark as documented.
18446
18447 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18448
18449         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
18450         from the message heads.
18451
18452 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
18453
18454         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
18455         article buffer does not have a window.  This may not be the best
18456         solution but is certainly better than setting the start of the null,
18457         that is the current, window.
18458
18459 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
18460
18461         * gnus-draft.el (gnus-draft-setup-hook): New hook.
18462         (gnus-draft-setup): Run it.
18463
18464         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
18465         gnus-score-fast-scoring.  Allow regexp.
18466         (gnus-score-headers): Use it.
18467
18468         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
18469         XEmacs.
18470
18471         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
18472         string.
18473         (gnus-button-alist): Also catch `<f1> k ...'.
18474         (gnus-treat-display-x-face): Fix doc string.
18475
18476 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18477
18478         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
18479         evaluation of gnus-extended-version to ensure correct generation of the
18480         User-Agent header when message-generate-headers-first is used.
18481
18482 2007-03-24  Simon Josefsson  <simon@josefsson.org>
18483
18484         * hashcash.el (hashcash-generate-payment-async): Don't crash if
18485         hashcash-path is nil.  Don't call callback with incorrect number of
18486         parameters if val is 0.
18487
18488 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18489
18490         * message.el (message-required-news-headers):
18491         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
18492
18493 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
18494
18495         * tls.el (open-tls-stream): In handshake-waiting loop,
18496         don't wait more if there is output available to process.
18497
18498 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
18499
18500         * tls.el (tls-program): Doc fix.
18501
18502 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18503
18504         * message.el (message-generate-new-buffers): Change the meaning of the
18505         nil value; add `standard' to the choices; treat t as `unique'; improve
18506         doc string.
18507         (gnus-select-frame-set-input-focus): Autoload.
18508         (message-buffer-name): Search for the existing message buffer if
18509         message-generate-new-buffers is nil or `standard'; treat the value t of
18510         message-generate-new-buffers as `unique'.
18511         (message-pop-to-buffer): Raise the frame already displaying the message
18512         buffer; clear the echo area after querying.
18513         (message-setup): Pass the `continue' argument to compose-mail.
18514         (message-mail): Prefer `switch-function' if it is given; search for the
18515         existing message buffer if the `continue' argument is non-nil; pass
18516         continue and switch-function arguments to compose-mail by way of
18517         message-setup.
18518         (message-mail-other-window): Adjust argument of message-setup.
18519         (message-mail-other-frame): Ditto.
18520
18521 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18522
18523         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
18524         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
18525         to turn font-lock on when turning gnus-message-citation-mode on.
18526
18527 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
18528
18529         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
18530         (mml-smime-function-alist): New variable; add epg as the backend.
18531         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
18532         mml-smime- functions instead.
18533         * mm-view.el: Require smime.
18534
18535 2007-03-05  Didier Verna  <didier@xemacs.org>
18536
18537         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
18538         instead of just inheritance for posting styles.
18539         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
18540
18541 2007-02-24  Chris Moore  <dooglus@gmail.com>
18542
18543         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
18544         * pgg-pgp.el (pgg-pgp-encrypt-region):
18545         * pgg-gpg.el (pgg-gpg-encrypt-region):
18546         Check pgg-encrypt-for-me if no other recipients.
18547
18548 2007-02-24  John Paul Wallington  <jpw@pobox.com>
18549
18550         * tls.el (tls-certtool-program): Fix custom type.
18551
18552 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18553
18554         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
18555         and point-at-eol instead of line-(beginning|end)-position.
18556
18557         * assistant.el (assistant-parse-buffer): Ditto.
18558
18559         * netrc.el (netrc-parse-services): Ditto.
18560
18561 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
18562
18563         * mml2015.el (mml2015-epg-find-usable-key): New function.
18564         (mml2015-epg-sign): Use it.
18565         (mml2015-epg-encrypt): Use it.
18566
18567 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18568
18569         * message.el (message-make-in-reply-to): Quote name containing
18570         non-ASCII characters.  It will make the RFC2047 encoder cause an error
18571         if there are special characters.  Reported by NAKAJI Hiroyuki
18572         <nakaji@jp.freebsd.org>.
18573
18574 2007-02-27  Didier Verna  <didier@xemacs.org>
18575
18576         Include the group parameters as well as the topic ones in the
18577         inheritance filter process.
18578         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
18579         argument GROUP-PARAMS-LIST.
18580         * gnus-topic.el (gnus-group-topic-parameters): Use it.
18581
18582 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18583
18584         * nntp.el (nntp-never-echoes-commands)
18585         (nntp-open-connection-functions-never-echo-commands): New variables.
18586         (nntp-send-command): Use them.
18587
18588 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
18589
18590         * mml2015.el (mml2015-epg-verify): Simplify.
18591
18592 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18593
18594         * mml.el (mml-content-disposition-alist): New user option.
18595         (mml-content-disposition): New function.
18596         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
18597         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
18598
18599 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
18600
18601         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
18602         verification.
18603
18604 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18605
18606         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
18607         articles posted in the last 24 hours.
18608
18609 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
18610
18611         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
18612
18613 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
18614
18615         * nntp.el (nntp-send-command): Don't wait for echoes when
18616         nntp-open-ssl-stream is used.
18617
18618 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18619
18620         * gnus-cite.el (gnus-test-font-lock-add-keywords)
18621         (gnus-message-add-citation-keywords)
18622         (gnus-message-remove-citation-keywords): Remove.
18623         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
18624         directly, make the variables in font-lock-defaults buffer-local, add
18625         gnus-message-citation-keywords to them and then update the value of
18626         font-lock-keywords.
18627
18628 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18629
18630         * message.el (message-cite-original-1): Don't call
18631         gnus-article-highlight-citation.
18632
18633         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
18634         citations; fix line count.
18635
18636 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18637
18638         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
18639         (gnus-message-add-citation-keywords)
18640         (gnus-message-remove-citation-keywords): Use it; fix the emulating
18641         versions of font-lock-add-keywords and font-lock-remove-keywords to
18642         work with XEmacs correctly.
18643
18644 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18645
18646         * gnus-cite.el (gnus-cite-face-list): Set the values of
18647         gnus-message-max-citation-depth and gnus-message-citation-keywords.
18648         (gnus-message-max-citation-depth): Use defvar rather than defconst.
18649         (gnus-message-cite-prefix-regexp): New variable.
18650         (gnus-message-search-citation-line): Use it; protect against long
18651         citation prefix; fill match data with nil rather than 0 for XEmacs; set
18652         the 0th match data for Emacs.
18653         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
18654         (gnus-message-add-citation-keywords): Append keywords rather than
18655         prepending; emulate font-lock-add-keywords if it is not available.
18656         (gnus-message-remove-citation-keywords):
18657         Emulate font-lock-remove-keywords if it is not available.
18658
18659         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
18660
18661         * message.el (message-cite-prefix-regexp): Set the value of
18662         gnus-message-cite-prefix-regexp.
18663
18664 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18665
18666         * nnweb.el (nnweb-google-parse-1): Update parser.
18667
18668 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
18669
18670         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
18671
18672 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18673
18674         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
18675         regexp.
18676
18677 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18678
18679         * uudecode.el (uudecode-string-to-multibyte): New function emulating
18680         string-to-multibyte.
18681         (uudecode-decode-region-internal): Use it.
18682
18683         * lpath.el: Fbind string-as-multibyte for XEmacs.
18684
18685 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
18686
18687         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
18688         Fix custom choice.
18689
18690         * gnus-art.el (gnus-signature-limit): Fix custom choice.
18691
18692 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
18693
18694         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
18695
18696         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
18697         `write-region' to respect `mm-inhibit-file-name-handlers'.
18698
18699 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
18700
18701         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
18702         Use gnus-home-directory instead of "~/" or "$HOME".
18703
18704 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
18705
18706         * encrypt.el (encrypt-insert-file-contents): Add better prompt
18707         to mention filename.
18708         Add comments at beginning regarding usage.
18709         (encrypt-write-file-contents): Change interactive so a string is
18710         acceptable.  If the file has no associated model, show an error instead
18711         of a nonsense prompt.
18712
18713 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18714
18715         * spam.el (spam-bsfilter-ham-switch): Fix typo.
18716         Thanks to Yoshihiko Yamada for kind notification of this typo.
18717
18718 2007-01-12  Kenichi Handa  <handa@m17n.org>
18719
18720         * uudecode.el (uudecode-decode-region-internal): Make it work in a
18721         multibyte buffer.
18722
18723 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
18724
18725         * gnus-score.el (gnus-score-fast-scoring): New variable.
18726         (gnus-score-headers): Use it.
18727
18728         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
18729
18730         * message.el (message-cite-original-1):
18731         Call gnus-article-highlight-citation if requested.
18732         (message-make-from): Allow name and address as optional arguments.
18733
18734         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
18735
18736         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
18737         bugs to doc string.
18738         (gnus-button-alist): Add mid\\|message-id.
18739         (gnus-button-fetch-group): Extend for use in
18740         `browse-url-browser-function'.
18741         (gnus-button-url-regexp): Try to catch paired parentheses like in
18742         Wikipedia URLs.
18743
18744         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
18745         Suggested by Simon Krahnke <overlord@gmx.li>.
18746
18747 2007-01-13  Romain Francoise  <romain@orebokech.com>
18748
18749         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
18750         Update copyright.
18751
18752 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
18753
18754         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
18755
18756 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18757
18758         * gnus-registry.el (gnus-registry-unfollowed-groups)
18759         (gnus-registry-split-fancy-with-parent): Fix documentation.
18760
18761 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18762
18763         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
18764         from nnweb groups.
18765
18766 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18767
18768         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
18769         Xref urls.  Erase buffer before requesting head.
18770
18771         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
18772
18773 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
18774
18775         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
18776         customizable.
18777
18778 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
18779
18780         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
18781         no signing key is found.
18782         (mml2015-epg-encrypt): Ask user whether to skip or abort if
18783         no encrypting and/or signing key is found.
18784
18785 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
18786
18787         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
18788
18789 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18790
18791         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
18792         headers read from disk with the ones newly found in the current search.
18793         This should no longer cause problems, because the article numbers in
18794         Gmane's `nov.php' output are ignored since the previous change.
18795
18796 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18797
18798         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
18799
18800 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18801
18802         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
18803         replace-regexp-in-string; bind url-version; fbind display-images-p and
18804         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
18805         find-face and set-itimer-function for Emacs; bind itimer-list for
18806         Emacs.
18807
18808         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
18809
18810 2007-01-01  Romain Francoise  <romain@orebokech.com>
18811
18812         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
18813
18814 2006-12-31  Steve Youngs  <steve@sxemacs.org>
18815
18816         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
18817         `define-minor-mode' macro definition expanded properly.
18818         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
18819         exclude it there.
18820
18821         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
18822         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
18823         `fboundp' test.
18824         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
18825         This is OK to autoload in (S)XEmacs now.
18826
18827 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18828
18829         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
18830         keystroke.
18831         (gnus-summary-limit-to-singletons): Fix typo.
18832
18833         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
18834         else fails.
18835
18836 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18837
18838         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
18839         docstring.
18840
18841         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
18842         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
18843         (gnus-summary-insert-dormant-articles): Fix typo in message.
18844
18845 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
18846
18847         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
18848         nil for XEmacs.
18849         (gnus-message-citation-mode): Don't autoload in XEmacs.
18850
18851         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
18852
18853 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
18854
18855         * nnimap.el (nnimap-expunge-search-string):
18856         Mention nnimap-search-uids-not-since-is-evil in docstring.
18857
18858 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
18859
18860         * spam.el: Revert to make-obsolete-variable because
18861         define-obsolete-variable-alias is not supported in Emacs 21.
18862
18863         * spam.el (spam-ifile-path, spam-ifile-database-path)
18864         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
18865         make-obsolete-variable.
18866         (spam-bsfilter-path, spam-bsfilter-program)
18867         (spam-spamassassin-path, spam-spamassassin-program)
18868         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
18869         Don't use "path" inappropriately.
18870         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
18871         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
18872         variable names.
18873
18874 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
18875
18876         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
18877         summary buffer.
18878
18879         * password.el (password-cache-remove): Use clear-string to burn
18880         password, if available.
18881
18882 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
18883
18884         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
18885
18886         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
18887
18888         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
18889         (gnus-message-highlight-citation): Move defcustom here from
18890         gnus-cite.el.
18891         (gnus-message-citation-mode): Autoload.
18892
18893         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
18894         checks to make it compile with XEmacs.
18895         (gnus-message-citation-mode): New minor mode.
18896         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
18897         (gnus-message-highlight-citation): New variables.
18898         (gnus-message-search-citation-line)
18899         (gnus-message-add-citation-keywords)
18900         (gnus-message-remove-citation-keywords)
18901         (turn-on-gnus-message-citation-mode)
18902         (turn-off-gnus-message-citation-mode): New functions.
18903
18904 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
18905
18906         * gnus-cite.el: Enable highlighting of different citation levels in
18907         message-mode.
18908
18909 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
18910
18911         * message.el (message-make-fqdn): Fix comment.
18912         (message-bogus-system-names): Add ".local".
18913
18914         * spam.el (spam-ifile-path, spam-ifile-program)
18915         (spam-ifile-database-path, spam-ifile-database)
18916         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
18917         Don't use "path" inappropriately.
18918         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
18919         strings.
18920         (spam-check-ifile, spam-ifile-register-with-ifile)
18921         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
18922         Use new variable names.
18923
18924         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
18925         (gnus-treat-display-smileys): Simplify using
18926         gnus-image-type-available-p.
18927
18928         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
18929         available.
18930
18931         * gnus-xmas.el (gnus-xmas-image-type-available-p):
18932         Use `display-images-p' if available.
18933
18934 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18935
18936         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
18937         one after turning on the buffer's multibyteness instead of decoding
18938         them directly in the unibyte buffer that causes unexpected conversion
18939         in Emacs 23 (unicode).
18940
18941 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18942
18943         * message.el (message-generate-hashcash): Fix custom type.
18944
18945 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
18946
18947         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
18948
18949 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
18950
18951         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
18952         disconnect icons.  Add help text.
18953
18954 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
18955
18956         * spam.el (spam-extra-header-to-number): CRM114 spam score is
18957         negated to be consistent with the others we handle.
18958
18959 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18960
18961         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
18962         version of gnus-summary-buffer to something, so that we can use two
18963         article buffers at the same time.
18964
18965 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
18966
18967         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
18968         trigger all the extra headers.
18969         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
18970         sorting.
18971
18972 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18973
18974         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
18975         solid groups.
18976
18977 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
18978
18979         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
18980
18981 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
18982
18983         * legacy-gnus-agent.el: Add Copyright notice.
18984
18985 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
18986
18987         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
18988
18989 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18990
18991         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
18992
18993         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
18994         to make it work reliably in CVS Emacs.
18995         (gnus-summary-limit-strange-charsets-predicate)
18996         (gnus-summary-limit-to-predicate): New functions.
18997
18998 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
18999
19000         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
19001         specifying array size.
19002         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
19003         array if it is too small.
19004         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
19005         (gnus-sort-threads-loop): New function.
19006
19007 2006-12-06  Chris Moore  <dooglus@gmail.com>
19008
19009         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
19010         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
19011
19012 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
19013
19014         * mm-url.el (mm-url-predefined-programs): Call curl with correct
19015         options.
19016
19017 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19018
19019         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
19020         DOS-ing the recipient.
19021
19022         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
19023         the headers when creating the mapping to avoid mismappings.
19024         (nnweb-gmane-create-mapping): Always nix out old mapping.
19025
19026 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19027
19028         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
19029         and mm-verify-option to never.
19030
19031 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19032
19033         * message.el (message-signed-or-encrypted-p): New function.
19034         (message-forward-make-body): Use it.
19035
19036         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
19037         Replace encode-coding-string with mm-encode-coding-string.
19038
19039 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
19040
19041         * nneething.el (nneething-decode-file-name):
19042         Replace decode-coding-string with mm-decode-coding-string.
19043
19044         * gnus-int.el (gnus-open-server): Say failed server's name.
19045
19046 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19047
19048         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
19049         strings to a single string.  Quote `errors-file-name'.
19050         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
19051         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
19052         Adjust calls.  Use `shell-quote-argument'.
19053
19054 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
19055
19056         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
19057         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
19058
19059         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
19060         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
19061         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
19062         (gnus-group-make-directory-group, gnus-group-transpose-groups):
19063         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
19064         (gnus-subscribe-newsgroup, gnus-1):
19065         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
19066         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
19067         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
19068         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
19069
19070 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19071
19072         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
19073         keystroke.
19074         (gnus-summary-limit-to-bodies): Implement headersp.
19075
19076 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19077
19078         * dns.el (query-dns): Protect against "Process dns deleted" strings.
19079
19080 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19081
19082         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
19083
19084 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19085
19086         * message.el (message-generate-hashcash): Expand range of values to
19087         include `opportunistic'.
19088         (message-send-mail): Use it.
19089
19090 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19091
19092         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
19093         and comment it.
19094
19095         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
19096
19097 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
19098
19099         * gnus-util.el (gnus-extract-address-components): Improve comment.
19100
19101 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19102
19103         * gnus-util.el (gnus-extract-address-components): Work with address in
19104         which the name portion contains @.
19105
19106         * lpath.el: Fbind custom-autoload.
19107
19108 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
19109
19110         * gnus.el (gnus-start): Move custom group up.
19111         (gnus-select-method): Don't autoload, but make it available for
19112         `customize-variable'.
19113         (gnus-getenv-nntpserver): Don't autoload.
19114
19115 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
19116
19117         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
19118
19119 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
19120
19121         * message.el (message-sendmail-extra-arguments): New variable.
19122         (message-send-mail-with-sendmail): Use it.
19123
19124 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19125
19126         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
19127         mm-with-unibyte-current-buffer to make string unibyte.
19128
19129         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
19130         mm-string-as-multibyte.
19131
19132 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
19133
19134         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
19135         Reported by Werner Koch <wk@gnupg.org>.
19136
19137 2006-11-14  Daiki Ueno  <ueno@p360>
19138
19139         * mml2015.el: Autoload epa-select-keys when compiling.
19140
19141 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
19142
19143         * mml2015.el (mml2015-epg-sign): Save the signing keys in
19144         message-options.
19145         (mml2015-epg-encrypt): Save the recipient keys in message-options.
19146
19147 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
19148
19149         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
19150         EasyPG (< 0.0.6).
19151         (mml2015-always-trust): New user option.
19152         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
19153         prompt.
19154
19155 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19156
19157         * nntp.el (nntp-authinfo-force): New variable.
19158         (nntp-send-authinfo): Use it.
19159
19160 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
19161
19162         * message.el (message-strip-subject-encoded-words): Allow _not_ to
19163         decode encoded words.  Improve prompt.  Add comment about forwarding.
19164         (message-replacement-char): Move up.
19165
19166 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
19167
19168         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
19169         instead of gnus-intersection because arguments of gnus-sorted-nunion
19170         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
19171
19172 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
19173
19174         * message.el (message-strip-subject-encoded-words): Reformat prompt.
19175         (message-simplify-subject-functions):
19176         Enable message-strip-subject-encoded-words by default.
19177
19178 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
19179
19180         * message.el (message-strip-subject-encoded-words): New function.
19181         (message-simplify-subject-functions): New variable.
19182         (message-simplify-subject): Use it.  Fix typo in doc string.
19183         Support message-strip-subject-encoded-words.
19184
19185 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
19186
19187         * gnus-diary.el (gnus-diary-delay-format-function):
19188         * nndiary.el (nndiary-reminders):
19189         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
19190
19191 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
19192
19193         * gnus-art.el (article-hide-boring-headers): Fetch date from
19194         gnus-original-article-buffer to avoid problems with localized date
19195         strings.
19196
19197 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19198
19199         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
19200
19201 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
19202
19203         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
19204         New variables.
19205         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
19206         (mm-charset-synonym-alist): Move some entries to
19207         mm-codepage-iso-8859-list.
19208         (mm-charset-synonym-alist, mm-charset-override-alist):
19209         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
19210
19211 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
19212
19213         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
19214
19215 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
19216
19217         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
19218         with Emacs 21 and XEmacs.
19219
19220 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
19221
19222         * spam.el (spam-parse-address): New function for better parsing,
19223         catching errors, etc.
19224         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
19225
19226 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
19227
19228         * mm-view.el: Add interactive arg to html2text autoload.
19229
19230 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19231
19232         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
19233
19234 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
19235
19236         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
19237         New variables.
19238         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
19239         (mm-charset-synonym-alist): Move some entries to
19240         mm-codepage-iso-8859-list.
19241
19242         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
19243
19244 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
19245
19246         * message.el (message-citation-line-format)
19247         (message-insert-formated-citation-line): Fix implementation of %E, %N
19248         and %n according to the doc string.
19249
19250 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
19251
19252         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
19253         Use car-safe to avoid bad parses.
19254
19255 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19256
19257         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
19258         names.
19259
19260         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
19261
19262 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19263
19264         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
19265         header.
19266
19267         * message.el (message-draft-headers): Add Date.
19268         (message-headers-to-generate): Fix typo in docstring.
19269
19270         * nndraft.el (nndraft-required-headers): New variable.
19271         (nndraft-generate-headers): Use it.
19272
19273         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
19274
19275 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
19276
19277         * gnus-registry.el (gnus-registry-wash-for-keywords)
19278         (gnus-registry-find-keywords): New functions to allow easy searching of
19279         articles that are in the registry.
19280
19281 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
19282
19283         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
19284         Use ietf-drums-parse-address instead of gnus-extract-address-components.
19285         Reported by Damien Elmes <damien@repose.cx>.
19286
19287 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
19288
19289         * gnus.el (gnus-mime): Remove unused custom group.
19290
19291 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19292
19293         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
19294         "blank line" when searching for end of armor headers.
19295
19296 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
19297
19298         * gmm-utils.el (gmm-write-region): Fix variable name.
19299
19300 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
19301
19302         * gmm-utils.el (gmm-write-region): New function based on compatibility
19303         code from `mm-make-temp-file'.
19304
19305         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
19306
19307         * nnmaildir.el (nnmaildir--update-nov)
19308         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
19309         Use `gmm-write-region'.
19310
19311 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
19312
19313         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
19314         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
19315
19316         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
19317
19318         * message.el (message-replacement-char): New variable.
19319         (message-fix-before-sending): Use it.
19320         (message-simplify-subject): New function to remove duplicate code.
19321         (message-reply, message-followup): Use it.
19322
19323         * gnus-sum.el (gnus-summary-make-menu-bar):
19324         Clarify gnus-summary-limit-to-articles.
19325
19326 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19327
19328         * gnus-util.el (gnus-with-local-quit): New macro.
19329
19330         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
19331
19332 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
19333
19334         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
19335         ignore non-string data.
19336
19337 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
19338
19339         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
19340         non-string data (needs to be done in the registry too).
19341
19342 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
19343
19344         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
19345         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
19346         (gnus-registry-split-fancy-with-parent)
19347         (gnus-registry-fetch-simplified-message-subject-fast)
19348         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
19349         Remove text properties on ingress into the registry and when it's saved.
19350         (gnus-registry-clean-empty-function): Fix bug with cleaning the
19351         registry from entries with no groups.
19352
19353 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
19354
19355         * gnus-util.el (gnus-string-remove-all-properties): Add utility
19356         function to remove string properties.
19357
19358 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
19359
19360         * gmm-utils.el (gmm): Adjust custom version.
19361
19362         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
19363         Adjust custom version.
19364
19365         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
19366
19367 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
19368
19369         * gnus-art.el (gnus-insert-prev-page-button)
19370         (gnus-insert-next-page-button): Simplify.  Reformat.
19371
19372 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
19373
19374         * gnus-art.el (gnus-insert-prev-page-button)
19375         (gnus-insert-next-page-button): Apply gnus-article-button-face.
19376
19377 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
19378
19379         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
19380
19381 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
19382
19383         * gnus-art.el (gnus-insert-mime-button)
19384         (gnus-insert-mime-security-button):
19385         Apply gnus-article-button-face to MIME and security buttons.
19386
19387 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
19388
19389         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
19390         readable.
19391
19392 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19393
19394         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
19395
19396 2006-09-20  Steve Youngs  <steve@sxemacs.org>
19397
19398         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
19399         `browse-url-of-file' instead of `browse-url'.
19400
19401 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19402
19403         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
19404         regexp.  Articles containing quotation were cut prematurely.
19405
19406 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19407
19408         * message.el (message-cite-original-1): Use nobody by default for the
19409         value of From header.
19410         (message-reply): Ditto.
19411
19412 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
19413
19414         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
19415         to the gnus-info.  This fixes a bug of inline-PGP message verification.
19416         Reported by Michael Piotrowski <mxp@dynalabs.de>.
19417
19418 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
19419
19420         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
19421         mails in the doc string.  Add some URLs in comment.
19422         (pop3-movemail): Warn about pop3-leave-mail-on-server.
19423
19424 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19425
19426         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
19427         backslashes handling and the way to find boundaries of quoted strings.
19428
19429 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
19430
19431         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
19432         mml1991-encrypt-to-self is set and mml1991-signers is not set.
19433         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
19434         mml2015-encrypt-to-self is set and mml2015-signers is not set.
19435
19436 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
19437
19438         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
19439         doc string.
19440         (gnus-button-regexp, gnus-button-last): Remove unused variables.
19441
19442 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19443
19444         * lpath.el: Fbind epg-check-configuration.
19445
19446 2006-09-06  Simon Josefsson  <jas@extundo.com>
19447
19448         * mml2015.el (mml2015-use): Doc fix, mention epg.
19449
19450 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
19451
19452         * mml2015.el (mml2015-use): Default to epg, if available.
19453
19454 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
19455
19456         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
19457         message-sender.
19458         (mml1991-epg-encrypt): Ditto.
19459         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
19460         message-sender.
19461         (mml2015-epg-encrypt): Ditto.
19462
19463 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
19464
19465         * message.el (message-send-mail-with-sendmail): Look for sendmail in
19466         several common directories.
19467
19468 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
19469
19470         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
19471         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
19472
19473 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19474
19475         * gnus-art.el (article-decode-encoded-words): Make it fast.
19476
19477 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19478
19479         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
19480
19481         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
19482         in quoted string into `\'.
19483
19484 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19485
19486         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
19487         Use standard-syntax-table.
19488
19489 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19490
19491         * gnus-art.el (gnus-decode-address-function): New variable.
19492         (article-decode-encoded-words): Use it to decode headers which are
19493         assumed to contain addresses.
19494         (gnus-mime-delete-part): Remove useless `or'.
19495
19496         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
19497         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
19498         (gnus-nov-parse-line): Use it to decode From header.
19499         (gnus-get-newsgroup-headers): Ditto.
19500         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
19501
19502         * mail-parse.el (mail-decode-encoded-address-region): New alias.
19503         (mail-decode-encoded-address-string): New alias.
19504
19505         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
19506         New function.
19507         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
19508         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
19509         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
19510         (rfc2047-decode-string): Ditto.
19511         (rfc2047-decode-address-region): New function.
19512         (rfc2047-decode-address-string): New function.
19513
19514 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
19515
19516         * message.el (message-caesar-buffer-body): Allow rotating headers.
19517
19518         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
19519
19520         * message.el (message-insert-formated-citation-line): Fix %f.
19521         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
19522
19523 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
19524
19525         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
19526         (gnus-bookmark-mouse-available-p): New macro.
19527         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
19528         (gnus-bookmark-bmenu-show-infos): Use it.
19529         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
19530         (gnus-bookmark-bmenu-hide-infos): Ditto.
19531         (gnus-bookmark-remove-properties): New function.
19532         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
19533         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
19534         (gnus-bookmark-write-file): Bind coding-system-for-write.
19535         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
19536         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
19537         group before selecting it.
19538         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
19539         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
19540         quit-window if it is not available; use gnus-mouse-2 and bind it to
19541         gnus-bookmark-bmenu-select-by-mouse.
19542         (gnus-bookmark-show-details): Remove unused variable `details-list'.
19543         (gnus-bookmark-bmenu-select-by-mouse): New function.
19544
19545 2006-08-13  Romain Francoise  <romain@orebokech.com>
19546
19547         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
19548         space.
19549
19550 2006-08-10  Romain Francoise  <romain@orebokech.com>
19551
19552         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
19553         (dns-mode-soa-auto-increment-serial): New user option.
19554         (dns-mode-soa-maybe-increment-serial): New function.
19555         (dns-mode): Add the latter to `write-contents-functions'.
19556
19557 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19558
19559         * compface.el (uncompface): Use binary rather than raw-text-unix.
19560
19561 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19562
19563         * compface.el (uncompface): Make sure the eol conversion doesn't take
19564         place when communicating with the external programs.
19565         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
19566
19567 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19568
19569         * nnheader.el (nnheader-insert-head): Fix typo in comment.
19570
19571 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19572
19573         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
19574         Make it more robust by parsing author and date independently.
19575
19576 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19577
19578         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
19579
19580 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
19581
19582         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
19583         first matching secret key.
19584         (mml2015-epg-encrypt): Ditto.
19585
19586         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
19587         first matching secret key.
19588         (mml1991-epg-encrypt): Ditto.
19589
19590         * mml2015.el (mml2015-encrypt-to-self): New user option.
19591         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
19592         mml2015-epg-encrypt-to-self is set.
19593
19594         * mml1991.el (mml1991-encrypt-to-self): New variable.
19595         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
19596         mml1991-epg-encrypt-to-self is set.
19597
19598         * mml2015.el (mml2015-signers): New user option.
19599         (mml2015-epg-sign): Reflect the value of mml2015-signers.
19600         (mml2015-epg-encrypt): Allow to select signing keys.
19601
19602         * mml1991.el (mml1991-signers): New variable.
19603         (mml1991-epg-sign): Reflect the value of mml1991-signers.
19604         (mml1991-epg-encrypt): Allow to select signing keys.
19605
19606 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19607
19608         * nnheader.el (nnheader-insert-head): Make it work even if the file
19609         uses CRLF for the line-break code.
19610
19611 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
19612
19613         * mml2015.el: Require mml-sec instead of password.
19614         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
19615         (mml2015-cache-passphrase): Inherit the default value from
19616         mml-secure-cache-passphrase.
19617         (mml2015-passphrase-cache-expiry): Inherit the default value from
19618         mml-secure-passphrase-cache-expiry.
19619
19620         * mml1991.el: Require mml-sec instead of password.
19621         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
19622         (mml1991-cache-passphrase): Inherit the default value from
19623         mml-secure-cache-passphrase.
19624         (mml1991-passphrase-cache-expiry): Inherit the default value from
19625         mml-secure-passphrase-cache-expiry.
19626
19627         * mml-sec.el: Require password.
19628         (mml-secure-verbose): New user option.
19629         (mml-secure-cache-passphrase): New user option.
19630         (mml-secure-passphrase-cache-expiry): New user option.
19631
19632 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
19633             Andreas Vögele  <andreas@altroot.de>   (tiny change)
19634
19635         * pgg-def.el (pgg-truncate-key-identifier):
19636         Truncate the key ID to 8 letters from the end.
19637
19638 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19639
19640         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
19641         workaround for the url package included with Emacs.
19642
19643         * nnweb.el (nnweb-google-create-mapping): Update regexp.
19644
19645 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19646
19647         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
19648         correctly.  This fixes a bug caused by the 2006-05-12 change.
19649
19650 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
19651
19652         * nnmail.el (nnmail-article-group): If splitting raises an error, give
19653         some information about the error when saying that the `bogus' mail
19654         group will be used.
19655
19656 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
19657
19658         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
19659         string.
19660
19661 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
19662
19663         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
19664
19665 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19666
19667         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
19668
19669 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
19670
19671         * mml1991.el (mml1991-function-alist): Add epg.
19672         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
19673         (mml1991-epg-encrypt): New functions.
19674
19675 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
19676
19677         * mml2015.el (mml2015-verbose): New variable.
19678         (mml2015-cache-passphrase): Ditto.
19679         (mml2015-passphrase-cache-expiry): Ditto.
19680         (mml2015-function-alist): Add epg.
19681         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
19682         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
19683         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
19684         New functions.
19685
19686 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19687
19688         * message.el (message-cite-original-1): Preserve region when removing
19689         quoted text due to X-No-Archive in order to avoid bogus attribution
19690         when citing multiple messages.
19691
19692 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19693
19694         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
19695         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
19696
19697 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
19698
19699         * gnus-diary.el (gnus-user-format-function-d)
19700         (gnus-user-format-function-D): Autoload.
19701
19702         * imap.el (Commentary): Fix typo.
19703
19704         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
19705         2006-04-22 contribution.
19706
19707 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19708
19709         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
19710         It didn't really fix the bogosity I'm seeing with solid web groups.
19711
19712 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19713
19714         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
19715         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
19716         created using server names.  If we use the feature without declaring
19717         it, Gnus does not properly manage server and group state.
19718
19719         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
19720         bound.
19721
19722 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19723
19724         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
19725         looking up the method using GROUP's prefix before inventing a new one.
19726         It is used on killed/unknown groups in various places where returning
19727         an all-new method isn't expected by the caller.
19728
19729         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
19730         and match semantics of gnus-group-real-prefix.
19731
19732 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
19733
19734         * nnmail.el (nnmail-broken-references-mailers): New variable.
19735         (nnmail-ignore-broken-references): New function generalizing
19736         nnmail-fix-eudora-headers.
19737         (nnmail-fix-eudora-headers): Now obsolete.
19738
19739         * gnus-art.el (gnus-button-handle-custom):
19740         Support `customize-apropos*'.
19741
19742 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19743
19744         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
19745
19746         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
19747         articles.
19748
19749 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
19750
19751         * message.el (message-cite-reply-above): New variable.
19752         (message-yank-original): Use it.
19753
19754 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19755
19756         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
19757
19758 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
19759
19760         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
19761         as read.
19762
19763         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
19764
19765 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
19766
19767         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
19768         (gnus-bookmark-default-file): Use gnus-directory.
19769         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
19770         Remove "*" in doc string.
19771         (gnus-bookmark-write-file): Simplify.
19772         (gnus-bookmark-maybe-sort-alist): Use `when'.
19773         (gnus-bookmark-get-bookmark): Fix typo in doc string.
19774         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
19775         Add FIXME about Emacs 21 and XEmacs compatibility.
19776         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
19777         compatibility.
19778         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
19779         compatibility.
19780         (gnus-bookmark-menu-heading): Fix version.
19781
19782 2006-06-19  Bastien Guerry  <bzg@altern.org>
19783
19784         * gnus-bookmark.el: New file.
19785
19786 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19787
19788         * message.el (message-syntax-checks): Doc fix.
19789
19790 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19791
19792         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
19793         unsubscribed groups as if they were killed ones.  It causes duplicate
19794         entries in gnus-newsrc-alist.
19795
19796 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19797
19798         * message.el (message-syntax-checks): Doc fix.
19799         (message-send-mail): Add check for continuation headers.
19800         (message-check-news-header-syntax): Fix regexp used to check for
19801         continuation headers.
19802
19803 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19804
19805         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
19806
19807 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
19808
19809         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
19810
19811 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
19812
19813         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
19814         default-truncate-lines.
19815
19816 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19817
19818         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
19819         to fill the utf-8 entry.
19820
19821         * lpath.el: Fbind unicode-precedence-list.
19822
19823 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19824
19825         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
19826
19827 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
19828
19829         * gnus-agent.el (directory-files-and-attributes): Move all the way
19830         forward (the third and final move).
19831         (gnus-agent-read-agentview): Trap reconstruction errors due to
19832         nonexistent directory.  Handle by returning nil.
19833
19834 2006-05-30  Didier Verna  <didier@xemacs.org>
19835
19836         * message.el (message-dont-reply-to-names): Update the custom type.
19837         * message.el (message-dont-reply-to-names): New defsubst: potentially
19838         convert a list of regexps into a single one.
19839         * message.el (message-get-reply-headers): Use it.
19840         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
19841
19842 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19843
19844         * gnus-agent.el (directory-files-and-attributes): Move forward.
19845
19846 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
19847
19848         * gnus-ml.el (gnus-mailing-list-subscribe)
19849         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
19850         (gnus-mailing-list-message): Fix doc strings.
19851
19852 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19853
19854         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
19855         of doing it manually.
19856
19857 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
19858
19859         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
19860         comment.
19861
19862 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
19863
19864         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
19865         (gnus-agent-read-agentview): Fix handling of end-of-file error.
19866         (gnus-agent-read-local): All symbols allocated in my-obarray.
19867         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
19868         (gnus-agent-regenerate-group): Check numeric names to see if they are
19869         messages or groups.
19870         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
19871         better way of do this...)
19872
19873         * gnus-cache.el (gnus-agent-total-fetched-for):
19874         Ignore 'dummy.group' (there should be a better way of do this...)
19875
19876 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
19877
19878         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
19879         (gnus-saved-headers): Ditto.
19880         (gnus-default-article-saver): Mention functions may have properties.
19881         (gnus-article-save): Override gnus-save-all-headers and
19882         gnus-saved-headers by :headers property which saver function may have.
19883         (gnus-summary-save-in-file): Add :headers property.
19884         (gnus-summary-write-to-file): Ditto.
19885
19886         * gnus-sum.el (gnus-summary-save-article): Bind
19887         gnus-prompt-before-saving to t when saving many articles in a file;
19888         always show all headers.
19889
19890         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
19891
19892 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
19893
19894         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
19895         marks.
19896
19897         * message.el (message-indent-citation): Add optional arguments to allow
19898         using it outside of message buffers.
19899
19900         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
19901         (gnus-article-treat-unfold-headers): Use it.
19902         (gnus-article-truncate-lines): New variable.
19903         (gnus-article-mode): Use it.
19904         (gnus-article-toggle-truncate-lines): New function.
19905
19906         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
19907         Add gnus-article-toggle-truncate-lines.
19908
19909         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
19910         coding system in XEmacs, use binary.
19911
19912 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19913
19914         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
19915         after-load-alist.
19916
19917         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
19918         this function should save decoded articles.
19919         (gnus-summary-write-to-file): Use property to specify this function
19920         should save decoded articles and specify gnus-summary-save-in-file
19921         should be used to save articles other than the first one when saving
19922         many articles.
19923         (gnus-summary-save-body-in-file): Use property to specify this
19924         function should save decoded articles.
19925         (gnus-summary-write-body-to-file): Use property to specify this
19926         function should save decoded articles and specify
19927         gnus-summary-save-body-in-file should be used to save articles other
19928         than the first one when saving many articles.
19929
19930         * gnus-sum.el (gnus-summary-save-article): Simplify.
19931
19932 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19933
19934         * gnus-art.el (gnus-default-article-saver):
19935         Add gnus-summary-write-body-to-file.
19936         (gnus-article-save-coding-system): Don't use coding system object
19937         in XEmacs.
19938         (gnus-read-save-file-name): Add optional `dir-var' argument which
19939         specifies directory in which files are saved; work even if optional
19940         `variable' argument is not specified.
19941         (gnus-summary-write-to-file): Read file name.
19942         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
19943         (gnus-summary-write-body-to-file): New function.
19944
19945         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
19946         (gnus-summary-local-variables): Add it.
19947         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
19948         (gnus-summary-save-article): Remove optional `decode' argument;
19949         determine whether to decode articles by the value of
19950         gnus-default-article-saver; when saving many files using
19951         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
19952         it first and use gnus-summary-save-in-file or
19953         gnus-summary-save-body-in-file thereafter unless
19954         gnus-prompt-before-saving is always; move point to article which
19955         will be saved.
19956         (gnus-summary-save-article-file): Revert.
19957         (gnus-summary-write-article-file): Revert.
19958         (gnus-summary-save-article-body-file): Revert.
19959         (gnus-summary-write-article-body-file): New function.
19960
19961 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19962
19963         * gnus-art.el (gnus-default-article-saver): Doc fix.
19964         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
19965         from gnus-summary-save-article-coding-system, and default to a
19966         certain coding system.
19967         (gnus-output-to-file): Add coding cookie and encode text according
19968         to gnus-article-save-coding-system; don't use mm-append-to-file.
19969
19970         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
19971         gnus-art.el and rename to gnus-article-save-coding-system.
19972         (gnus-summary-save-article): Require gnus-art; don't show all
19973         headers if it decodes articles; don't add coding cookie here;
19974         don't bind mm-text-coding-system-for-write.
19975         (gnus-summary-save-article-file): Save decoded articles.
19976         (gnus-summary-write-article-file): When saving many files, use
19977         gnus-summary-write-to-file first and gnus-summary-save-in-file
19978         thereafter unless gnus-prompt-before-saving is always.
19979         (gnus-summary-save-article-body-file): Save decoded articles.
19980
19981         * lpath.el: Fbind select-safe-coding-system for XEmacs.
19982
19983 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
19984
19985         * nnrss.el (nnrss-check-group): Bind hash-index.
19986
19987 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
19988
19989         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
19990         its hash index.  Store this hash in `nnrss-group-data'.
19991         (nnrss-read-group-data): Update accordingly.
19992
19993 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
19994
19995         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
19996         entry.
19997
19998         * gnus-sum.el (gnus-summary-make-menu-bar):
19999         Add gnus-article-browse-html-article.
20000
20001 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
20002
20003         * gnus-sum.el (gnus-summary-mime-map):
20004         Add gnus-article-browse-html-article.
20005
20006         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
20007
20008 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
20009
20010         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
20011         suitable coding systems in customize.
20012
20013 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
20014
20015         * mail-source.el (mail-sources): Fix custom type.
20016
20017 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
20018
20019         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
20020         (gnus-summary-expire-articles-now): Shorten prompt.
20021
20022         * gmm-utils.el (wid-edit): Require.
20023         (defun-gmm): Rename from `gmm-defun-compat'.
20024         (gmm-image-search-load-path): Use it.
20025         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
20026
20027 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20028
20029         * gnus-sum.el (gnus-summary-save-article-coding-system):
20030         New variable.
20031         (gnus-summary-save-article): Add optional `decode' argument.
20032         If it is set and gnus-summary-save-article-coding-system is non-nil,
20033         save decoded article.
20034         (gnus-summary-write-article-file): Save decoded article if
20035         gnus-summary-save-article-coding-system is non-nil.
20036
20037         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
20038         type.
20039
20040 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20041
20042         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
20043
20044 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20045
20046         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
20047         first to test gnus-single-article-buffer which may be buffer-local.
20048
20049         * gnus-sum.el (gnus-summary-setup-buffer):
20050         Make gnus-single-article-buffer buffer-local and nil in ephemeral
20051         group; make gnus-article-buffer, gnus-article-current, and
20052         gnus-original-article-buffer always buffer-local.
20053         (gnus-summary-exit): Kill article buffer belonging to ephemeral
20054         group.
20055         (gnus-handle-ephemeral-exit): Don't move to next summary line.
20056
20057 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
20058
20059         * nnml.el (nnml-request-compact-group): Compressed files might not
20060         have .gz extension.
20061
20062 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20063
20064         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
20065         (mm-copy-to-buffer): Use with-current-buffer.
20066         (mm-display-part): Simplify.
20067         (mm-inlinable-p): Add optional arg `type'.
20068
20069 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20070
20071         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
20072         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
20073         Try harder to show the attachment internally or externally using
20074         gnus-mime-view-part-as-type.
20075
20076 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
20077
20078         * message.el (message-from-style, message-signature-separator)
20079         (message-user-organization-file, message-send-mail-function)
20080         (message-citation-line-function, message-yank-prefix)
20081         (message-indent-citation-function, message-signature)
20082         (message-signature-file, message-signature-insert-empty-line):
20083         Remove autoloads.
20084
20085         * gnus-art.el (gnus-buttonized-mime-types):
20086         Remove "multipart/signed".  Revert 2006-04-26 change.
20087
20088 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20089
20090         * gnus.el (gnus-version-number): Bump version.
20091
20092 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
20093
20094         * gnus.el: No Gnus v0.5 is released.
20095
20096 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20097
20098         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
20099         fetching articles by message-id.
20100
20101 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20102
20103         * message.el (hashcash): Require hashcash as normal.
20104
20105         * ecomplete.el (ecomplete-highlight-match-line):
20106         Use point-at-eol.
20107         (ecomplete-highlight-match-line): Use `highlight', because that
20108         face exists in both Emacs and XEmacs.
20109
20110         * message.el (message-display-abbrev): Use point-at-bol.
20111
20112         * mail-source.el: Don't require timer/timer-funcs.
20113
20114         * gnus-async.el: Ditto.
20115
20116         * password.el: Ditto.
20117
20118         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
20119
20120         * mm-url.el: Ditto.
20121
20122         * gnus-xmas.el: Don't require timer-funcs.
20123
20124         * mm-util.el: Require timer/timer-funcs.
20125
20126 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20127
20128         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
20129         Close.
20130
20131 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20132
20133         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
20134         unibyte after clear-decrypt function runs.
20135
20136         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
20137         returns as a unibyte string.
20138
20139 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20140
20141         * lpath.el: Revert.
20142
20143         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
20144         (pgg-gpg-process-sentinel): Revert.
20145
20146         * pgg-pgp.el (pgg-pgp-process-region): Revert.
20147         (pgg-pgp-lookup-key): Revert.
20148
20149         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
20150         (pgg-pgp5-lookup-key): Revert.
20151
20152         * pgg.el (pgg-fetch-key): Revert.
20153
20154 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20155
20156         * lpath.el: Fbind string-as-multibyte for XEmacs.
20157
20158         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
20159         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
20160         (mml1991-pgg-encrypt): Ditto.
20161
20162         * pgg-gpg.el (pgg-string-to-multibyte): New function.
20163         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
20164         a multibyte buffer.
20165
20166         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
20167         (pgg-pgp-lookup-key): Ditto.
20168
20169         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
20170         (pgg-pgp5-lookup-key): Ditto.
20171
20172         * pgg.el (pgg-fetch-key): Ditto.
20173
20174 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
20175
20176         * message.el (message-user-organization-file): Check several
20177         locations of the organization file.
20178
20179         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
20180         Add gnus-article-view-part-as-type.
20181
20182         * gnus-art.el (gnus-article-view-part-as-type): New function.
20183
20184         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
20185         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
20186
20187         * mml.el: Simplify autoload.
20188         (mml-mode): defvar dnd-protocol-alist instead of using
20189         symbol-value.
20190         (mml-default-directory): New variable.
20191         (mml-minibuffer-read-file): Use it.
20192         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
20193
20194         * message.el (message-citation-line-format): New variable.
20195         (message-insert-formated-citation-line): New function.
20196         (message-citation-line-function):
20197         Add `message-insert-formated-citation-line' to custom type.
20198
20199         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
20200         to doc string.
20201
20202         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
20203         depending on mm-verify-option.
20204
20205 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20206
20207         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
20208         binding pgg-* variables; reimplement the section which prevents
20209         MIME header from being signed.
20210         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
20211         pgg-text-mode; remove a blank line at the top of body.
20212
20213         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
20214         lines at the top of body; use gnus-newsgroup-charset if there's no
20215         Charset header.
20216
20217 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20218
20219         * message.el (message-self-insert-commands): Doc fix.
20220
20221         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
20222         (mm-uu-pgp-encrypted-test): Ditto.
20223         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
20224         between header and body; return application/pgp-encrypted handle
20225         if decryption failed; decode decrypted body by charset.
20226
20227         * mm-decode.el (mm-automatic-display): Don't make application/pgp
20228         element match to application/pgp-*.
20229
20230 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20231
20232         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
20233         HTML.
20234
20235 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20236
20237         * mail-source.el (mail-source-call-script): Message the error
20238         string.
20239
20240 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20241
20242         * gnus-util.el (gnus-byte-compile): Use it.
20243
20244 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
20245
20246         * gnus-util.el (kill-empty-logs): New function.
20247
20248 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20249
20250         * message.el (message-mail-alias-type): Doc fix.
20251         (message-mail-alias-type-p): New function.
20252         (message-send): Use it.
20253         (message-mode): Ditto.
20254         (message-strip-forbidden-properties): Ditto.
20255
20256         * ecomplete.el (ecomplete-database-file-coding-system):
20257         New variable.
20258         (ecomplete-save): Use it.
20259         (ecomplete-setup): Use it.
20260
20261 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20262
20263         * message.el (message-self-insert-commands): New variable.
20264         (message-strip-forbidden-properties): Use it.
20265
20266 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20267
20268         * message.el (message-put-addresses-in-ecomplete): Use a regexp
20269         that doesn't make XEmacs choke.
20270
20271 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
20272
20273         * gnus-util.el (gnus-replace-in-string):
20274         Prefer replace-regexp-in-string over of replace-in-string.
20275
20276 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
20277
20278         * gnus-util.el (gnus-select-frame-set-input-focus):
20279         Use select-frame-set-input-focus if it is available in XEmacs; use
20280         definition defined in Emacs 22 for old Emacsen.
20281
20282         * dgnushack.el: Autoload unmorse-region for XEmacs.
20283
20284         * lpath.el: Bind cursor-in-non-selected-windows and
20285         select-frame-set-input-focus for XEmacs.
20286
20287 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
20288
20289         * mm-view.el (mm-inline-text): Use equal instead of equalp.
20290
20291 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
20292
20293         * gnus-registry.el (gnus-registry-cache-save): Remove text
20294         properties when saving via the temp buffer.
20295
20296 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
20297
20298         * message.el (message-generate-hashcash): Honor custom type.
20299
20300 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20301
20302         * message.el (message-generate-hashcash): Default to non-nil when
20303         hashcash is found.
20304
20305         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
20306         (gnus-refer-thread-limit): Increase default to 500.
20307
20308         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
20309
20310         * flow-fill.el (fill-flowed): Allow delete-space.
20311
20312 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
20313
20314         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
20315         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
20316         Remove autoloads.
20317
20318 2006-04-18  Simon Josefsson  <jas@extundo.com>
20319
20320         * message.el (message-generate-hashcash): Default to.
20321
20322 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
20323
20324         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
20325         concatenating segments rather than before concatenating them.
20326
20327 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
20328
20329         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
20330
20331 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20332
20333         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
20334
20335         * message.el (message-forward-make-body-plain):
20336         Allow message-forward-ignored-headers to be a list.
20337         (message-remove-ignored-headers): Factor out into function.
20338         (message-forward-make-body-mml): Use it.
20339
20340         * imap.el (imap-quote-specials): New function.
20341         (imap-login-auth): Quote specials.
20342
20343         * rfc2231.el (rfc2231-parse-string): Remove dead code.
20344         (rfc2231-parse-string): Allow concatanation of parameters that
20345         aren't contiguous.  The test case is
20346           (mail-header-parse-content-type "message/external-body;
20347             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
20348             access-type=LOCAL-FILE;
20349             name*1*=plugh%2fhello-sailor%2fbing.pdf")
20350
20351 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20352
20353         * nntp.el (nntp-accept-process-output): Return the value of
20354         `nnheader-accept-process-output'.
20355
20356 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20357
20358         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
20359         (gnus-button-alist): Recognize more diff formats.
20360         (gnus-button-patch): Strip directory.
20361
20362 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
20363
20364         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
20365         Emacs 22 when setting focus.
20366
20367 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20368
20369         * gnus-art.el (gnus-article-treat-types): Do treatment of
20370         text/x-verbatim parts.
20371         (gnus-button-patch): New command.
20372
20373         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
20374         addresses that contain invalid characters.
20375
20376 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20377
20378         * message.el (message-put-addresses-in-ecomplete):
20379         Use gnus-replace-in-string.
20380         (message-is-yours-p): Use the more correct
20381         mail-header-parse-address instead of
20382         mail-extract-address-components.
20383         (message-put-addresses-in-ecomplete): Fix typo.
20384
20385         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
20386         keystroke.
20387
20388         * gnus-art.el (gnus-treatment-function-alist): Change order of
20389         newsgroups/generic header folding to avoid double-folding.
20390
20391         * message.el (message-hidden-headers): Add X-Draft-From.
20392
20393         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
20394         New command.
20395         (gnus-summary-repeat-search-article-backward): New command.
20396
20397         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
20398         groups in the parent topic.
20399
20400 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
20401
20402         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
20403         (spam-extra-header-to-number): Return the CRM114 number as a
20404         number instead of a string.
20405
20406 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20407
20408         * gnus-art.el (gnus-face-properties-alist): Move here from
20409         gnus-fun.
20410
20411         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
20412
20413 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20414
20415         * message.el (message-strip-forbidden-properties): Only display on
20416         self-insert-command.
20417
20418         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
20419         reindent.
20420         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
20421
20422 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
20423
20424         * smiley.el (smiley-style): Fix typo.
20425
20426 2006-03-23  Kenichi Handa  <handa@m17n.org>
20427
20428         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
20429         instead of set-buffer-multibyte.
20430
20431 2006-03-23  Kenichi Handa  <handa@m17n.org>
20432
20433         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
20434         buffer and then decode the buffer text if necessary.
20435         (rfc2231-encode-string): Be sure to work on multibyte buffer at
20436         first, and after mm-encode-body, change the buffer to unibyte.
20437
20438 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20439
20440         * hashcash.el (hashcash-insert-payment-async-2):
20441         Use message-goto-eoh instead of doing it manually.
20442         (mail-add-payment): Use message-narrow-to-header instead of trying
20443         to do the same itself.
20444
20445         * message.el (message-hidden-headers): Add Face.
20446
20447         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
20448         reparenting code.
20449         (gnus-summary-reparent-children): Refactored out code.
20450         (gnus-summary-thread-map): New keystroke.
20451         (gnus-summary-reparent-children): Make into command.
20452
20453         * smiley.el (smiley-style): Default to `medium' if using a large
20454         font.
20455
20456         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
20457         does it itself.
20458
20459         * message.el (message-point-in-header-p): Simplify definition.
20460
20461 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20462
20463         * nnagent.el (nnagent-request-set-mark): Silence log file
20464         writing.
20465         (nnagent-request-set-mark): Use write-region instead of
20466         append-to-file.
20467
20468         * gnus-sum.el (gnus-read-header): Fudge article number if using a
20469         strange select method.
20470
20471         * ecomplete.el (ecomplete-display-matches): Get highlightling
20472         right.
20473         (ecomplete-display-matches): Use literals.
20474         (ecomplete-display-matches): Disable message logging.
20475
20476         * message.el (message-display-abbrev): Small optimization.
20477
20478         * ecomplete.el (ecomplete-display-matches): Allow automatic
20479         display.
20480
20481         * message.el (message-strip-forbidden-properties):
20482         Display abbrevs.
20483         (message-display-abbrev): Get automatic display right.
20484
20485         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
20486         keystrokes.
20487
20488 2006-04-13  Romain Francoise  <romain@orebokech.com>
20489
20490         TODO: Backport to v5-10!
20491
20492         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
20493         Move here (and rename) from gnus-registry.el.
20494
20495         * gnus-registry.el: Require gnus-util.
20496         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
20497
20498 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20499
20500         * gnus-group.el (gnus-group-catchup-current):
20501         Change if-then-else-if-then-else into cond.
20502         (gnus-group-catchup): Indent.
20503         (group-name-at-point): New function.
20504         (gnus-fetch-group): Provide default from thing at point.
20505
20506 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20507
20508         * message.el (message-display-abbrev): Fix regexp.
20509
20510         * ecomplete.el (ecomplete-highlight-match-line):
20511         Reimplement choosing.
20512         (ecomplete-highlight-match-line): Fix up code rewrite, remove
20513         dead variables.
20514
20515         * message.el (message-newline-and-indent): Remove debugging.
20516         (message-display-abbrev): Use new implementation.
20517
20518 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
20519
20520         * gnus-art.el (gnus-article-mode):
20521         Set cursor-in-non-selected-windows to nil.
20522
20523         * smiley.el: Revert previous change.
20524         (smiley-data-directory): defvar it before using it in the
20525         defcustom of `smiley-style'.
20526
20527 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20528
20529         * message.el (message-newline-and-indent): New function.
20530
20531         * ecomplete.el: Implement more bits.
20532
20533         * message.el (message-put-addresses-in-ecomplete): Clean up the
20534         string.
20535
20536         * ecomplete.el (ecomplete-add-item): Chop off decimals.
20537
20538         * gnus-sum.el (gnus-summary-save-parts):
20539         Bind gnus-summary-save-parts-counter and use it to make unique file
20540         names.
20541
20542         * gnus-art.el (gnus-ignored-headers): Add some more headers.
20543
20544         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
20545         parameter to say whether to actually parse the individual
20546         addresses.
20547
20548         * message.el (message-put-addresses-in-ecomplete): New function.
20549         (ecomplete): Require.
20550         (message-mail-alias-type): Add ecomplete as an option.
20551
20552 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
20553
20554         * flow-fill.el (fill-flowed): Remove trailing space from blank
20555         quoted lines.
20556
20557 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20558
20559         * smiley.el (smiley-style): Move definition later to avoid a
20560         compilation warning.
20561
20562 2006-04-12  Kenichi Handa  <handa@m17n.org>
20563
20564         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
20565         buffer and then decode the buffer text if necessary.
20566         (rfc2231-encode-string): Be sure to work on multibyte buffer at
20567         first, and after mm-encode-body, change the buffer to unibyte.
20568         Use mm-disable-multibyte instead of set-buffer-multibyte.
20569
20570 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20571
20572         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
20573         Content-Type header instead of Content-Disposition header.
20574         (gnus-mime-inline-part): Ditto.
20575         (gnus-mime-view-part-as-charset): Ignore charset that the part
20576         specifies.
20577
20578         * mm-decode.el (mm-display-part): Work with external parts and
20579         usual parts similarly.
20580
20581         * mm-extern.el (mm-inline-external-body): Use mm-display-part
20582         instead of gnus-display-mime.
20583
20584         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
20585         instead of with-temp-buffer.
20586
20587         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
20588         tag to summarized topics part in order to encode non-ASCII text.
20589
20590 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
20591
20592         * smiley.el (smiley-style): New variable.
20593         (smiley-directory): New function.
20594         (smiley-data-directory): Derive from `smiley-style' using
20595         `smiley-directory'.
20596         (smiley-regexp-alist): Add new entries.
20597
20598         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
20599         (gnus-article-browse-delete-temp): Add :version.
20600
20601 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
20602
20603         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
20604         the sieve region.
20605
20606 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20607
20608         * gnus.el (gnus-version-number): Bump version.
20609
20610 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
20611
20612         * gnus.el: No Gnus v0.4 is released.
20613
20614 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20615
20616         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
20617         layout.
20618
20619         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
20620         unknown charset.
20621
20622         * message.el (message-header-synonyms): Add Original-To to the
20623         default.
20624
20625         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
20626         optional parameter.
20627
20628 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
20629
20630         * gnus-fun.el (gnus): Require it for gnus-directory.
20631
20632 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20633
20634         * gnus-fun.el (gnus-face-properties-alist): Add :version.
20635
20636 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
20637
20638         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
20639
20640 2006-04-05  Simon Josefsson  <jas@extundo.com>
20641
20642         * password.el (password-reset): New function.
20643
20644 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
20645
20646         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
20647         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
20648
20649 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20650
20651         * nnweb.el (nnweb-google-create-mapping): Update regexp.
20652         Some whitespace was matched into the url, which broke browsing hits
20653         > 100 when mm-url-use-external was nil.
20654
20655 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
20656
20657         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
20658         Check gnus-extra-headers for 'Newsgroups.
20659
20660         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
20661         bound.
20662
20663 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
20664
20665         * pgg-gpg.el: Clean up process buffers every time gpg processes
20666         complete.
20667
20668 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
20669
20670         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
20671         doc string.
20672
20673 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
20674
20675         * pgg-gpg.el (pgg-gpg-process-filter)
20676         (pgg-gpg-wait-for-completion): Check if buffer is alive.
20677
20678         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
20679         lines, temporary fix.
20680
20681 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
20682
20683         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
20684
20685 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
20686
20687         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
20688         default-enable-multibyte-characters.  This reverts the change from
20689         revision 6.17 which is no longer necessary because the passphrase
20690         is sent separately now.  GnuPG messages are unreadable under
20691         multibyte locales with default-enable-multibyte-characters set to
20692         nil.
20693
20694 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
20695
20696         * message.el (message-tool-bar-gnome): Move "spell".
20697
20698 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
20699
20700         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
20701         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
20702         instead.
20703
20704 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
20705
20706         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
20707         Improve newsgroups handling for NNTP overviews which don't include
20708         Newsgroups.
20709
20710 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20711
20712         * message.el (message-resend): Bind message-generate-hashcash to nil.
20713
20714 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20715
20716         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
20717         when searching for already-paid recipients.
20718
20719 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
20720
20721         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
20722         passphrases when it is not needed.
20723         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
20724         passphrase stuff from gpg, should only be necessary when you use
20725         gpg with a smartcard.
20726
20727 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20728
20729         * mml.el (mml-insert-mime): Ignore cached contents of
20730         message/external-body part.
20731
20732         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
20733         (mm-insert-part): Ditto.
20734
20735 2006-03-23  Simon Josefsson  <jas@extundo.com>
20736
20737         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
20738         Reiner.
20739         (pgg-gpg-use-agent-p): Use it again.
20740
20741 2006-03-23  Simon Josefsson  <jas@extundo.com>
20742
20743         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
20744         older emacsen.
20745         (pgg-gpg-use-agent-p): Don't use it.
20746
20747 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
20748
20749         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
20750         if we can.
20751
20752 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
20753
20754         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
20755         (pgg-gpg-update-agent): New function.
20756         (pgg-gpg-use-agent-p): New function.
20757         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
20758         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
20759         (pgg-gpg-sign-region): Use it.
20760
20761 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20762
20763         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
20764         Reported by Ralf Wachinger <rwachinger@gmx.de>.
20765
20766 2006-03-21  Simon Josefsson  <jas@extundo.com>
20767
20768         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
20769         <wilde@sha-bang.de>.
20770         (pgg-gpg-use-agent): New variable.
20771         (pgg-gpg-process-region): Use it.
20772         (pgg-gpg-encrypt-region): Likewise.
20773         (pgg-gpg-encrypt-symmetric-region): Likewise.
20774         (pgg-gpg-decrypt-region): Likewise.
20775         (pgg-gpg-sign-region): Likewise.
20776         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
20777
20778 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
20779
20780         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
20781
20782         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
20783         Add comment on version.
20784
20785 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
20786
20787         * smiley.el: Add missing test smiley.
20788
20789 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20790
20791         * mm-decode.el (mm-with-part): New macro.
20792         (mm-get-part): Use it; work with message/external-body as well.
20793         (mm-save-part): Treat name and filename equally.
20794
20795         * mm-extern.el (mm-extern-cache-contents): New function.
20796         (mm-inline-external-body): Use it; force the part to be displayed;
20797         move undisplayer added to the cached handle to the parent.
20798
20799         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
20800         (gnus-mime-view-part-as-type): Work with message/external-body.
20801
20802         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
20803
20804 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
20805
20806         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
20807         images in image-load-path.  [Sync with image.el, revision 1.60, in
20808         Emacs.]
20809
20810 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
20811
20812         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
20813         path rather than symbol.  Always return list of directories.
20814         Guarantee that image directory comes first.  [Sync with image.el,
20815         revision 1.59, in Emacs.]
20816
20817         * message.el (message-make-tool-bar): Adjust to new API of
20818         `gmm-image-load-path-for-library'.
20819
20820         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20821
20822         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
20823
20824 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20825
20826         * gnus-art.el (gnus-article-only-boring-p):
20827         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
20828         intangible text.
20829         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
20830
20831 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
20832
20833         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
20834         Use `defun' instead of `gmm-defun-compat'.
20835
20836 2006-03-14  Simon Josefsson  <jas@extundo.com>
20837
20838         * message.el (message-unique-id): Don't use message-number-base36
20839         if (user-uid) is a float.
20840         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
20841
20842 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20843
20844         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
20845
20846         * gnus-art.el (gnus-mime-display-single): Make sure there is an
20847         empty line between a part and a message part.
20848
20849 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
20850
20851         * smiley.el: Add more test smileys.
20852         (smiley-data-directory, smiley-regexp-alist)
20853         (gnus-smiley-file-types): Fix doc strings.
20854         (smiley-update-cache): Clear smiley-cached-regexp-alist before
20855         adding new elements.
20856         (smiley-mouse-map): Unused code.  Make it a comment.
20857
20858 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
20859
20860         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
20861         scan latest NoCeM messages instead of old ones.
20862         (gnus-nocem-check-article): Fix regexps so as to match to PGP
20863         delimiters that are recently used.
20864         (gnus-nocem-load-cache): Add autoload cookie.
20865
20866         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
20867
20868         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
20869         level which is larger than gnus-use-nocem is specified.
20870
20871         * gnus-group.el (gnus-group-get-new-news): Ditto.
20872
20873 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
20874
20875         * gnus-util.el (gnus-tool-bar-update): New function.
20876
20877         * gnus-group.el (gnus-group-update-tool-bar): New variable.
20878         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
20879
20880         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
20881
20882         * gnus-group.el (gnus-group-redraw-when-idle)
20883         (gnus-group-redraw-check): Remove.
20884         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
20885
20886 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20887
20888         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
20889         if optional last element is specified in splits (FIELD VALUE...).
20890
20891 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
20892
20893         * message.el (message-make-tool-bar): Rename gmm-image-load-path
20894         to gmm-image-load-path-for-library.  Call with no-error argument.
20895         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
20896
20897         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20898
20899         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
20900
20901         * gmm-utils.el (gmm-image-load-path): Remove alias.
20902
20903 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
20904
20905         * gmm-utils.el (gmm-image-load-path): Add alias.
20906
20907         * nnml.el (nnml-generate-nov-databases-directory): Rename from
20908         nnml-generate-nov-databases-1.
20909         (nnml-generate-nov-databases): Use it.
20910         (nnml-generate-nov-databases-directory): Document no-active
20911         argument.
20912
20913         * gmm-utils.el (gmm-image-load-path-for-library): Return single
20914         directory if path is t.  Add no-error.
20915
20916         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
20917         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
20918
20919         * gnus-art.el (gnus-article-browse-delete-temp-files):
20920         Simplify resetting gnus-article-browse-html-temp-list.
20921
20922         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
20923         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
20924         Add example to docstring.  Rename local variables.  Move error
20925         checks to default case in cond and simplify.
20926
20927 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20928
20929         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
20930         handle is multipart when calling it recursively.
20931         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
20932
20933 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
20934
20935         * nnimap.el (nnimap-request-update-info-internal): Optimize.
20936         Don't `gnus-uncompress-range' to avoid excessive memory usage.
20937
20938 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
20939
20940         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
20941         is loaded.
20942
20943         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
20944         loaded.
20945
20946 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
20947
20948         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
20949         to "Emacs 23 (unicode)" in doc string.
20950
20951         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
20952         "Emacs 23 (unicode)" in comment.
20953
20954 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
20955
20956         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
20957
20958         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
20959         characters 160 through 255 in Emacs 23.
20960
20961 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
20962
20963         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
20964         gnus-article-browse-html-temp.
20965         (gnus-article-browse-delete-temp): Make it customizable.
20966         Add `file'.  Adjust doc string.
20967         (gnus-article-browse-delete-temp-files): Add argument.
20968         Allow query for each file.  Adjust doc string.
20969         (gnus-article-browse-html-parts):
20970         Add `gnus-article-browse-delete-temp-files' to
20971         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
20972
20973 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
20974
20975         * gnus-art.el (gnus-article-browse-html-temp)
20976         (gnus-article-browse-delete-temp): New variables.
20977         (gnus-article-browse-delete-temp-files): New function.
20978         (gnus-article-browse-html-parts): Use it.
20979
20980 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
20981
20982         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
20983
20984         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
20985         string.
20986
20987         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
20988         gnus-summary-insert-new-articles when unplugged.
20989         Remove gnus-summary-search-article-forward.
20990
20991         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
20992         display-visual-class instead of display-color-cells.
20993
20994 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20995
20996         * dgnushack.el: Autoload customize-group for XEmacs.
20997
20998         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
20999         message/* containing non-ASCII text properly.
21000
21001 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
21002
21003         * message.el: Require gmm-utils, remove autoloads.
21004         (message-tool-bar): Set default based on
21005         gmm-tool-bar-style.
21006         (message-tool-bar-gnome): Add gmm-customize-mode.
21007
21008         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
21009         gmm-tool-bar-style.
21010         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
21011
21012         * gnus-group.el (gnus-group-tool-bar): Set default based on
21013         gmm-tool-bar-style.
21014         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
21015
21016         * gmm-utils.el (gmm-image-directory): Rename variable from
21017         gmm-image-load-path.
21018         (gmm-image-load-path): Use gmm-image-directory.
21019         (gmm-customize-mode): New function.
21020         (gmm-tool-bar-style): New variable.
21021
21022         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
21023         gnus-group-redraw-line-number.
21024         (gnus-group-redraw-check): Simplify.
21025         (gnus-group-tool-bar-update): Remove redraw check.
21026         (gnus-group-make-tool-bar): Add redraw check.
21027
21028 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
21029
21030         * gnus-art.el (gnus-button): Add missing parentheses.
21031
21032 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21033
21034         * lpath.el: Fbind line-number-at-pos.
21035
21036 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21037
21038         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
21039
21040 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
21041
21042         * gnus-art.el (gnus-button): New face.
21043         (gnus-article-button-face): Use it.
21044
21045         * gnus-sum.el (gnus-summary-tool-bar-gnome):
21046         Add gnus-summary-next-page.  Re-order.
21047
21048         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
21049         next-node are now included.
21050         (gnus-group-redraw-line-number): New internal variable.
21051         (gnus-group-redraw-check): Helper function for updating the tool
21052         bar.
21053         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
21054
21055         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
21056
21057         * spam.el (spam-spamassassin-score-regexp): New internal variable.
21058         (spam-extra-header-to-number, spam-check-spamassassin-headers):
21059         Use it to match format of Spamassassin 3.0 and later.
21060         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
21061         (spam-check-bogofilter)
21062         (spam-bogofilter-register-with-bogofilter): Fix args of
21063         `gnus-error' calls.
21064
21065 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
21066
21067         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
21068         unnecessary interaction when sending queued mails.
21069         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
21070
21071 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
21072
21073         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
21074         first or last are nil.
21075
21076 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
21077
21078         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
21079
21080 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21081
21082         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
21083
21084 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21085
21086         * dns.el (query-dns): Protect more against buggy tcp output.
21087
21088 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
21089
21090         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
21091         nov.php.
21092
21093 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21094
21095         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
21096         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
21097         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
21098         output on the server side.
21099         (nnweb-google-create-mapping): Update regexps and add some
21100         progress indication.
21101
21102 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
21103
21104         * gnus-group.el (gnus-group-tool-bar-gnome):
21105         Fix gnus-agent-toggle-plugged.  Re-order icons.
21106         (gnus-group-tool-bar-gnome):
21107         Add gnus-group-{prev,next}-unread-group.
21108         (gnus-group-tool-bar-gnome): Re-order icons.
21109
21110         * gnus-sum.el (gnus-summary-tool-bar-gnome):
21111         Move gnus-summary-insert-new-articles.
21112
21113         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
21114         Fix comments.
21115
21116         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
21117         also available in Emacs 21.3.
21118
21119         * message.el (message-fix-before-sending): Change "Emacs 22" to
21120         "Emacs 23 (unicode)" in comment.
21121
21122         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
21123         "Emacs 23 (unicode)" in comment.
21124
21125         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
21126         comment.
21127         (mm-coding-system-p): Add comment about no-MULE XEmacs.
21128
21129         * mm-view.el (mm-fill-flowed): Add :version.
21130
21131 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
21132
21133         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
21134         and load-path.
21135
21136 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
21137
21138         * message.el: Autoload gmm-image-load-path.
21139         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
21140         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
21141         consitency.
21142
21143         * gmm-utils.el (gmm-image-load-path): Also search in
21144         "../etc/images".  Don't set gmm-image-load-path if we don't find
21145         the image.
21146
21147 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21148
21149         * gmm-utils.el (gmm-image-load-path): Don't make
21150         `gmm-image-load-path' include subdirectories which the second arg
21151         `image' might specify.
21152
21153         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
21154         subdirectory to icon file names.
21155
21156         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
21157
21158 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
21159
21160         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
21161         gmm-image-load-path calls.
21162
21163         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
21164
21165         * message.el (message-make-tool-bar): Ditto.
21166
21167         * mml.el (mml-preview): Add comment concerning tool bar icons.
21168
21169         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
21170         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
21171
21172         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
21173         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
21174
21175         * message.el (message-tool-bar-gnome): Use new icon names.
21176         (message-make-tool-bar): Use `gmm-image-load-path'.
21177
21178         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
21179         New functions from MH-E.
21180         (gmm-image-load-path): New variable from MH-E.
21181         (gmm-image-load-path): New function from MH-E.  Add arguments
21182         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
21183         *-image-load-path-called-flag.
21184
21185 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
21186
21187         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
21188
21189 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
21190
21191         * nnimap.el (nnimap-request-move-article): Change folder back to
21192         source group before deleting.
21193
21194 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
21195
21196         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
21197
21198         * gnus-art.el (mm-url-insert-file-contents-external):
21199         Autoload mm-url.
21200
21201         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
21202
21203 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21204
21205         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
21206         coding system which mm-charset-to-coding-system returns for a
21207         given charset is valid.
21208
21209 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
21210
21211         * html2text.el (html2text-remove-tag-list):
21212         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
21213
21214 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
21215
21216         * gnus-cus.el: Revert 2005-10-17 change.
21217
21218 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21219
21220         * gnus-art.el (article-strip-banner):
21221         Call article-really-strip-banner only when the regexp match is made.
21222
21223 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21224
21225         * gnus-art.el (article-strip-banner):
21226         Use gnus-extract-address-components instead of
21227         mail-header-parse-addresses to make it work with non-ASCII text;
21228         remove mail-encode-encoded-word-string.
21229
21230         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
21231         values which are surrounded with \"...\"; make it never cause a
21232         Lisp error; give up parsing of parameters if it failed in
21233         extracting type.
21234
21235 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
21236
21237         * smime.el (smime-cert-by-ldap-1): Fix bug where
21238         `smime-ldap-search' returns results without userCertificates.
21239
21240 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21241
21242         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
21243
21244 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
21245
21246         * spam.el (spam-check-spamassassin-headers): Adapt format for
21247         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
21248         <ari@mbf.ocn.ne.jp>.
21249         (spam-list-of-processors): Add spam-use-gmane.
21250
21251 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
21252
21253         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
21254         make-temp-file; make it work with XEmacs as well.
21255
21256         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
21257         mm-make-temp-file.
21258
21259         * mm-decode.el (mm-display-external): Use the 3rd arg of
21260         mm-make-temp-file.
21261         (mm-create-image-xemacs): Ditto.
21262
21263 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
21264
21265         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
21266         with message-narrow-to-headers.
21267         (gnus-draft-setup): Narrow to header to run message-fetch-field.
21268         (gnus-draft-check-draft-articles): New function.
21269         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
21270
21271 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
21272
21273         * gnus-art.el (gnus-article-browse-html-parts):
21274         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
21275         Don't use suffix argument for mm-make-temp-file for Emacs 21
21276         compatibility.  Remove useless `format'.
21277
21278 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21279
21280         * nnweb.el (nnweb-google-wash-article): Update regexps.
21281         (nnweb-group-alist): Use defvoo instead of defvar.
21282
21283 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21284
21285         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
21286         re-loading nn* modules.
21287
21288 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
21289
21290         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
21291         for `tool-bar-mode' and don't check it's default-value.
21292
21293         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
21294
21295         * message.el (message-make-tool-bar): Ditto.
21296
21297         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
21298         `substring'.  Shorten tmp-file name.
21299
21300         * gnus.el: Remove bogus comment.
21301
21302 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
21303
21304         * gnus-art.el (gnus-article-browse-html-parts): New function.
21305         (gnus-article-browse-html-article): New function for viewing html
21306         articles with a browser.
21307
21308 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
21309
21310         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
21311         in elisp.
21312         (pgg-gpg-encrypt-symmetric-region): Ditto.
21313         (pgg-gpg-sign-region): Ditto.
21314
21315         * pgg-def.el (pgg-text-mode): New variable.
21316
21317         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
21318         (mml2015-pgg-encrypt): Ditto.
21319
21320         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
21321         (mml1991-pgg-encrypt): Ditto.
21322
21323 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
21324
21325         * nnfolder.el (nnfolder-insert-newsgroup-line):
21326         Use message-make-date instead of current-time-string.
21327
21328         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
21329         to gnus-decoded which mm-uu might set.
21330
21331 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
21332
21333         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
21334         don't decode quoted parameters; remove misimported Emacs code.
21335         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21336         (rfc2231-decode-encoded-string): Don't use split-string which
21337         behaves differently according to Emacs version; use
21338         mm-decode-coding-region to convert charset to coding-system.
21339         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21340         (rfc2231-encode-string): Remove misimported Emacs code.
21341
21342 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21343
21344         * gnus-art.el (article-decode-charset): Don't use ignore-errors
21345         when calling mail-header-parse-content-type.
21346         (article-de-quoted-unreadable): Ditto.
21347         (article-de-base64-unreadable): Ditto.
21348         (article-wash-html): Ditto.
21349
21350         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
21351         calling mail-header-parse-content-type and
21352         mail-header-parse-content-disposition.
21353         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
21354         mail-header-parse-content-type.
21355
21356         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
21357         insert charset and format parameters; encode description after
21358         inserting it to buffer.
21359         (mml-insert-parameter): Fold lines properly even if a parameter is
21360         segmented into two or more lines; change the max column to 76.
21361
21362         * rfc1843.el (rfc1843-decode-article-body): Don't use
21363         ignore-errors when calling mail-header-parse-content-type.
21364
21365         * rfc2231.el (rfc2231-parse-string): Return at least type if
21366         possible; don't cause an error even if it fails in parsing of
21367         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21368         (rfc2231-encode-string): Don't break lines at the beginning, leave
21369         it to mml-insert-parameter.
21370
21371         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
21372         calling mail-header-parse-content-type.
21373
21374 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
21375
21376         * spam-report.el (spam-report-gmane-use-article-number):
21377         Improve doc string.
21378         (spam-report-gmane-internal): Check if a suitable header was found
21379         in the article.
21380
21381 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
21382
21383         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
21384         (rfc2231-encode-string): Make param*=value always begin with LWSP.
21385
21386 2006-02-05  Romain Francoise  <romain@orebokech.com>
21387
21388         Update copyright notices of all files in the gnus directory.
21389
21390 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21391
21392         * nnweb.el (nnweb-request-group): Avoid growing overview files.
21393
21394 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
21395
21396         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
21397         segmented lines of parameter value to cope with Thunderbird 1.5
21398         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
21399         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21400         (rfc2231-encode-string): Don't make lines exceeding 76 column.
21401
21402 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
21403
21404         * mml.el (mml-generate-mime-1): Correct the order of inline signed
21405         parts.
21406
21407 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21408
21409         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
21410         there's only one active file for all servers.
21411         (nnweb-request-scan): Make sure nnweb-articles is initialized on
21412         solid groups.  Gnus might have used a FAST request to select the group.
21413         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
21414         and nnweb-search redundantly in the active file.
21415         (nnweb-request-list): Don't list bogus groups.  There can only be one.
21416         (nnweb-request-create-group): Don't use ARGS.
21417         (nnweb-possibly-change-server, nnweb-request-group): Remove some
21418         initializations.  Let nnoo do the work.
21419
21420 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
21421
21422         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
21423         Say the part has been decoded.
21424
21425         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
21426
21427 2006-01-31  Kevin Ryde  <user42@zip.com.au>
21428
21429         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
21430         mailcap-viewer-test-cache when there's no 'test clause, since that
21431         will invert the meaning of a "nil" test previously determined by
21432         mailcap-mailcap-entry-passes-test.
21433
21434 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21435
21436         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
21437         compiling.
21438
21439         * gnus-sum.el: Ditto.
21440
21441         * message.el: Don't bind tool-bar-map when compiling.
21442
21443 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
21444
21445         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
21446
21447 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21448
21449         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
21450         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
21451         current Google Groups.
21452
21453 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
21454
21455         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
21456         and tool-bar-mode.
21457
21458         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
21459         and tool-bar-mode.
21460
21461         * message.el (message-tool-bar-update): Simplify.
21462         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
21463
21464         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
21465         gnus-summary-buffer.
21466         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
21467         gnus-summary-reply.
21468
21469         * gmm-utils.el (gmm): Add :version.
21470
21471 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21472
21473         * Makefile.in (clean): New rule.
21474         (distclean): Use it.
21475
21476 2006-01-26  Steve Youngs  <steve@sxemacs.org>
21477
21478         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
21479         Don't autoload.
21480
21481 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21482
21483         * gmm-utils.el (gmm-verbose): Add :group.
21484
21485 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
21486
21487         * message.el: Change some comments WRT tool-bars.
21488
21489         * gnus-sum.el (gnus-summary-tool-bar)
21490         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
21491         (gnus-summary-tool-bar-zap-list): New variables.
21492         (gnus-summary-make-tool-bar): Complete rewrite using
21493         `gmm-tool-bar-from-list'.
21494
21495         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
21496         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
21497         New variables.
21498         (gnus-group-make-tool-bar): Complete rewrite using
21499         `gmm-tool-bar-from-list'.
21500         (gnus-group-tool-bar-update): New function.
21501
21502         * message.el (message-mode-field-menu): Add "Show hidden Headers".
21503
21504 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21505
21506         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
21507         is dissected into a single part of which the type is the same as
21508         the given one; decode charset.
21509
21510 2006-01-21  Kevin Ryde  <user42@zip.com.au>
21511
21512         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
21513         into alists as symbol not string, since that's what
21514         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
21515         look for.
21516
21517 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
21518
21519         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
21520         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
21521
21522         * message.el (message-tool-bar-gnome): Use gmm-ignore.
21523
21524 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21525
21526         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
21527         (gnus-xmas-mime-security-button-menu): New function.
21528
21529         * gnus-art.el (gnus-mime-security-button-commands): New variable.
21530         (gnus-mime-security-button-menu): New definition.
21531         (gnus-mime-security-button-map): Use them.
21532         (gnus-mime-security-button-menu): New function.
21533         (gnus-insert-mime-security-button): Addition to help echo.
21534         (gnus-mime-security-run-function, gnus-mime-security-save-part)
21535         (gnus-mime-security-pipe-part): New functions.
21536
21537         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
21538         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
21539
21540         * mm-decode.el (mm-handle-set-disposition): Remove.
21541         (mm-handle-set-description): Remove.
21542
21543 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21544
21545         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
21546         (mm-w3m-standalone-supports-m17n-p): New function.
21547         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
21548         w3m usage.
21549
21550         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
21551         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
21552
21553 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
21554
21555         * message.el (message-tool-bar-zap-list):
21556         Use gmm-tool-bar-zap-list as custom type.
21557         (message-tool-bar-update): New function.
21558         (message-tool-bar, message-tool-bar-gnome)
21559         (message-tool-bar-retro): Add message-tool-bar-update.
21560         (message-tool-bar-gnome): Add flyspell-buffer.
21561
21562         * gnus-util.el (gnus-error): Describe `args'.
21563
21564         * gmm-utils.el (gmm-error): Describe `args'.
21565         (gmm-tool-bar-zap-list): New widget.
21566         (gmm-tool-bar-from-list): Improve description of `zap-list'.
21567
21568 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
21569
21570         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
21571         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
21572         the number of recursive calls.
21573
21574         * mm-decode.el (mm-handle-set-disposition): New macro.
21575         (mm-handle-set-description): New macro.
21576
21577 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
21578
21579         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
21580         encoding.
21581
21582 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
21583
21584         * message.el (message-tool-bar-zap-list, message-tool-bar)
21585         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
21586         (message-tool-bar-local-item-from-menu): Remove.
21587         (message-tool-bar-map): Replace by `message-make-tool-bar'.
21588         (message-make-tool-bar): New function.
21589         (message-mode): Use `message-make-tool-bar'.
21590
21591         * gmm-utils.el: New file.
21592         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
21593         (gmm-lazy): New widget copied from `nnmail.el'.
21594         (gmm-tool-bar-from-list): New function for creating customizable
21595         tool bars.
21596         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
21597         output.
21598         (gmm): Add :prefix to defgroup.
21599
21600 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
21601
21602         * gmm-utils.el (gmm-widget-p): New function.
21603
21604 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
21605
21606         * mml.el (mml-attach-file): Describe `description' in doc string.
21607         (mml-menu): Add Emacs MIME manual and PGG manual.
21608
21609 2006-01-20  Richard M. Stallman  <rms@gnu.org>
21610
21611         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
21612
21613 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
21614
21615         * nntp.el (nntp-end-of-line): Doc fix.
21616
21617 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
21618
21619         * imap.el (imap-open): Handle case where buffer is a buffer
21620         object.
21621
21622 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21623
21624         * gnus-delay.el (gnus-delay): Don't autoload.
21625         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
21626         to be re-loaded when customizing the `gnus-delay' group.
21627
21628 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
21629
21630         * message.el (message-insert-citation-line): Use newlines.
21631
21632 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
21633
21634         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
21635         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
21636         these routines, so the passphrase can be managed externally and
21637         passed in to the system.
21638         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
21639         pgg-add-passphrase-to-cache function.
21640
21641         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
21642         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
21643         these routines, so the passphrase can be managed externally and
21644         passed in to the system.
21645         (pgg-pgp5-sign-region): Use new name of
21646         pgg-add-passphrase-to-cache function.
21647
21648 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
21649
21650         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
21651         part of the decoded armor to find the key-identifier.
21652         (pgg-gpg-lookup-key-owner): New function to return the
21653         human-readable identifier of a key owner.
21654         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
21655         itself.
21656         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
21657         the key value) if we have a key and can match it against a secret
21658         key.  Also, added a note pointing out fact that the prompt only
21659         indicates the first matching key.
21660
21661         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
21662         pgg-decrypt-region.
21663         (pgg-add-passphrase-to-cache): Rename from
21664         `pgg-add-passphrase-cache' to reduce confusion (all callers
21665         changed).
21666         (pgg-remove-passphrase-from-cache): Rename from
21667         `pgg-remove-passphrase-cache' to reduce confusion (all callers
21668         changed).
21669         (pgg-read-passphrase, pgg-add-passphrase-cache)
21670         (pgg-remove-passphrase-cache): Add informative docstrings.
21671         (pgg-decrypt): Convey provided passphrase in subordinate call to
21672         pgg-decrypt-region.
21673
21674 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
21675
21676         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
21677         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
21678         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
21679         'passphrase' argument, so the passphrase can be managed externally
21680         and then passed in to the system.
21681
21682         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
21683         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
21684         so the passphrase cache can be used reliably with identifiers
21685         besides a pgp packet's key id.
21686
21687         * pgg-gpg.el (pgg-gpg-encrypt-region)
21688         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
21689         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
21690         these routines, so the passphrase can be managed externally and
21691         passed in to the system.
21692
21693         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
21694         'notruncate' argument, so the passphrase cache can be used
21695         reliably with identifiers besides a pgp packet's key id.
21696
21697 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
21698
21699         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
21700         symmetric encryption.
21701         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
21702         encrypted session key.
21703         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
21704         message ask for the passphrase in a proper way.
21705
21706         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
21707         New user commands for symmetric encryption.
21708
21709 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21710
21711         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
21712
21713         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
21714
21715 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
21716
21717         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
21718
21719 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21720
21721         * mm-decode.el (mm-inlined-types): Add application/pgp.
21722         (mm-automatic-display): Ditto.
21723
21724         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
21725         part as text.
21726
21727 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21728
21729         * nnrss.el: Update copyright.
21730         (nnrss-opml-import): Query whether to subscribe to each entry.
21731
21732         * gnus-art.el:
21733         * gnus-sum.el:
21734         * gnus-xmas.el:
21735         * messagexmas.el:
21736         * mm-uu.el:
21737         * mm-view.el: Update copyright.
21738
21739 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
21740
21741         * message.el (message-info): New function.
21742         (message-mode-menu): Add it.
21743         Update copyright.
21744
21745         * ChangeLog: Fix and update copyright.
21746
21747 2006-01-13  Romain Francoise  <romain@orebokech.com>
21748
21749         * message.el (message-forward-subject-name-subject): Prefer the
21750         address to 'nowhere' if the sender has no name.
21751         Fix typo.  Update copyright year.
21752
21753 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21754
21755         * gnus-art.el (article-wash-html):
21756         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
21757         (gnus-article-wash-html-with-w3m-standalone): New function.
21758
21759         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
21760         mm-inline-text-html-render-with-w3m-standalone.
21761         (mm-text-html-washer-alist): Map w3m-standalone to
21762         gnus-article-wash-html-with-w3m-standalone.
21763         (mm-inline-text-html-render-with-w3m-standalone): New function.
21764
21765 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
21766
21767         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
21768         Improve LaTeX.
21769
21770 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21771
21772         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
21773         (nnrss-request-article): Render text/plain parts as HTML.
21774
21775         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
21776         the buffer.
21777
21778 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
21779
21780         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
21781         custom definition of `gnus-posting-styles'.
21782
21783         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
21784         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
21785
21786 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21787
21788         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
21789         Use nntp for bug archive.
21790
21791 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
21792
21793         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
21794         parts.
21795         (nnrss-normalize-date): New function converts ISO 8601 date into
21796         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
21797         (nnrss-check-group): Use it.
21798
21799 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21800
21801         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
21802
21803         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
21804         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
21805         (nnrss-insert-w3): Ditto.
21806
21807 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21808
21809         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
21810         the articles to be forwarded including the case where neither a
21811         number of articles nor a region is specified.
21812
21813 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
21814
21815         * nnrss.el (nnrss-request-article): Fix last change; fill
21816         text/plain parts.
21817
21818 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21819
21820         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
21821         in text/plain part.
21822         (nnrss-check-group): Don't add excessive newline to dc:subject.
21823
21824 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
21825
21826         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
21827         article.
21828
21829 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
21830
21831         * nnml.el: Don't require gnus-bcklg.  Autoload it.
21832         (nnml-use-compressed-files, nnml-save-mail): Support other
21833         comression programs such as bzip2.
21834
21835 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21836
21837         * dns.el (query-dns): Make sure we check the buffer size before
21838         removing tcp headers.
21839
21840 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21841
21842         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
21843         remove MIME buttons associated with multipart/alternative parts.
21844         (gnus-mime-display-alternative): Tag buttons using `article-type'
21845         text property.
21846
21847         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
21848         associated with multipart/alternative parts.
21849
21850         * gnus-art.el (gnus-signature-separator): Fix custom type.
21851
21852         * mm-decode.el (mm-inlined-types): Fix custom type.
21853         (mm-keep-viewer-alive-types): Ditto.
21854         (mm-automatic-display): Ditto.
21855         (mm-attachment-override-types): Ditto.
21856         (mm-inline-override-types): Ditto.
21857         (mm-automatic-external-display): Ditto.
21858
21859 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
21860
21861         * spam-report.el (spam-report-user-mail-address)
21862         (spam-report-user-agent): New variables.
21863         (spam-report-url-ping-plain): Use spam-report-user-agent.
21864
21865 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
21866
21867         * gnus-art.el (gnus-button-handle-custom): Do not just use
21868         `customize-apropos' for any "M-x customize-*" button but the
21869         function called for.  Accept both the function name and its
21870         argument in order to achieve this.
21871         (gnus-button-alist): Remove support for "custom:" URL's.
21872         Pass function name to `gnus-button-handle-custom' in case of "M-x
21873         customize-*" buttons.
21874
21875 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21876
21877         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
21878         multipart/alternative and add xref to mm-discouraged-alternatives
21879         in doc string.
21880
21881         * mm-decode.el (mm-discouraged-alternatives): Add xref to
21882         gnus-buttonized-mime-types in doc string.
21883
21884 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
21885
21886         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
21887         Suggest image/.* in the doc string.
21888
21889 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
21890
21891         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
21892         message-marks (Debian bug#342521).
21893
21894 2005-12-12  Simon Josefsson  <jas@extundo.com>
21895
21896         * password.el (password-read-from-cache): Add.
21897         (password-read): Use it.
21898
21899 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21900
21901         * rfc2047.el (rfc2047-charset-to-coding-system):
21902         Recognize us-ascii as a MIME charset.
21903
21904         * mm-bodies.el (mm-decode-content-transfer-encoding):
21905         Protect against the case where the 2nd arg TYPE is nil.
21906
21907 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
21908
21909         * pop3.el (pop3-stream-type): Fix custom version.
21910
21911         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
21912
21913 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
21914
21915         * mm-decode.el (mm-display-external): Add missing cdr.
21916
21917 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21918
21919         * mm-decode.el (mm-display-external): Use nametemplate (defined in
21920         RFC1524) if it is in mailcap or add a suffix according to
21921         mailcap-mime-extensions when generating a temp filename; postpone
21922         deleting a temp file for 2 seconds for some wrappers, shell
21923         scripts, and so on, which might exit right after having started a
21924         viewer command as a background job.
21925
21926 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
21927
21928         * nntp.el (nntp-marks-directory): Fix custom group.
21929
21930         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
21931         steps when < 10.
21932
21933         * gnus-start.el (gnus-no-server-1):
21934         Mention `gnus-level-default-subscribed' in doc string.
21935
21936 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
21937
21938         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
21939         parens.
21940
21941 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21942
21943         * gnus-xmas.el (gnus-use-toolbar): Revert.
21944         (gnus-xmas-setup-toolbar): Use global default-toolbar if
21945         gnus-use-toolbar is default.
21946
21947         * messagexmas.el (message-use-toolbar): Revert.
21948         (message-setup-toolbar): Use global default-toolbar if
21949         message-use-toolbar is default.
21950
21951 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21952
21953         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
21954         according to default-toolbar-visible-p.
21955
21956         * messagexmas.el (message-use-toolbar): Ditto.
21957
21958 2005-11-26  Dave Love  <fx@gnu.org>
21959
21960         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
21961         (tls-program, tls-success): Provide openssl alternative.
21962
21963         * starttls.el: Doc fixes.
21964         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
21965         SERVICE to PORT.
21966
21967         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
21968         port null or service name.
21969         (starttls-negotiate): Autoload.
21970
21971 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21972
21973         * message.el (message-kill-to-signature): Fix interactive spec.
21974
21975 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21976
21977         * pop3.el (pop3-open-server): Recognize a string as a service name.
21978
21979 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
21980
21981         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
21982
21983 2005-11-23  Dave Love  <fx@gnu.org>
21984
21985         Add pop3s, pop3/starttls.
21986
21987         * pop3.el (pop3-authentication-scheme): Clarify doc.
21988         (open-tls-stream, starttls-open-stream): Autoload.
21989         (pop3-stream-type): New.
21990         (pop3-open-server): Use it.
21991
21992         * mail-source.el (mail-sources): Fix some :types.  Add stream type
21993         for POP.
21994         (mail-source-keyword-map): Add :stream for POP.
21995         (mail-source-fetch-pop): Use pop3-stream-type.
21996
21997 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21998
21999         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
22000         of current-time-string.
22001
22002 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
22003
22004         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
22005         date header.
22006
22007 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
22008
22009         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
22010         it can seriously impact performance as it bypasses the agent's
22011         local caches.
22012
22013 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
22014
22015         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
22016         must be explicitly online rather than "not explicitly offline" for
22017         its flags to be synchronized.
22018
22019         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
22020         that gnus-uu-unmark-thread will function correctly.
22021
22022         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
22023         1024K is instead displayed as 1M.
22024
22025 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22026
22027         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
22028
22029 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
22030
22031         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
22032
22033 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
22034
22035         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
22036         error message to display actual error condition.
22037         (gnus-agent-save-local): Avoid saving symbols that are bound to
22038         nil as they simply result in a warning message in
22039         gnus-agent-read-local.
22040
22041 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22042
22043         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
22044         rather than make-variable-buffer-local for file-precious-flag.
22045
22046 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
22047
22048         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
22049         for duplicates which are removed.  The invalid sort check then
22050         triggers a rescan after the sort as sorting may have moved
22051         duplicate entries such that they can be cheaply detected.
22052
22053 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22054
22055         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
22056
22057 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
22058
22059         * gnus-agent.el (gnus-agent-article-alist-save-format):
22060         Change internal variable to a custom variable.  Change default value
22061         from compressed(2) to uncompressed(1).
22062         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
22063         support for uncompressed agentview files.  Taken together, reading
22064         the agentview file should now be 6-7 times faster.
22065
22066 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
22067
22068         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
22069         as a buffer-local variable.  This avoids creating truncated
22070         dribble files as a result of a hang up, eg.
22071
22072 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
22073
22074         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
22075         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
22076         XEmacs.
22077
22078 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
22079
22080         * gnus-start.el (gnus-start-draft-setup):
22081         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
22082
22083         * gnus.el (gnus-splash): Change custom group.
22084         (gnus-group-get-parameter, gnus-group-parameter-value):
22085         Describe allow-list argument.
22086
22087         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
22088         string.
22089
22090 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
22091
22092         * gnus-art.el (gnus-default-article-saver): Add user-defined
22093         `function' to custom type.
22094
22095 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
22096
22097         * imap.el (imap-open): Handle case where buffer is a buffer
22098         object.
22099
22100 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
22101
22102         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
22103         long lines.
22104         (gnus-cache-delete-group): Wrap doc strings.
22105
22106         * gnus-agent.el (gnus-agent-rename-group)
22107         (gnus-agent-delete-group): Wrap doc strings.
22108
22109 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
22110
22111         * messagexmas.el (message-use-toolbar): Change the valid values
22112         into default, top, bottom, left, and right.
22113         (message-toolbar-thickness): New variable.
22114         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
22115         well.
22116         (message-setup-toolbar): Make it work.
22117
22118         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
22119         (gnus-use-toolbar): Change the valid values into default, top,
22120         bottom, left, and right.
22121         (gnus-toolbar-thickness): New variable.
22122         (gnus-xmas-setup-toolbar): New function.
22123         (gnus-xmas-setup-group-toolbar): Use it.
22124         (gnus-xmas-setup-summary-toolbar): Use it.
22125
22126 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22127
22128         * gnus-start.el (gnus-1): Add "native" to
22129         gnus-predefined-server-alist.
22130
22131         * gnus.el (gnus-method-to-server): Don't add "native" to the
22132         lists here, because that leads to problems when
22133         gnus-select-method is bound.
22134
22135 2005-11-09  Simon Josefsson  <jas@extundo.com>
22136
22137         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
22138         use (not sort-by-date) instead.
22139
22140 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22141
22142         * gnus-delay.el (gnus-delay-group): Don't autoload.
22143         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
22144         to be re-loaded when customizing the `gnus-delay' group.
22145
22146 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
22147
22148         * message.el: Revert last changes.
22149         (message-insert-citation-line): Use newlines.
22150
22151 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
22152
22153         * message.el (message-courtesy-message)
22154         (message-mark-insert-begin, message-mark-insert-end)
22155         (message-elide-ellipsis, message-cancel-message)
22156         (message-add-header, message-change-subject)
22157         (message-cross-post-followup-to-header)
22158         (message-cross-post-insert-note, message-reduce-to-to-cc)
22159         (message-widen-reply, message-delete-not-region)
22160         (message-kill-to-signature, message-insert-signature)
22161         (message-insert-importance-high, message-insert-importance-low)
22162         (message-insert-or-toggle-importance)
22163         (message-insert-disposition-notification-to)
22164         (message-indent-citation, message-yank-original)
22165         (message-cite-original-without-signature, message-cite-original)
22166         (message-insert-citation-line, message-position-on-field)
22167         (message-fix-before-sending, message-send-mail-partially)
22168         (message-send-mail, message-send-mail-with-sendmail)
22169         (message-send-mail-with-qmail, message-send-news)
22170         (message-check-news-header-syntax, message-generate-headers)
22171         (message-insert-courtesy-copy, message-fill-address)
22172         (message-fill-header, message-shorten-references)
22173         (message-setup-1, message-cancel-news)
22174         (message-forward-make-body-plain, message-forward-make-body-mime)
22175         (message-forward-make-body-mml, message-encode-message-body)
22176         (message-forward-make-body-digest-plain)
22177         (message-forward-make-body-digest-mime)
22178         (message-use-alternative-email-as-from): Insert `hard-newline'
22179         instead of ordinary newlines.
22180
22181 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
22182
22183         * message.el (message-generate-headers): Downcase the argument
22184         given to message-check-element.
22185
22186 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
22187
22188         * nntp.el (nntp-authinfo-rejected): New error condition.
22189         (nntp-wait-for): Use new error condition to signal authentication
22190         error.
22191         (nntp-retrieve-data): Rethrow new error condition to break out of
22192         recursive call to nntp-send-authinfo.
22193
22194 2005-11-08  Romain Francoise  <romain@orebokech.com>
22195
22196         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
22197         (gnus-summary-exit-map): Bind to `Z p'.
22198         (gnus-summary-make-menu-bar): Add menu item.
22199
22200 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
22201
22202         * gnus-art.el (gnus-article-treat-custom): Add `first'.
22203         (gnus-treat-*): Add `first' in all doc strings.
22204
22205         * gnus-group.el (gnus-group-compact-group): Fix typo.
22206
22207 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22208
22209         * gnus.el (gnus-parameters-case-fold-search): New variable.
22210         (gnus-parameters-get-parameter): Use it.
22211
22212         * gnus-score.el (gnus-home-score-file): Doc fix.
22213
22214 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
22215
22216         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
22217
22218 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
22219
22220         * mm-util.el (mm-special-display-p): New function.
22221
22222         * mml.el (mml-preview): Use it; doc fix.
22223
22224 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
22225
22226         * imap.el (imap-open): Handle case where buffer is a buffer object.
22227
22228 2005-10-29  Romain Francoise  <romain@orebokech.com>
22229
22230         * message.el (message-fix-before-sending): Fix comment.
22231
22232 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
22233
22234         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
22235
22236 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
22237
22238         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
22239         Used in gnus-score.el.
22240
22241 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
22242
22243         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
22244
22245 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
22246
22247         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
22248         whitespace removed in revision 7.8.  Use concatenated string to
22249         protect trailing whitespace.
22250
22251 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
22252
22253         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
22254         (nnimap-request-expire-articles): Use it to avoid sending 'UID
22255         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
22256         Courier IMAP ("some version from 2004").  Mostly based on similar
22257         code in the same function.
22258
22259 2005-10-26  Didier Verna  <didier@xemacs.org>
22260
22261         * gnus-group.el (gnus-group-compact-group): Invalidate original
22262         article buffer.
22263         * gnus-srvr.el (gnus-server-compact-server): Ditto.
22264         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
22265         NOV database and in article itself.
22266         Invalidate article backlog.
22267
22268 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
22269
22270         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
22271
22272 2005-10-26  Simon Josefsson  <jas@extundo.com>
22273
22274         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
22275         part of 2004-07-25 change.
22276
22277 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22278
22279         * message.el (message-display-completion-list): New function.
22280         (message-expand-group): Use it; make sure the Completions buffer
22281         is modifiable.
22282 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
22283
22284         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
22285         user-mail-name is an empty string.
22286
22287 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
22288
22289         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
22290         depending on gnus-score-decay-constant.
22291
22292         * encrypt.el (encrypt-insert-file-contents)
22293         (encrypt-write-file-contents): Don't use `gnus-message'.
22294
22295         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
22296         arguments.
22297         (mm-uu-type-alist): Add message-marks and insert-marks.
22298         Pass arguments to mm-uu-verbatim-marks-extract.
22299         (mm-uu-hide-markers): New variable.
22300         (mm-uu-extract): Use face similar to `gnus-cite-3'.
22301
22302         * gnus-fun.el (gnus-convert-image-to-x-face-command)
22303         (gnus-convert-image-to-face-command): Use "convert" by default to
22304         allow other input image formats.
22305         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
22306         accordingly.
22307
22308 2005-10-23  Simon Josefsson  <jas@extundo.com>
22309
22310         * imap.el (imap-gssapi-program): Align command line parameters
22311         with latest GNU SASL.
22312         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
22313
22314 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22315
22316         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
22317         HTML.
22318         (nnslashdot-request-article): Ditto.
22319
22320         * lpath.el (featurep): Add nobreak-char-display.
22321
22322 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
22323
22324         * mail-source.el (mail-source-fetch-pop): Require pop3.
22325         (mail-source-check-pop): Ditto.
22326
22327 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
22328
22329         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
22330         errors.
22331
22332 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
22333
22334         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
22335         (gnus-treat-strip-leading-blank-lines): Improve doc string.
22336
22337         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
22338
22339         * mm-bodies.el (mm-decode-string):
22340         Call `mm-charset-to-coding-system' with allow-override argument.
22341
22342 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22343
22344         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
22345         (rfc2047-charset-to-coding-system): New function.
22346         (rfc2047-decode-encoded-words): New function.
22347         (rfc2047-decode-region): Use them.
22348         (rfc2047-decode-cte): Remove.
22349         (rfc2047-parse-and-decode): Remove.
22350         (rfc2047-decode): Remove.
22351
22352 2005-10-15  Kenichi Handa  <handa@m17n.org>
22353
22354         * rfc2047.el (rfc2047-decode-cte): New function.
22355         (rfc2047-decode-region): Change the way to decode successive
22356         encoded-words: decode B- or Q-encoding in each encoded-word,
22357         concatenate them, and decode it as charset.
22358
22359 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22360
22361         * lpath.el: Fbind codepage-setup for XEmacs.
22362
22363 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
22364
22365         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
22366         widget-move-and-invoke.
22367         (gnus-custom-mode): Use gnus-custom-map.
22368
22369 2005-10-15  Bill Wohler  <wohler@newt.com>
22370
22371         * message.el (message-tool-bar-map): Rename image file from
22372         mail_send to mail/send.
22373
22374 2005-10-16  Masatake YAMATO  <jet@gyve.org>
22375
22376         * message.el (message-expand-group): Pass the common
22377         prefix substring of completion to `display-completion-list'.
22378
22379 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
22380
22381         * mml-sec.el (mml-secure-method): New internal variable.
22382         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
22383         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
22384         New functions using mml-secure-method.
22385
22386         * mml.el (mml-mode-map): Add key bindings for those functions.
22387         (mml-menu): Simplify security menu entries.  Suggested by Jesper
22388         Harder <harder@myrealbox.com>.
22389         (mml-attach-file, mml-attach-buffer, mml-attach-external):
22390         Goto end of message if point is the headers of the message.
22391
22392         * message.el (message-in-body-p): New function.
22393
22394         * assistant.el: Autoload gnus-util and netrc.
22395
22396         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
22397         Use `mm-charset-override-alist' only when decoding.
22398
22399         * mm-bodies.el (mm-decode-body):
22400         Call `mm-charset-to-coding-system' with allow-override argument.
22401
22402         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
22403         `filename' from Content-Disposition if Content-Type doesn't
22404         provide `name'.
22405         (gnus-mime-view-part-as-type): Set default instead of
22406         initial-input.
22407
22408 2005-10-09  Daniel Brockman  <daniel@brockman.se>
22409
22410         * format-spec.el (format-spec): Propagate text properties of % spec.
22411
22412 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
22413
22414         * gnus-art.el (gnus-treat-predicate): Add `first'.
22415
22416 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
22417
22418         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
22419         (mm-charset-override-alist): New variable.
22420         (mm-charset-to-coding-system): Use it.
22421         (mm-codepage-setup): New helper function.
22422         (mm-charset-eval-alist): New variable.
22423         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
22424         Warn about unknown charsets.
22425
22426         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
22427
22428 2005-10-04  David Hansen  <david.hansen@gmx.net>
22429
22430         * nnrss.el (nnrss-request-article): Add support for the comments tag.
22431         (nnrss-check-group): Ditto.
22432
22433 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
22434
22435         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
22436         Rename x-gnus-verbatim to x-verbatim.
22437         (mm-uu-type-alist): Fix regexp for verbatim-marks.
22438
22439         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
22440         x-verbatim.
22441
22442         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
22443
22444         * gnus-util.el (gnus-remove-duplicates): Remove.
22445
22446         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
22447         instead of gnus-remove-duplicates.
22448
22449         * message.el (message-remove-duplicates): Remove.
22450         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
22451         message-remove-duplicates.
22452
22453         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
22454         available, else use implementation from `delete-dups'.
22455
22456         * message.el (message-insert-expires): New function.
22457         (message-mode-map): Add key binding.
22458         (message-mode-field-menu): Add menu entry.
22459         (message-mode): Document it.
22460         (message-make-expires-date): Use `message-make-date'.
22461
22462 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
22463
22464         * message.el (message-make-expires-date): New function.
22465
22466 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
22467
22468         * Makefile.in (list-installed-shadows): New entry.
22469         (install): Use it.
22470         (remove-installed-shadows): New entry.
22471
22472         * dgnushack.el (dgnushack-default-load-path): New variable.
22473         (dgnushack-find-lisp-shadows): New function.
22474         (dgnushack-remove-lisp-shadows): New function.
22475
22476 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22477
22478         * Makefile.in (install-el-elc): New entry.
22479         (install): Use it so that .el files are necessarily installed.
22480
22481 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22482
22483         * time-date.el: Autoload parse-time-string, XEmacs needs it.
22484
22485 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22486
22487         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
22488         function rather than the diff-mode.el package.
22489         (mm-display-external): Use with-current-buffer.
22490         (mm-viewer-completion-map, mm-viewer-completion-map):
22491         Move initialization inside declaration.
22492
22493 2005-09-29  Simon Josefsson  <jas@extundo.com>
22494
22495         * spam.el: Load hashcash when compiling, to avoid warnings.
22496         Don't autoload mail-check-payment.
22497         (spam-check-hashcash): Define unconditionally, since hashcash.el
22498         is part of Gnus now.  Ignore errors from payment checking.
22499
22500 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
22501
22502         * message.el (message-bold-region, message-unbold-region):
22503         Rename from `bold-region' and `unbold-region'.
22504
22505         * message.el: Remove useless autoloads.
22506
22507 2005-09-28  Simon Josefsson  <jas@extundo.com>
22508
22509         * message.el (message-use-idna): Default to t.
22510         (message-use-idna): Test whether encoding works too.  Doc fix.
22511
22512 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22513
22514         * nntp.el (nntp-warn-about-losing-connection): Remove.
22515
22516 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
22517
22518         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
22519         customizable.  Change default value.
22520         (mm-uu-diff-groups-regexp): Change default value.
22521         (mm-uu-type-alist): Add doc string.
22522         (mm-uu-configure): Add doc string.  Make it interactive.
22523         (mm-uu-tex-groups-regexp): New variable.
22524         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
22525         (mm-uu-type-alist): Add LaTeX documents.
22526         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
22527         of "text/verbatim".
22528         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
22529
22530         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
22531         instead of "text/verbatim".
22532
22533         * message.el (message-mark-inserted-region)
22534         (message-mark-insert-file): Use slrn style marks when called with
22535         prefix argument.
22536
22537 2005-09-27  Simon Josefsson  <jas@extundo.com>
22538
22539         * message.el (message-idna-to-ascii-rhs-1): Reformat.
22540
22541 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
22542
22543         * message.el (message-remove-duplicates): New function.
22544         Implementation borrowed from `gnus-remove-duplicates'.
22545         (message-idna-to-ascii-rhs): Also encode idna addresses in
22546         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
22547         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
22548         only ask about the same idna domain once per header and also tell
22549         in what header to replace the idna domain.
22550
22551         * gnus-art.el (article-decode-idna-rhs): Also decode idna
22552         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
22553         (article-decode-idna-rhs): Fix regexp so that all idna-address in
22554         a header is decoded and not just the last one.
22555
22556 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22557
22558         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
22559         has been decoded.
22560
22561         * mm-decode.el (mm-automatic-display): Add text/verbatim.
22562         (mm-insert-part): Don't modify text if it has been decoded.
22563
22564         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
22565         decoded.
22566
22567         * mm-view.el (mm-inline-text): Don't strip text props unless
22568         decoding enriched or richtext parts.
22569
22570 2005-09-25  Romain Francoise  <romain@orebokech.com>
22571
22572         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
22573         * gnus-start.el (gnus-subscribe-interactively):
22574         * gnus-uu.el (gnus-uu-grab-articles):
22575         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
22576         space.
22577
22578 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
22579
22580         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
22581         * mm-view.el (mm-view-pkcs7-decrypt):
22582         * gnus-sum.el (gnus-summary-limit-to-extra)
22583         (gnus-summary-respool-article, gnus-read-move-group-name):
22584         * gnus-score.el (gnus-summary-increase-score):
22585         * gnus-util.el (gnus-completing-read-with-default):
22586         * gnus-art.el (gnus-read-save-file-name)
22587         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
22588         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
22589         * message.el (message-check-news-header-syntax):
22590         Follow convention for reading with the minibuffer.
22591
22592 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
22593
22594         * spam-report.el (spam-report-url-ping-plain):
22595         Use gnus-extended-version as User-Agent.
22596
22597         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
22598         default value is nil.
22599
22600         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
22601         (mm-uu-verbatim-marks-extract): New function.
22602         (mm-uu-extract): New face.
22603         (mm-uu-copy-to-buffer): Use it.
22604
22605         * spam-report.el (spam-report-gmane-ham): Rename from
22606         `spam-report-gmane-unspam'.
22607         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
22608         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
22609
22610         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
22611         Autoload.
22612         (spam-report-gmane-unregister-routine):
22613         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
22614
22615 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
22616
22617         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
22618         (spam-report-gmane-unregister-routine): Add support for gmane
22619         unregistration.
22620
22621         * spam-report.el (spam-report-gmane-unspam)
22622         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
22623         (spam-report-gmane): Change to take a single article and do unspam
22624         registration.
22625
22626 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22627
22628         * mm-url.el (mm-url-decode-entities): Fix regexp.
22629
22630 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22631
22632         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
22633         default to nil, to be able to use Gnus at all.  If the default
22634         switches to something else, then the function should be fixed not
22635         be exceedingly slow.
22636
22637 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
22638
22639         * gnus-start.el (gnus-activate-group): If the server is nil, don't
22640         fail hard.
22641
22642         * spam-report.el: Add better Keywords line.
22643
22644         * spam.el: Add Maintainer and better Keywords line.
22645
22646 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22647
22648         * gnus-art.el (gnus-article-replace-part)
22649         (gnus-mime-replace-part): New functions.
22650         (gnus-mime-action-alist, gnus-mime-button-commands)
22651         (gnus-mime-save-part-and-strip): Add file argument.
22652         (gnus-article-part-wrapper): Add interactive argument.
22653
22654         * gnus-sum.el (gnus-summary-mime-map):
22655         Add `gnus-article-replace-part'.
22656
22657 2005-09-19  Didier Verna  <didier@xemacs.org>
22658
22659         The nnml compaction feature:
22660         * nnml.el (nnml-request-compact-group): New function.
22661         * nnml.el (nnml-request-compact): New function.
22662         * gnus-int.el (gnus-request-compact-group): New function.
22663         * gnus-int.el (gnus-request-compact): New function.
22664         * gnus-group.el (gnus-group-compact-group): New function.
22665         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
22666         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
22667         * gnus-srvr.el (gnus-server-compact-server): New function.
22668         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
22669         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
22670
22671 2005-09-18  Deepak Goel  <deego@gnufans.org>
22672
22673         * sieve.el (sieve-help): Fix `message' call: first arg should be a
22674         format spec.
22675
22676 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
22677
22678         * gnus.el (gnus-group-startup-message): Bind image-load-path.
22679
22680 2005-09-15  Romain Francoise  <romain@orebokech.com>
22681
22682         * message.el (message-fill-paragraph): Clarify docstring.
22683
22684 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22685
22686         * gnus-art.el (gnus-mime-display-part): Protect against broken
22687         MIME messages.
22688
22689 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22690
22691         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
22692         before parsing header.
22693
22694 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
22695
22696         * html2text.el (html2text-replace-list): Add new entities.
22697
22698 2005-09-11  Romain Francoise  <romain@orebokech.com>
22699
22700         * message.el (message-alternative-emails): Improve docstring.
22701         (message-setup-1): Call `message-use-alternative-email-as-from'
22702         after `message-setup-hook' to give it precedence over posting
22703         styles, etc.
22704         (message-use-alternative-email-as-from): Add docstring.
22705         Remove the original From header if present.
22706
22707         * nnml.el (nnml-compressed-files-size-threshold): New variable.
22708         (nnml-save-mail): Use it.
22709
22710         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
22711         articles.  Add new argument `silent'.
22712         (gnus-uu-mark-all): Report the total number of marked articles.
22713
22714 2005-09-10  Romain Francoise  <romain@orebokech.com>
22715
22716         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
22717         (gnus-uu-mark-series): Likewise.
22718
22719 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
22720
22721         * spam-report.el (spam-report-gmane): Fix generation of spam
22722         report URL.
22723
22724 2005-09-10  Simon Josefsson  <jas@extundo.com>
22725
22726         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
22727         t, based on discussion on the ding list with Robert Epprecht
22728         <epprecht@solnet.ch>.
22729
22730 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
22731
22732         * spam-report.el (spam-report-gmane): Make it work without
22733         X-Report-Spam header.  Gmane now only provides Archived-At.
22734         This is only used if `spam-report-gmane-use-article-number' is nil.
22735         (spam-report-gmane-spam-header): Remove.  Not used anymore.
22736
22737         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
22738         make `gnus-summary-sort-by-recipient' work with threading.
22739
22740         * nnweb.el (nnweb-google-wash-article): Print a message if article
22741         is not available.
22742
22743 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
22744
22745         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
22746         change.  Decode text/* parts content before displaying.
22747
22748 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
22749
22750         * mml-smime.el: Remove defvar of gnus-extract-address-components.
22751
22752 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22753
22754         * mm-view.el (mm-display-inline-fontify): Disable support modes.
22755
22756         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
22757         url-package-name, url-package-version,
22758         w3m-cid-retrieve-function-alist, w3m-current-buffer,
22759         w3m-display-inline-images, and w3m-minor-mode-map.
22760
22761 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
22762
22763         * message.el (message-tab-body-function): Fix mismatched custom type.
22764
22765         * gnus.el (gnus-group-change-level-function): Ditto.
22766
22767         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
22768
22769         * gnus-art.el (gnus-signature-limit)
22770         (gnus-article-mime-part-function): Ditto.
22771
22772 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
22773
22774         * mml.el (mml-mode): Silence the byte compiler.
22775
22776         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
22777         using `(sit-for 0)' before moving the point to the specified part;
22778         skip unbuttonized parts.
22779         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
22780         return to the summary window if gnus-auto-select-part is non-nil.
22781
22782 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
22783
22784         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
22785         New variables.
22786         (mml-dnd-attach-file, mml-mode): Use them.
22787
22788         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
22789         Make fetching article by MID work again for Google Groups.
22790         Add FIXME concerning gnus-group-make-web-group.
22791
22792         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
22793         Don't depend on Gnus by using mail-extract-address-components if
22794         gnus-extract-address-components is not bound.
22795
22796 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22797
22798         * gnus-art.el (gnus-mime-display-security): Don't display the
22799         signature, but only the signed part.
22800
22801 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22802
22803         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
22804
22805         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
22806         list, not listp.
22807
22808 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
22809
22810         * mm-encode.el (mm-encode-content-transfer-encoding):
22811         Likewise when encoding.
22812
22813         * mm-bodies.el (mm-decode-content-transfer-encoding):
22814         De-canonicalize CRLF for all text content types, not just
22815         text/plain.
22816
22817 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22818
22819         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
22820         valid article; point arrow and cursor at the MIME button.
22821
22822 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22823
22824         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
22825         Suggested by Dan Christensen <jdc@uwo.ca>.
22826
22827         * mm-decode.el (mm-save-part): Enable change of prompt.
22828
22829 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
22830
22831         * gnus-msg.el (gnus-inews-add-send-actions):
22832         Make `message-post-method' lambda parameter ARG `&optional'.
22833
22834 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
22835
22836         * gnus-sum.el (gnus-summary-mime-map):
22837         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
22838         gnus-article-jump-to-part.
22839
22840         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
22841         (gnus-article-edit-part): Use it.
22842         (gnus-article-part-wrapper): Add no-handle argument.
22843         (gnus-article-save-part-and-strip, gnus-article-delete-part):
22844         New functions.
22845
22846 2005-08-29  Romain Francoise  <romain@orebokech.com>
22847
22848         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
22849         docstring.
22850         (gnus-face-from-file): Likewise.
22851
22852 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
22853
22854         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
22855         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
22856         non-nil.
22857         (gnus-auto-select-part): New variable.
22858         (gnus-article-jump-to-part): New function.
22859         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
22860         (gnus-mime-delete-part): Allow selecting specified part after
22861         deleting or stripping parts.
22862         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
22863         part if argument is bogus.
22864
22865 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
22866
22867         * gnus-art.el (w3m-minor-mode-map):
22868         * gnus-spec.el (gnus-newsrc-file-version):
22869         * gnus-util.el (nnmail-active-file-coding-system)
22870         (gnus-original-article-buffer, gnus-user-agent):
22871         * gnus.el (gnus-ham-process-destinations)
22872         (gnus-parameter-ham-marks-alist)
22873         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
22874         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
22875         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
22876         * mm-decode.el (gnus-current-window-configuration):
22877         * mm-extern.el (gnus-article-mime-handles):
22878         * mm-url.el (url-current-object, url-package-name)
22879         (url-package-version):
22880         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
22881         (smime-keys, w3m-cid-retrieve-function-alist)
22882         (w3m-current-buffer, w3m-display-inline-images)
22883         (w3m-minor-mode-map):
22884         * mml-smime.el (gnus-extract-address-components):
22885         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
22886         (gnus-newsrc-hashtb, message-default-charset)
22887         (message-deletable-headers, message-options)
22888         (message-posting-charset, message-required-mail-headers)
22889         (message-required-news-headers):
22890         * mml1991.el (mc-pgp-always-sign):
22891         * mml2015.el (mc-pgp-always-sign):
22892         * nnheader.el (nnmail-extra-headers):
22893         * rfc1843.el (gnus-decode-encoded-word-function)
22894         (gnus-decode-header-function, gnus-newsgroup-name):
22895         * spam-stat.el (gnus-original-article-buffer): Add defvars.
22896
22897 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
22898
22899         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
22900         the end of the date treatments.
22901
22902 2005-08-15  Simon Josefsson  <jas@extundo.com>
22903
22904         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
22905         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
22906         Capello and Romain Francoise.
22907         (pgg-fetch-key-function): Remove, not used?
22908         (pgg-insert-url-with-w3): Require url, to get
22909         url-insert-file-contents regardless of where it is defined.
22910
22911 2005-08-13  Romain Francoise  <romain@orebokech.com>
22912
22913         * message.el (message-cite-original-1): New function.
22914         (message-cite-original): Use it.
22915         (message-cite-original-without-signature): Ditto.
22916
22917 2005-08-08  Romain Francoise  <romain@orebokech.com>
22918
22919         * message.el (message-yank-empty-prefix): New variable.
22920         (message-indent-citation): Use it.
22921         (message-cite-original-without-signature): Respect X-No-Archive.
22922
22923 2005-08-08  Simon Josefsson  <jas@extundo.com>
22924
22925         * pgg.el: Autoload url-insert-file-contents instead of loading
22926         w3/url.
22927         (pgg-insert-url-with-w3): Don't load url here.
22928
22929 2005-08-07  Jesper Harder  <harder@phys.au.dk>
22930
22931         * message.el (message-kill-to-signature): Don't insert newline at
22932         bol.
22933         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
22934
22935 2005-08-06  Romain Francoise  <romain@orebokech.com>
22936
22937         * message.el (message-user-fqdn): Fix typo in docstring.
22938
22939 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
22940
22941         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
22942
22943         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
22944
22945 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
22946
22947         * mm-bodies.el (mm-encode-body): Use coding system rather than
22948         charset to encode text.
22949
22950         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
22951         number of charsets if utf-8 is available (XEmacs).
22952
22953 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
22954
22955         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
22956         taken from `gnus-button-mid-or-mail-regexp'.
22957         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
22958         (gnus-button-alist): Improve regexp for domain part of the MIDs
22959         for news:localpart@domain buttons.
22960         (gnus-button-ctan-directory-regexp): Update.
22961
22962 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22963
22964         * sieve-manage.el (sieve-manage-interactive-login):
22965         Use make-local-variable rather than make-variable-buffer-local.
22966         (sieve-manage-open): Ditto.
22967         (sieve-manage-authenticate): Ditto.
22968
22969         * mml.el (mml-generate-mime-1): Make the content type default to
22970         text/plain if the filename is not specified.
22971
22972 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22973
22974         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
22975         instead of insert-buffer.
22976
22977         * message.el (message-yank-original): Ditto; set the mark at the
22978         end of the yanked message.
22979
22980 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22981
22982         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
22983         lines to scroll rather than to stop it.
22984
22985         * mml.el (mml-generate-default-type): Add doc string.
22986         (mml-generate-mime-1): Use mm-default-file-encoding or make it
22987         default to application/octet-stream when determining the content
22988         type if it is not specified for the part or the mml contents; add
22989         a comment about mml-generate-default-type.
22990
22991 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
22992
22993         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
22994         make it default to application/octet-stream when determining the
22995         content type if it is not specified for the external contents.
22996
22997 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22998
22999         * rfc2231.el (rfc2231-parse-string): Take care that not only a
23000         segmented parameter but also other parameters might be there.
23001
23002 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23003
23004         * mm-decode.el (mm-display-external): Delete temp file, directory
23005         and buffer immediately if the external process is exited.
23006
23007 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23008
23009         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
23010         fewer lines than that of scroll-margin.
23011         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
23012
23013 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23014
23015         * gnus-art.el (gnus-article-next-page): Revert.
23016         (gnus-article-beginning-of-window): New macro.
23017         (gnus-article-next-page-1): Use it.
23018         (gnus-article-prev-page): Ditto.
23019         (gnus-article-edit-part): Use insert-buffer-substring instead of
23020         insert-buffer.
23021         (gnus-article-edit-exit): Ditto.
23022
23023         * gnus-util.el (gnus-beginning-of-window): Remove.
23024         (gnus-end-of-window): Remove.
23025
23026         * lpath.el: Don't bind header-line-format and scroll-margin.
23027
23028 2005-07-25  Simon Josefsson  <jas@extundo.com>
23029
23030         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
23031         to have the url package without w3.  Reported by Daiki Ueno
23032         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
23033
23034 2005-07-20  Didier Verna  <didier@xemacs.org>
23035
23036         * gnus-diary.el: Remove the description comment (nndiary is now
23037         properly documented in the Gnus manual).
23038         Fix the spelling of "Back End".
23039         * nndiary.el: Ditto.
23040         Fix the copyright notice.
23041
23042 2005-07-18  Romain Francoise  <romain@orebokech.com>
23043
23044         * gnus-sum.el (gnus-summary-to-prefix)
23045         (gnus-summary-newsgroup-prefix): New variables.
23046         (gnus-summary-from-or-to-or-newsgroups): Use them.
23047
23048 2005-07-17  Romain Francoise  <romain@orebokech.com>
23049
23050         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
23051         space as it's generally not especially interesting to the user.
23052
23053 2005-07-16  Romain Francoise  <romain@orebokech.com>
23054
23055         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
23056         nil to avoid prompting and file modification if one of the
23057         messages at the top of the nnfolder file contains a copyright
23058         notice.
23059         Update copyright notice.
23060
23061         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
23062         instead of `current-time-string' as the latter creates a time
23063         string that is not RFC 2822 compliant (it lacks the zone).
23064         Update copyright notice.
23065
23066 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
23067
23068         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
23069         for text/rtf.  Display default in prompt.  Pass default for M-n.
23070
23071         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
23072
23073 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23074
23075         * gnus-msg.el (gnus-button-mailto):
23076         Remove save-selected-window-window hackery because it relies on
23077         save-selected-window internals.
23078
23079 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23080
23081         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
23082         (gnus-article-next-page-1): Use gnus-beginning-of-window.
23083         (gnus-article-prev-page): Ditto.
23084
23085         * gnus-util.el (gnus-beginning-of-window): New function.
23086         (gnus-end-of-window): New function.
23087
23088         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
23089
23090 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
23091
23092         * gnus-score.el (gnus-score-edit-all-score):
23093         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
23094         gnus-message.
23095
23096 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23097
23098         * gnus-msg.el (gnus-button-mailto):
23099         Remove save-selected-window-window hackery because it relies on
23100         save-selected-window internals.
23101
23102 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23103
23104         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
23105         add-minor-mode.
23106         (gnus-binary-mode): Ditto.
23107
23108         * gnus-topic.el (gnus-topic-mode): Ditto.
23109
23110 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
23111
23112         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
23113         (gnus-article-prev-page): Take scroll-margin into consideration.
23114
23115 2005-07-04  Lute Kamstra  <lute@gnu.org>
23116
23117         Update FSF's address in GPL notices.
23118
23119 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
23120
23121         * gnus.el (gnus-exit):
23122         * gnus-group.el (gnus-group-icons):
23123         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
23124
23125         * gnus-nocem.el (gnus-nocem):
23126         * message.el (message-various, message-buffers, message-sending)
23127         (message-interface, message-forwarding, message-insertion)
23128         (message-headers, message-news, message-mail):
23129         * pgg-gpg.el (pgg-gpg):
23130         * pgg-parse.el (pgg-parse):
23131         * pgg-pgp.el (pgg-pgp):
23132         * pgg-pgp5.el (pgg-pgp5):
23133         * pop3.el (pop3): Finish `defgroup' description with period.
23134
23135 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
23136
23137         * gnus-art.el (article-display-face): Improve the efficiency.
23138         (article-display-x-face): Ditto; remove gray x-face stuff.
23139
23140 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23141
23142         * gnus-art.el (article-display-face): Correct the position in
23143         which Faces are inserted.
23144
23145 2005-06-29  Didier Verna  <didier@xemacs.org>
23146
23147         * gnus-art.el (article-display-face): Display faces in correct
23148         order.
23149
23150 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23151
23152         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
23153         (gnus-fill-real-hashtb): Use hash table instead of obarray.
23154         (gnus-nocem-check-article): Fetch the Type header.
23155         (gnus-nocem-message-wanted-p): Fix the way to examine types.
23156         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
23157         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
23158         make sure gnus-nocem-hashtb is initialized.
23159         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
23160         (gnus-nocem-unwanted-article-p): Ditto.
23161
23162         * pgg.el (pgg-verify): Return the verification result.
23163
23164 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23165
23166         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
23167         is ascii.
23168
23169 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
23170
23171         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
23172         `show-nonbreak-escape'.
23173
23174 2005-06-23  Lute Kamstra  <lute@gnu.org>
23175
23176         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
23177
23178         * dig.el (dig-mode):
23179         * smime.el (smime-mode): Use gnus-run-mode-hooks.
23180
23181 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
23182
23183         * nnimap.el (nnimap-split-download-body): Fix spellings.
23184
23185 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
23186
23187         * gnus-art.el (gnus-article-encrypt-body):
23188         * gnus-cus.el (gnus-score-customize):
23189         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
23190         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
23191
23192 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
23193
23194         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
23195         header by looking for magic "MII" at the beginning.
23196
23197 2005-06-16  Miles Bader  <miles@gnu.org>
23198
23199         * gnus-xmas.el (gnus-xmas-group-startup-message):
23200         Use renamed gnus-splash face.
23201
23202         * assistant.el (assistant-field): Remove "-face" suffix from face name.
23203         (assistant-field-face): New backward-compatibility alias for renamed
23204         face.
23205         (assistant-render-text): Use renamed assistant-field face.
23206
23207         * spam.el (spam): Remove "-face" suffix from face name.
23208         (spam-face): New backward-compatibility alias for renamed face.
23209         (spam-face, spam-initialize): Use renamed spam face.
23210
23211         * message.el (message-header-to, message-header-cc)
23212         (message-header-subject, message-header-newsgroups)
23213         (message-header-other, message-header-name)
23214         (message-header-xheader, message-separator, message-cited-text)
23215         (message-mml): Remove "-face" suffix from face names.
23216         (message-header-to-face, message-header-cc-face)
23217         (message-header-subject-face, message-header-newsgroups-face)
23218         (message-header-other-face, message-header-name-face)
23219         (message-header-xheader-face, message-separator-face)
23220         (message-cited-text-face, message-mml-face):
23221         New backward-compatibility aliases for renamed faces.
23222         (message-font-lock-keywords): Use renamed message faces.
23223
23224         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
23225         (sieve-test-commands, sieve-tagged-arguments):
23226         Remove "-face" suffix from face names.
23227         (sieve-control-commands-face, sieve-action-commands-face)
23228         (sieve-test-commands-face, sieve-tagged-arguments-face):
23229         New backward-compatibility aliases for renamed faces.
23230         (sieve-control-commands-face, sieve-action-commands-face)
23231         (sieve-test-commands-face, sieve-tagged-arguments-face):
23232         Use renamed sieve faces.
23233
23234         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
23235         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
23236         (gnus-group-news-3-empty, gnus-group-news-4)
23237         (gnus-group-news-4-empty, gnus-group-news-5)
23238         (gnus-group-news-5-empty, gnus-group-news-6)
23239         (gnus-group-news-6-empty, gnus-group-news-low)
23240         (gnus-group-news-low-empty, gnus-group-mail-1)
23241         (gnus-group-mail-1-empty, gnus-group-mail-2)
23242         (gnus-group-mail-2-empty, gnus-group-mail-3)
23243         (gnus-group-mail-3-empty, gnus-group-mail-low)
23244         (gnus-group-mail-low-empty, gnus-summary-selected)
23245         (gnus-summary-cancelled, gnus-summary-high-ticked)
23246         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
23247         (gnus-summary-high-ancient, gnus-summary-low-ancient)
23248         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
23249         (gnus-summary-low-undownloaded)
23250         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
23251         (gnus-summary-low-unread, gnus-summary-normal-unread)
23252         (gnus-summary-high-read, gnus-summary-low-read)
23253         (gnus-summary-normal-read, gnus-splash):
23254         Remove "-face" suffix from face names.
23255         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
23256         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
23257         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
23258         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
23259         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
23260         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
23261         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
23262         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
23263         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
23264         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
23265         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
23266         (gnus-summary-selected-face, gnus-summary-cancelled-face)
23267         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
23268         (gnus-summary-normal-ticked-face)
23269         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
23270         (gnus-summary-normal-ancient-face)
23271         (gnus-summary-high-undownloaded-face)
23272         (gnus-summary-low-undownloaded-face)
23273         (gnus-summary-normal-undownloaded-face)
23274         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
23275         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
23276         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
23277         (gnus-splash-face):
23278         New backward-compatibility aliases for renamed faces.
23279         (gnus-group-startup-message): Use renamed gnus faces.
23280
23281         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
23282         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
23283         (gnus-server-agent): Remove "-face" suffix from face names.
23284         (gnus-server-agent-face, gnus-server-opened-face)
23285         (gnus-server-closed-face, gnus-server-denied-face)
23286         (gnus-server-offline-face):
23287         New backward-compatibility aliases for renamed faces.
23288         (gnus-server-agent-face, gnus-server-opened-face)
23289         (gnus-server-closed-face, gnus-server-denied-face)
23290         (gnus-server-offline-face): Use renamed gnus faces.
23291
23292         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
23293         Remove "-face" suffix from face names.
23294         (gnus-picon-xbm-face, gnus-picon-face):
23295         New backward-compatibility aliases for renamed faces.
23296
23297         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
23298         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
23299         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
23300         (gnus-cite-11): Remove "-face" suffix from face names.
23301         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
23302         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
23303         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
23304         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
23305         New backward-compatibility aliases for renamed faces.
23306         (gnus-cite-attribution-face, gnus-cite-face-list)
23307         (gnus-article-boring-faces): Use renamed gnus faces.
23308
23309         * gnus-art.el (gnus-signature, gnus-header-from)
23310         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
23311         (gnus-header-content): Remove "-face" suffix from face names.
23312         (gnus-signature-face, gnus-header-from-face)
23313         (gnus-header-subject-face, gnus-header-newsgroups-face)
23314         (gnus-header-name-face, gnus-header-content-face):
23315         New backward-compatibility aliases for renamed faces.
23316         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
23317
23318         * gnus-sum.el (gnus-summary-selected-face)
23319         (gnus-summary-highlight): Use renamed gnus faces.
23320         * gnus-group.el (gnus-group-highlight): Likewise.
23321
23322 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
23323
23324         * gnus-sieve.el (gnus-sieve-article-add-rule):
23325         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
23326         * spam-stat.el (spam-stat-buffer-change-to-spam)
23327         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
23328
23329         * message.el (message-is-yours-p):
23330         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
23331
23332 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
23333
23334         * mm-view.el (mm-inline-text): Withdraw the last change.
23335
23336 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23337
23338         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
23339         executing enriched-decode.
23340
23341 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
23342
23343         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
23344         charset of tar files.
23345
23346 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
23347
23348         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
23349
23350 2005-06-04  Lute Kamstra  <lute@gnu.org>
23351
23352         * nnfolder.el (nnfolder-read-folder): Make sure that undo
23353         information is never recorded.
23354
23355 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
23356
23357         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
23358
23359 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23360
23361         * pop3.el (pop3-apop): Run md5 in the binary mode.
23362
23363         * starttls.el (starttls-set-process-query-on-exit-flag):
23364         Use eval-and-compile.
23365
23366 2005-05-31  Simon Josefsson  <jas@extundo.com>
23367
23368         * smime.el (smime-replace-in-string): Define.
23369         (smime-cert-by-ldap-1): Use it.
23370
23371 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
23372
23373         * gnus-art.el (article-display-x-face): Replace
23374         process-kill-without-query by gnus-set-process-query-on-exit-flag.
23375
23376         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
23377         set-process-query-on-exit-flag or process-kill-without-query.
23378
23379         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
23380         loop instead of replace-regexp.
23381
23382         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
23383         instead of process-kill-without-query if it is available.
23384
23385         * lpath.el: Fbind ldap-search-entries.
23386
23387         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
23388         instead of find-file-hooks if it is available.
23389
23390         * mml1991.el: Bind pgg-default-user-id when compiling.
23391
23392         * mml2015.el: Bind pgg-default-user-id when compiling.
23393
23394         * nndraft.el (nndraft-request-associate-buffer):
23395         Use write-contents-functions instead of write-contents-hooks if it is
23396         available.
23397
23398         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
23399         instead of find-file-hooks if it is available.
23400
23401         * nntp.el (nntp-open-connection): Replace
23402         process-kill-without-query by gnus-set-process-query-on-exit-flag.
23403         (nntp-open-ssl-stream): Ditto.
23404         (nntp-open-tls-stream): Ditto.
23405
23406         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
23407         set-process-query-on-exit-flag or process-kill-without-query.
23408         (starttls-open-stream-gnutls): Use it instead of
23409         process-kill-without-query.
23410         (starttls-open-stream): Ditto.
23411
23412 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
23413
23414         * smime.el (smime-cert-by-ldap-1): Don't use
23415         replace-regexp-in-string.
23416
23417 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
23418
23419         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
23420
23421         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
23422         in PEM format.  Adjust to the XEmacs compatibility.
23423
23424 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
23425
23426         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
23427         by `string-to-number'.
23428         * gnus-agent.el (gnus-agent-regenerate-group)
23429         (gnus-agent-fetch-articles): Ditto.
23430         * gnus-art.el (gnus-button-fetch-group): Ditto.
23431         * gnus-cache.el (gnus-cache-generate-active)
23432         (gnus-cache-articles-in-group): Ditto.
23433         * gnus-group.el (gnus-group-set-current-level)
23434         (gnus-group-insert-group-line): Ditto.
23435         * gnus-score.el (gnus-score-set-expunge-below)
23436         (gnus-score-set-mark-below, gnus-summary-score-effect)
23437         (gnus-summary-score-entry): Ditto.
23438         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
23439         (gnus-soup-pack): Ditto.
23440         * gnus-spec.el (gnus-xmas-format): Ditto.
23441         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
23442         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
23443         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
23444         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
23445         * nndb.el (nndb-get-remote-expire-response): Ditto.
23446         * nndiary.el (nndiary-parse-schedule-value)
23447         (nndiary-string-to-number, nndiary-request-replace-article)
23448         (nndiary-request-article): Ditto.
23449         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
23450         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
23451         * nneething.el (nneething-make-head): Ditto.
23452         * nnfolder.el (nnfolder-request-article)
23453         (nnfolder-retrieve-headers): Ditto.
23454         * nnheader.el (nnheader-file-to-number): Ditto.
23455         * nnkiboze.el (nnkiboze-request-article): Ditto.
23456         * nnmail.el (nnmail-process-unix-mail-format)
23457         (nnmail-process-babyl-mail-format): Ditto.
23458         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
23459         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
23460         (nnmh-request-create-group, nnmh-request-list-1)
23461         (nnmh-request-group, nnmh-request-article): Ditto.
23462         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
23463         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
23464         * nnsoup.el (nnsoup-make-active): Ditto.
23465         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
23466         * nntp.el (nntp-find-group-and-number)
23467         (nntp-retrieve-headers-with-xover): Ditto.
23468         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
23469         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
23470         (pgg-format-key-identifier): Ditto.
23471         * pop3.el (pop3-last, pop3-stat): Ditto.
23472         * qp.el (quoted-printable-decode-region): Ditto.
23473
23474         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
23475         of concat.
23476
23477 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23478
23479         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
23480
23481         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
23482
23483         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
23484
23485         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
23486
23487         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
23488
23489         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
23490
23491         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
23492         (gnus-carpal-mode): Ditto.
23493
23494         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
23495         (gnus-browse-mode): Ditto.
23496
23497         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
23498
23499         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
23500
23501 2005-05-29  Richard M. Stallman  <rms@gnu.org>
23502
23503         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
23504
23505 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23506
23507         * gnus-util.el (gnus-run-mode-hooks): New function.
23508
23509         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
23510
23511         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
23512         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
23513
23514 2005-05-27  Lute Kamstra  <lute@gnu.org>
23515
23516         * dns-mode.el (dns-mode): Specify customization group.
23517
23518 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
23519
23520         * gnus-agent.el (gnus-agent-make-mode-line-string):
23521         Use mode-line-highlight as mouse-face.
23522
23523 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23524
23525         * canlock.el (canlock): Change the parent group to news.
23526
23527         * deuglify.el (gnus-outlook-deuglify): Add :group.
23528
23529         * dig.el (dig): Add :group.
23530
23531         * dns-mode.el (dns-mode): Add :group.
23532
23533         * encrypt.el (encrypt): Add :group.
23534
23535         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
23536         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
23537         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
23538         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
23539         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
23540
23541         * gnus-diary.el (gnus-diary): Add :group.
23542
23543         * gnus.el (gnus-group-news-1-face): Add :group.
23544         (gnus-group-news-1-empty-face): Ditto.
23545         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
23546         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
23547         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
23548         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
23549         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
23550         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
23551         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
23552         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
23553         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
23554         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
23555         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
23556         (gnus-summary-high-ticked-face): Ditto.
23557         (gnus-summary-low-ticked-face): Ditto.
23558         (gnus-summary-normal-ticked-face): Ditto.
23559         (gnus-summary-high-ancient-face): Ditto.
23560         (gnus-summary-low-ancient-face): Ditto.
23561         (gnus-summary-normal-ancient-face): Ditto.
23562         (gnus-summary-high-undownloaded-face): Ditto.
23563         (gnus-summary-low-undownloaded-face): Ditto.
23564         (gnus-summary-normal-undownloaded-face): Ditto.
23565         (gnus-summary-high-unread-face): Ditto.
23566         (gnus-summary-low-unread-face): Ditto.
23567         (gnus-summary-normal-unread-face): Ditto.
23568         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
23569         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
23570
23571         * hashcash.el (hashcash): New custom group.
23572         (hashcash-default-payment): Add :group.
23573         (hashcash-payment-alist): Ditto.
23574         (hashcash-default-accept-payment): Ditto.
23575         (hashcash-accept-resources): Ditto.
23576         (hashcash-path): Ditto.
23577         (hashcash-extra-generate-parameters): Ditto.
23578         (hashcash-double-spend-database): Ditto.
23579         (hashcash-in-news): Ditto.
23580
23581         * message.el (message-minibuffer-local-map): Add :group.
23582
23583         * netrc.el (netrc): Add :group.
23584
23585         * sieve-manage.el (sieve-manage-log): Add :group.
23586         (sieve-manage-default-user): Diito.
23587         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
23588         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
23589         (sieve-manage-authenticators): Ditto.
23590         (sieve-manage-authenticator-alist): Ditto.
23591         (sieve-manage-default-port): Ditto.
23592
23593         * sieve-mode.el (sieve-control-commands-face): Add :group.
23594         (sieve-action-commands-face): Ditto.
23595         (sieve-test-commands-face): Ditto.
23596         (sieve-tagged-arguments-face): Ditto.
23597
23598         * smime.el (smime): Add :group.
23599
23600         * spam-report.el (spam-report): Add :group.
23601
23602         * spam.el (spam, spam-face): Add :group.
23603
23604 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23605
23606         * nntp.el (nntp-next-result-arrived-p): Some news servers may
23607         return \n.\n.\n at the end of articles.  Protect against that.
23608         (nntp-with-open-group): Allow debugging.
23609
23610         * nnheader.el (mail-header-set-extra): Make into a function
23611         because I just could't understand how to quote the list properly.
23612
23613         * dns.el (query-dns-cached): New function.
23614
23615 2005-05-26  Lute Kamstra  <lute@gnu.org>
23616
23617         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
23618
23619 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23620
23621         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
23622
23623         * gnus-art.el: Don't autoload mail-extract-address-components.
23624
23625         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
23626         eval-and-compile to evaluate it.
23627
23628         * hashcash.el: Don't autoload executable-find.
23629
23630         * nndb.el: Don't declare the nndb back end two or more times; don't
23631         autoload news-reply-mode, news-setup, cancel-timer and telnet.
23632
23633         * nntp.el: Autoload format-spec instead of format; use
23634         eval-and-compile to evaluate autoload forms.
23635
23636 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
23637
23638         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
23639
23640 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23641
23642         * gnus.el (gnus-version-number): Bump version.
23643
23644 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
23645
23646         * gnus.el: No Gnus v0.3 is released.
23647
23648 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23649
23650         * lpath.el (featurep): Bind show-nonbreak-escape.
23651
23652 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23653
23654         * gnus-art.el (gnus-article-edit-part): Disable undo.
23655
23656 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23657
23658         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
23659         gnus-article-date-lapsed-new-header is t if date timer is active;
23660         skip headers in which the original date value is empty.
23661         (gnus-article-save-original-date): Redefine it as a macro.
23662         (gnus-display-mime): Use it.
23663
23664 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23665
23666         * gnus-art.el (article-date-ut): Support converting date in
23667         forwarded parts as well.
23668         (gnus-article-save-original-date): New function.
23669         (gnus-display-mime): Use it.
23670
23671 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
23672
23673         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
23674         enclosure element of <item>.
23675
23676 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
23677
23678         * message.el (message-kill-buffer-query): Rename from
23679         `message-kill-buffer-query-if-modified'.  Add :version.
23680
23681 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
23682
23683         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
23684         window layout.
23685
23686 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23687
23688         * mml.el: Autoload dnd when compiling.
23689
23690 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
23691
23692         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
23693         x-dnd-*.
23694
23695 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23696
23697         * qp.el (quoted-printable-encode-region): Save excursion.
23698
23699 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
23700
23701         * message.el (message-kill-buffer-query-if-modified): Add new variable
23702         so the user can kill a modified message buffer quickly.
23703         (message-kill-buffer): Use it.
23704
23705 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23706
23707         * lpath.el: Fbind display-time-event-handler; don't fbind
23708         string-to-multibyte.
23709
23710         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
23711
23712 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23713
23714         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
23715         contained in text because xml.el decodes entities) with LFs.
23716
23717 2005-04-11  Lute Kamstra  <lute@gnu.org>
23718
23719         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
23720         differently.
23721
23722 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
23723
23724         * mm-util.el (mm-detect-coding-region): Typo.
23725
23726 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
23727
23728         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
23729
23730 2005-04-06  Deepak Goel  <deego@gnufans.org>
23731
23732         * spam-stat.el (spam-stat-score-buffer): Add a call to a
23733         user-function allow user modifications of the scores.
23734         (spam-stat-score-buffer-user): New function, to allow
23735         user-computed modifications to the score.
23736         (spam-stat-score-buffer-user-functions): List of additional
23737         scoring functions.
23738         (spam-stat-error-holder): Global temporary error holder.
23739         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
23740         variable.
23741
23742 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
23743
23744         * gnus-registry.el (gnus-registry-clean-empty-function)
23745         (gnus-registry-trim, gnus-registry-fetch-groups)
23746         (gnus-registry-delete-group): Groups that match
23747         `gnus-registry-ignored-groups' are removed from the registry
23748         entries, not just ignored for splitting.  This helps clean up the
23749         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
23750         to get all the groups a message ID is in.
23751
23752         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
23753         (spam-stat-split-fancy): Change "threshhold" to "threshold".
23754         (spam-stat-score-buffer-user-functions): Add :number custom type.
23755
23756 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
23757
23758         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
23759         argument in XEmacs.
23760
23761         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
23762         (nnrss-request-group): Decode group name first.
23763         (nnrss-request-article): Make a text/plain article if mml-to-mime
23764         failed.
23765         (nnrss-get-encoding): Return a compatible encoding according to
23766         nnrss-compatible-encoding-alist.
23767         (nnrss-find-el): Use consp instead of listp.
23768         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
23769
23770 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
23771
23772         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
23773         which Emacs 20 doesn't support.
23774         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
23775
23776 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
23777
23778         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
23779         silence the byte compiler inside the defun.
23780
23781         * gnus-demon.el (parse-time-string): Add autoload.
23782
23783         * gnus-delay.el (parse-time-string): Add autoload.
23784
23785         * gnus-art.el (parse-time-string): Add autoload.
23786
23787         * nnultimate.el (parse-time): Require for `parse-time-string'.
23788
23789 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
23790
23791         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
23792
23793         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
23794
23795         * smime.el (smime-ldap-host-list): Add :version.
23796
23797 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
23798
23799         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
23800         pass it to `gnus-browse-read-group'.
23801         (gnus-browse-read-group): Add NUMBER argument and pass it to
23802         `gnus-group-read-ephemeral-group'.
23803
23804         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
23805         argument and pass it to `gnus-group-read-group'.
23806
23807 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
23808
23809         * mm-util.el (mm-xemacs-find-mime-charset): Only call
23810         mm-xemacs-find-mime-charset-1 if we have the mule feature
23811         available at runtime.
23812
23813 2005-03-25  Werner Lemberg  <wl@gnu.org>
23814
23815         * nnmaildir.el: Replace `illegal' with `invalid'.
23816
23817 2005-03-23  Lute Kamstra  <lute@gnu.org>
23818
23819         * time-date.el: Add comment on time value formats.
23820         Don't require parse-time.
23821         (with-decoded-time-value): New macro.
23822         (encode-time-value): New function.
23823         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
23824         (days-to-time): Return a valid time value when arg is huge.
23825         (time-since): Use time-subtract.
23826         (time-to-number-of-days): Use time-to-seconds.
23827
23828 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23829
23830         * gnus-start.el (gnus-display-time-event-handler):
23831         Check display-time-timer at runtime rather than only at load time
23832         in case display-time-mode is turned off in the mean time.
23833
23834 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
23835
23836         * nnimap.el (nnimap-open-connection): Print which authinfo file is
23837         used.
23838
23839         * nneething.el (nneething-map-file-directory): Derive from
23840         `gnus-directory'.
23841
23842         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
23843         the To/Cc button.
23844
23845 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
23846
23847         * nnmaildir.el (nnmaildir-request-accept-article):
23848         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
23849
23850 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
23851
23852         * gnus-async.el: Require timer-funcs at compile time when in
23853         XEmacs for `run-with-idle-timer'.
23854
23855 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
23856
23857         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
23858         autoloaded function.
23859
23860 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
23861
23862         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
23863
23864 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
23865
23866         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
23867
23868 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23869
23870         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
23871         Add gnus-expert-user to default.
23872
23873 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
23874
23875         * nnimap.el (nnimap-open-server): Ditto.
23876
23877         * imap.el (imap-authenticate): Fix typo.
23878
23879 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
23880
23881         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
23882         buffer (since IMAP server might return FETCH response out of
23883         order, and the nntp buffer must be sorted).
23884
23885 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
23886
23887         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
23888         comparison on string.
23889
23890         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
23891         (gnus-agent-score): Rename category keywords to match gnus-cus.
23892         (gnus-agent-summary-fetch-series): Modify to protect against
23893         gnus-agent-summary-fetch-group clearing processable flags.
23894         (gnus-agent-synchronize-group-flags): Update live group buffer as
23895         synchronization may occur due to the user toggle the plugged
23896         status.
23897         (gnus-agent-fetch-group-1): Clear downloadable flag when article
23898         successfully downloaded.
23899         (gnus-agent-expire-group-1): Avoid using markers when the overview
23900         is in ascending order; greatly improves performance.
23901         (gnus-agent-regenerate-group):
23902         Use gnus-agent-synchronize-group-flags to reset read status in both
23903         gnus and server.
23904         (gnus-agent-update-files-total-fetched-for): Fix initial size.
23905
23906 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
23907
23908         * message.el: Don't autoload former message-utils variables.
23909         (message-strip-subject-trailing-was): Change doc string.
23910
23911         * nnweb.el: Fixes for `gnus-group-make-web-group'.
23912         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
23913         (nnweb-google-search): Add "hl=en" here.
23914         (nnweb-google-parse-1, nnweb-google-create-mapping):
23915         Don't hardcode URL.
23916
23917 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
23918
23919         * message.el (message-get-reply-headers, message-followup):
23920         Mention related variables `message-use-followup-to' and
23921         `message-use-mail-followup-to', in the information buffer.
23922
23923         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
23924         of broken groups(-beta).google.com.
23925
23926 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
23927
23928         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
23929         parameter to invoked gnus-request-move-article; remove the
23930         redundant gnus-sum-hint-move-is-internal variable; apply the marks
23931         all at once instead of once per article.
23932         (gnus-summary-remove-process-mark): Accept a list of articles as
23933         well as a single article for processing.
23934
23935         * gnus-int.el (gnus-request-move-article): Add move-is-internal
23936         parameter.
23937
23938         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
23939
23940         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
23941
23942         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
23943         parameter.
23944
23945         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
23946         parameter.
23947
23948         * nnimap.el (nnimap-request-move-article): Add move-is-internal
23949         parameter and remove the gnus-sum-hint-move-is-internal variable.
23950
23951         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
23952         parameter.
23953
23954         * nndraft.el (nndraft-request-move-article): Add move-is-internal
23955         parameter.
23956
23957         * nndiary.el (nndiary-request-move-article): Add move-is-internal
23958         parameter.
23959
23960         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
23961
23962         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
23963         parameter.
23964
23965         * nnagent.el (nnagent-request-move-article): Add move-is-internal
23966         parameter.
23967
23968 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
23969
23970         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
23971         a more conservative way.
23972
23973 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
23974
23975         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
23976         buffer, so it moves the window's cursor.
23977
23978 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
23979
23980         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
23981         `mm-dissect-multipart' and receive the from field as an (optional)
23982         argument from `mm-dissect-multipart'.
23983         (mm-dissect-multipart): Receive the from field as an argument and
23984         pass it on when we call `mm-dissect-buffer' on MIME parts.
23985         Fixes verification/decryption of signed/encrypted MIME parts.
23986
23987 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
23988
23989         * gnus-sum.el (gnus-summary-move-article):
23990         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
23991         whatever it calls (right now, only nnimap-request-move article
23992         respects it).
23993
23994         * nnimap.el (nnimap-request-move-article):
23995         When gnus-sum-hint-move-is-internal is set, don't do the extra
23996         nnimap-request-article.
23997
23998 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
23999
24000         * nnheader.el (nnheader-find-file-noselect): Add doc string.
24001
24002         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
24003         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
24004
24005         * gnus-sum.el (gnus-summary-caesar-message):
24006         Apply `gnus-treat-article' after rotation.
24007
24008         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
24009         doc string.
24010
24011 2005-02-22  Simon Josefsson  <jas@extundo.com>
24012
24013         * encrypt.el (encrypt-password-cache-expiry): Remove (use
24014         `password-cache-expiry' instead).  Reported by Arne Jørgensen
24015         <arne@arnested.dk>.
24016         (encrypt): Add password-cache and password-cache-expiry as group
24017         members.
24018
24019 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
24020
24021         * smime.el (smime-ldap-host-list): Doc fix.
24022         (smime-ask-passphrase): Use `password-read-and-add' to read (and
24023         cache) password.
24024         (smime-sign-region): Use it.
24025         (smime-decrypt-region): Use it.
24026         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
24027         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
24028         fails.
24029         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
24030         certificate from DER to PEM format rather than calling openssl.
24031
24032         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
24033
24034         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
24035         for signing/encryption.
24036
24037         * mml.el (mml-parse-1): Use them.
24038
24039 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
24040
24041         * nnrss.el (nnrss-verbose): Remove.
24042         (nnrss-request-group): Use `nnheader-message' instead.
24043
24044 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
24045
24046         * nnrss.el (nnrss-verbose): New variable.
24047         (nnrss-request-group): Make it say nnrss is requesting a group.
24048
24049 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
24050
24051         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
24052         Handle news URL with given port correctly.
24053
24054 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24055
24056         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
24057         containing special characters.
24058
24059         * gnus-sum.el (gnus-summary-edit-article): Ditto.
24060
24061         * mml.el (mime-to-mml): Ditto.
24062
24063         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
24064         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
24065         (rfc2047-decode-region): Quote decoded words containing special
24066         characters when rfc2047-quote-decoded-words-containing-tspecials
24067         is non-nil.
24068
24069 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
24070
24071         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
24072
24073         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
24074
24075 2005-02-15  Simon Josefsson  <jas@extundo.com>
24076
24077         * nnimap.el (nnimap-debug): Doc fix.
24078
24079         * imap.el (imap-debug): Doc fix.
24080
24081 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24082
24083         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
24084
24085 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
24086
24087         * gnus.el (spam-contents): Improve docs for spam-contents
24088         parameter in its variable incarnation.
24089
24090 2005-02-14  Simon Josefsson  <jas@extundo.com>
24091
24092         * smime-ldap.el: Use require instead of load-library for ldap.
24093         (smime-ldap-search): Indent.
24094         (smime-ldap-search-internal): Shorten line.
24095
24096         * smime.el (smime-cert-by-dns): Add doc-string.
24097         (smime-cert-by-ldap-1): Indent.
24098
24099         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
24100         mml-smime-get-dns-ldap.
24101         (mml-smime-encrypt-query): Use new function.  Default to ldap.
24102
24103 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
24104
24105         * smime.el: Require smime-ldap.
24106         (smime-ldap-host-list): New variable.
24107         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
24108
24109         * mml-smime.el (mml-smime-encrypt-query): New function.
24110         (mml-smime-encrypt-query): Use it.
24111
24112         * smime-ldap.el: New file.
24113
24114 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
24115
24116         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
24117
24118 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
24119
24120         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
24121         argument in doc string.  Make query for type more clear.
24122
24123 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
24124
24125         * gnus.el (gnus-group-startup-message): Search for gnus images in
24126         etc/images/gnus.
24127         * mm-util.el (mm-image-load-path): Likewise.
24128         * smiley.el (smiley-data-directory): Search for smilies in
24129         etc/images/smilies.
24130
24131 2005-02-09  Kim F. Storm  <storm@cua.dk>
24132
24133         Change Emacs release version from 21.4 to 22.1 throughout.
24134         Change Emacs development version from 21.3.50 to 22.0.50.
24135
24136 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24137
24138         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
24139
24140         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
24141         non-Mule XEmacs as well.
24142         (mm-decompress-buffer): Signal an error intentionally if it does
24143         not decompress compressed data because auto-compression-mode is
24144         disabled.
24145
24146 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
24147
24148         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
24149         an ID in the registry even if it has no groups.
24150
24151 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24152
24153         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
24154         merge it into mm-decompress-buffer.
24155         (gnus-mime-copy-part): Use the MIME part charset, the value which
24156         a user specified or gnus-newsgroup-charset for decoding, like
24157         gnus-mime-inline-part does; set buffer-file-coding-system to tell
24158         save-buffer what was used.  Suggested by Kevin Ryde
24159         <user42@zip.com.au>.
24160         (gnus-mime-inline-part): Allow the name parameter as well as the
24161         filename parameter; force decompressing of compressed data; always
24162         display contents being not decoded as unibyte.
24163
24164         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
24165         as well as the filename parameter.
24166
24167         * mm-util.el (mm-decompress-buffer):
24168         Merge gnus-mime-jka-compr-maybe-uncompress.
24169         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
24170         of compressed data.
24171
24172 2005-02-08  Simon Josefsson  <jas@extundo.com>
24173
24174         * imap.el (imap-log): Doc fix.
24175
24176 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
24177
24178         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
24179         the coding cookies; decompress compressed parts.
24180
24181         * mml.el (mml-generate-mime-1): Add the charset parameter according
24182         to the value which a user specified manually or the coding cookie.
24183
24184         * mm-util.el (mm-string-to-multibyte): New function.
24185         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
24186         (mm-coding-system-to-mime-charset): New function.
24187         (mm-decompress-buffer): New function.
24188         (mm-find-buffer-file-coding-system): New function.
24189
24190         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
24191         (mm-display-inline-fontify): Rewrite for decoding and decompressing
24192         parts.
24193
24194 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24195
24196         * mm-view.el (mm-display-inline-fontify): Decode a part according
24197         to the charset parameter.
24198
24199 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
24200
24201         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
24202         prefix arg is neither nil nor a number, as info specifies.
24203
24204 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
24205
24206         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
24207         timestamps.
24208
24209 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
24210
24211         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
24212         groups error checking and notify user.
24213
24214 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
24215
24216         * message.el (message-send-mail-function): Check existence of
24217         sendmail-program first before using default value
24218         `message-send-mail-with-sendmail'.  Otherwise use more generic
24219         `smtpmail-send-it'.
24220
24221 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
24222
24223         * nntp.el (nntp-request-update-info): Always return nil.
24224
24225 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
24226
24227         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
24228
24229 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
24230
24231         * message.el (message-beginning-of-line): Change the behavior when
24232         invoked between BOL and : so that it first moves backward.
24233
24234 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24235
24236         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
24237         article buffer when editing of the article is discarded.
24238         (gnus-article-prepare): Revert.
24239
24240 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24241
24242         * gnus-art.el (gnus-article-prepare):
24243         Remove message-strip-forbidden-properties from the local hook.
24244
24245 2005-01-27  Simon Josefsson  <jas@extundo.com>
24246
24247         * password.el (password-cache-add): Only start one timer per key.
24248         Reported by Derek Atkins <warlord@MIT.EDU>.
24249
24250 2005-01-26  Steve Youngs  <steve@sxemacs.org>
24251
24252         * run-at-time.el: Remove.  It is no longer needed as
24253         timer-funcs.el in the xemacs-base package has a working version of
24254         `run-at-time'.
24255
24256         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
24257
24258         * password.el: Require timer-funcs instead of run-at-time in
24259         XEmacs.
24260         Remove `password-run-at-time' macro.
24261         (password-cache-add): Use `run-at-time' instead of
24262         `password-run-at-time'.
24263
24264         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
24265         Remove `nnheader-cancel-function-timers' alias,
24266         `cancel-function-timers' exists in XEmacs in timer-funcs.
24267
24268         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
24269         for `run-with-idle-timer'.
24270
24271         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
24272         for `run-at-time'.
24273
24274         * mm-url.el: Require timer-funcs at compile time when in XEmacs
24275         for `with-timeout'.
24276
24277         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
24278         the same as for XEmacs 21.4.
24279         No need to ignore `run-with-idle-timer', this function exists in
24280         XEmacs now in timer-funcs.el in the xemacs-base package.
24281         (dgnushack-compile): No need to delete
24282         run-at-time.el from the list of files to compile because it
24283         doesn't exist anymore.
24284
24285 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24286
24287         * mml.el (mml-generate-mime-1): Convert string into unibyte when
24288         inserting " *mml*" buffer's contents into a unibyte temp buffer.
24289
24290 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
24291
24292         * mail-source.el (mail-source-fetch-imap): Search for ^From case
24293         sensitively.
24294
24295 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
24296
24297         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
24298
24299 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24300
24301         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
24302         which will be inserted according to the multibyteness of a buffer
24303         rather than the type of contents.  Suggested by ARISAWA Akihiro
24304         <ari@mbf.ocn.ne.jp>.
24305
24306         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
24307         of string which old xml.el may return rather than a string.
24308
24309 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24310
24311         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
24312
24313 2005-01-16  Simon Josefsson  <jas@extundo.com>
24314
24315         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
24316         idn/idna.el isn't available.
24317         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
24318         <michael@waxrat.com>.
24319
24320         * hashcash.el: Remove non-FSF copyright header.
24321
24322         * hashcash.el (hashcash-extra-generate-parameters): New variable.
24323         (hashcash-generate-payment): Use it.
24324         (hashcash-generate-payment-async): Use it.
24325
24326 2005-01-15  Simon Josefsson  <jas@extundo.com>
24327
24328         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
24329         Suggested by Raymond Scholz <ray-2005@zonix.de>.
24330
24331         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
24332         gnus-summary-idna-message.
24333         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
24334         (gnus-summary-idna-message): New function.
24335
24336 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
24337
24338         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
24339         gnus-novice-user.
24340
24341 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24342
24343         * nnrss.el (nnrss-request-delete-group): Delete entries in
24344         nnrss-group-alist as well.
24345         (nnrss-save-server-data): Insert newline.
24346
24347 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
24348
24349         * gnus.el (gnus-user-agent): Use list of symbols instead of
24350         symbols.  Display full version number for (S)XEmacs.
24351         Optionally display (S)XEmacs codename.
24352
24353         * gnus-util.el (gnus-emacs-version): Update for new
24354         `gnus-user-agent'.
24355
24356         * gnus-msg.el (gnus-extended-version): Make it possible to omit
24357         Gnus version.
24358
24359 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
24360
24361         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
24362         which is unreadable in some setups.
24363
24364 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24365
24366         * gnus-spec.el (gnus-update-format-specifications): Flush the
24367         group format spec cache if it doesn't support decoded group names.
24368
24369 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
24370
24371         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
24372         Allow to apply decay on score files matching a regexp.
24373
24374 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
24375
24376         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
24377         compatibility in %g and %c.
24378
24379 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
24380
24381         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
24382         name for only %g and %c.
24383         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
24384         of gnus-tmp-group to decoded group name.
24385         (gnus-group-make-rss-group): Exclude `/'s from group names.
24386
24387 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24388
24389         * nnrss.el (nnrss-get-encoding): Fix regexp.
24390
24391 2004-12-27  Simon Josefsson  <jas@extundo.com>
24392
24393         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
24394         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
24395         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
24396
24397 2004-12-17  Kim F. Storm  <storm@cua.dk>
24398
24399         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
24400
24401         * gnus-sum.el (gnus-summary-mode-map): Likewise.
24402
24403 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
24404
24405         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
24406
24407 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24408
24409         * nnrss.el: Require rfc2047 and mml.
24410         (nnrss-file-coding-system): New variable.
24411         (nnrss-format-string): Redefine it as an inline function.
24412         (nnrss-decode-group-name): New function.
24413         (nnrss-string-as-multibyte): Remove.
24414         (nnrss-retrieve-headers): Decode group name; don't use
24415         nnrss-format-string.
24416         (nnrss-request-group): Decode group name.
24417         (nnrss-request-article): Decode group name; allow a Message-ID as
24418         well as an article number; don't use nnrss-format-string; encode a
24419         Message-ID string which may contain non-ASCII characters; use
24420         mml-to-mime to compose a MIME article.
24421         (nnrss-request-expire-articles): Decode group name.
24422         (nnrss-request-delete-group): Decode group name.
24423         (nnrss-fetch): Clarify error message.
24424         (nnrss-read-server-data): Use insert-file-contents instead of load;
24425         bind file-name-coding-system; use multibyte buffer.
24426         (nnrss-save-server-data): Bind coding-system-for-write to the
24427         value of nnrss-file-coding-system; bind file-name-coding-system;
24428         add coding cookie.
24429         (nnrss-read-group-data): Use insert-file-contents instead of load;
24430         bind file-name-coding-system; use multibyte buffer.
24431         (nnrss-save-group-data): Bind coding-system-for-write to the
24432         value of nnrss-file-coding-system; bind file-name-coding-system.
24433         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
24434         make it work with non-ASCII text.
24435         (nnrss-find-el): Make it work with old xml.el as well.
24436
24437 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
24438
24439         * nnrss.el (nnrss-get-encoding): New function.
24440         (nnrss-fetch): Use unibyte buffer initially; bind
24441         coding-system-for-read while performing mm-url-insert; remove ^Ms;
24442         decode contents according to the encoding attribute.
24443         (nnrss-save-group-data): Add coding cookie.
24444         (nnrss-mime-encode-string): New function.
24445         (nnrss-check-group): Use it to encode subject and author.
24446
24447 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
24448
24449         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
24450         imaginary variable.
24451
24452 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24453
24454         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
24455         correctly even if there are wide characters.
24456
24457 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
24458
24459         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
24460         downcased symbol names; make a new cache instead of reusing
24461         bbdb-hashtable.
24462
24463 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24464
24465         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
24466         concatenating segments rather than before concatenating them.
24467         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
24468
24469         * message.el (message-get-reply-headers): Bind `extra'.
24470
24471 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24472
24473         * message.el (message-extra-wide-headers): New variable.
24474         (message-get-reply-headers): Use it.
24475
24476 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24477
24478         * gnus-agent.el (gnus-agent-group-path): Decode group name.
24479         (gnus-agent-group-pathname): Ditto.
24480
24481         * gnus-cache.el (gnus-cache-file-name): Decode group name.
24482
24483         * gnus-group.el (gnus-group-make-group): Decode group name.
24484         (gnus-group-make-rss-group): Register the group data after opening
24485         the nnrss group.
24486
24487 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
24488
24489         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
24490         by expiry now get marked as read.
24491
24492 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24493
24494         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
24495
24496 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
24497
24498         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
24499         unify Latin characters in XEmacs.
24500         (mm-find-mime-charset-region): Use it.
24501
24502 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24503
24504         * gnus-util.el (gnus-delete-directory): New function.
24505
24506         * gnus-agent.el (gnus-agent-delete-group): Use it.
24507
24508         * gnus-cache.el (gnus-cache-delete-group): Use it.
24509
24510 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
24511
24512         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
24513         names.
24514
24515 2004-12-16  Simon Josefsson  <jas@extundo.com>
24516
24517         * hashcash.el (hashcash-payment-alist): Fix custom :type.
24518
24519 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24520
24521         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
24522
24523         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
24524         (gnus-group-set-current-level): Decode group name.
24525
24526 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
24527
24528         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
24529         failed.
24530
24531 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
24532
24533         * gnus-group.el (gnus-group-delete-group): Decode group name.
24534         (gnus-group-make-rss-group): Encode group name.
24535         (gnus-group-catchup-current): Decode group name.
24536         (gnus-group-kill-group): Decode group name.
24537
24538 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
24539
24540         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
24541
24542 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
24543
24544         * gnus-group.el (gnus-group-make-rss-group):
24545         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
24546
24547         * gnus-start.el (gnus-setup-news): Honor user's setting to
24548         gnus-message-archive-method.  Suggested by Lute Kamstra
24549         <lute@gnu.org>.
24550
24551 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
24552
24553         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
24554         global counterparts of the buffer-local variables.
24555
24556 2004-11-16  Romain Francoise  <romain@orebokech.com>
24557
24558         * gnus-sum.el (gnus-summary-exit): Don't clear the global
24559         counterparts of the buffer-local variables.
24560
24561 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
24562
24563         * message.el (message-forbidden-properties): Fix typo in doc
24564         string.
24565
24566 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
24567
24568         * gnus-util.el (gnus-replace-in-string): Add doc string.
24569
24570         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
24571         to avoid problems when splitting mails with many recipients.
24572
24573 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
24574
24575         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
24576         pop-to-buffer, covered by the subsequent gnus-configure-windows.
24577
24578 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
24579
24580         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
24581         if there is no hashtable in memory or file modification time is
24582         newer than cached timestamp.
24583
24584 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
24585
24586         * gnus-sum.el (gnus-summary-limit-to-recipient):
24587         Implement not-matching option.
24588
24589 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
24590
24591         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
24592         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
24593         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
24594         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
24595         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
24596         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
24597
24598 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
24599
24600         * message.el (message-forward-make-body-mml): Remove headers
24601         according to message-forward-ignored-headers if a message is decoded.
24602
24603 2004-12-02  Romain Francoise  <romain@orebokech.com>
24604
24605         * message.el (message-forward-make-body-plain): Always remove
24606         headers according to message-forward-ignored-headers.
24607
24608 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
24609
24610         * spam.el (spam-summary-prepare-exit): Remove the
24611         gnus-summary-limit pop for now, it has problems with ham marks for
24612         me.
24613
24614 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
24615
24616         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
24617         correctly.
24618
24619 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
24620
24621         * format-spec.el (format-spec): Message the char.
24622
24623 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
24624
24625         * gnus-art.el (gnus-split-methods): Reformat comments.
24626
24627         * spam.el (spam-summary-prepare-exit): Remove article limits
24628         before exiting the summary buffer.
24629
24630 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24631
24632         * lpath.el: Remove bbdb-create-internal, bbdb-records,
24633         spam-BBDB-register-routine and spam-enter-ham-BBDB.
24634
24635         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
24636         order to silence the byte compiler.
24637
24638         * spam.el: Fix the way to silence the byte compiler, which
24639         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
24640         bbdb-search-simple, spam-BBDB-register-routine,
24641         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
24642         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
24643         spam-stat-buffer-is-spam, spam-stat-load,
24644         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
24645         spam-stat-save and spam-stat-split-fancy.
24646
24647 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24648
24649         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
24650         which may confuse users.
24651         (canlock-password-for-verify): Ditto.
24652
24653         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
24654
24655         * gnus-art.el (gnus-emphasis-alist): Ditto.
24656
24657         * gnus-registry.el (gnus-registry-max-entries): Ditto.
24658
24659         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
24660
24661         * gnus-start.el (gnus-save-killed-list): Ditto.
24662
24663         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
24664         (gnus-sum-thread-tree-root): Ditto.
24665         (gnus-sum-thread-tree-false-root): Ditto.
24666         (gnus-sum-thread-tree-single-indent): Ditto.
24667
24668         * message.el (message-courtesy-message): Ditto.
24669         (message-archive-note): Ditto.
24670         (message-subscribed-address-file): Ditto.
24671         (message-user-fqdn): Ditto.
24672
24673         * spam-report.el (spam-report-gmane-regex): Ditto.
24674
24675         * spam.el (spam-blackhole-good-server-regex): Ditto.
24676
24677 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24678
24679         * mml.el (mml-preview): Widen the message buffer before copying
24680         the contents to the preview buffer; sort headers before previewing.
24681
24682         * message.el (message-hidden-headers): Fix the way to avoid a bug
24683         in the `repeat' widget in Emacs 21.3 or earlier.
24684
24685 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24686
24687         * message.el (message-hidden-headers): Default to "^References:".
24688         Improve customization type.  Suggested by Reiner Steib
24689         <Reiner.Steib@gmx.de>.
24690
24691 2004-11-25  Romain Francoise  <romain@orebokech.com>
24692
24693         * message.el (message-strip-forbidden-properties): Remove check for
24694         obsolete `message-hidden' text property, hidden headers are not
24695         accessible in the buffer anymore.
24696
24697 2004-11-22  Romain Francoise  <romain@orebokech.com>
24698
24699         * message.el (message-header-format-alist): Add `From' in list
24700         so that it can be sorted.
24701         (message-fix-before-sending): Widen and sort headers before
24702         sending.
24703         (message-hide-headers): Use narrowing to hide headers by moving
24704         them to the top of the buffer and narrowing to the region
24705         underneath.
24706
24707 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24708
24709         * message.el (message-strip-forbidden-properties):
24710         Bind buffer-read-only (etc) to nil.
24711
24712 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24713
24714         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
24715         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
24716
24717 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
24718
24719         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
24720
24721 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24722
24723         * dns.el (query-dns): Use sit-for to time instead of
24724         accept-process-output, since that doesn't seem to work on udp
24725         sockets.
24726
24727 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24728
24729         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
24730
24731 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
24732
24733         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
24734         doc string.  Improve doc string.
24735
24736 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24737
24738         * nntp.el (nntp-request-update-info): Return nil if
24739         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
24740         may not call gnus-activate-group which uselessly issues the GROUP
24741         commands for all nntp groups and wastes time.  Reported by Romain
24742         Francoise <romain@orebokech.com>.
24743
24744         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
24745
24746 2004-11-15  Simon Josefsson  <jas@extundo.com>
24747
24748         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
24749         headers separately.
24750         (gnus-button-openpgp): New function, inspired by Jochen Küpper
24751         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
24752
24753 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
24754
24755         * gnus-start.el (gnus-convert-old-newsrc):
24756         Assign legacy-gnus-agent to 5.10.7.
24757
24758 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24759
24760         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
24761         start of the lines.
24762
24763 2004-11-14  Magnus Henoch  <mange@freemail.hu>
24764
24765         * hashcash.el (hashcash-default-payment): Change default to 20.
24766         (hashcash-default-accept-payment): Change default to 20.
24767         (hashcash-process-alist): New variable.
24768         (hashcash-generate-payment-async): Add.
24769         (hashcash-already-paid-p): Add.
24770         (hashcash-insert-payment): Don't generate payments twice.
24771         (hashcash-insert-payment-async): Add.
24772         (hashcash-insert-payment-async-2): Add.
24773         (hashcash-cancel-async): Add.
24774         (hashcash-wait-async): Add.
24775         (hashcash-processes-running-p): Add.
24776         (hashcash-wait-or-cancel): Add.
24777         (mail-add-payment): New optional argument.  Conditionally start
24778         asynchronous calculation.
24779         (mail-add-payment-async): Add.
24780
24781         * message.el (message-send-mail): Wait for asynchronous hashcash
24782         results.  Don't clobber existing X-Hashcash headers.
24783         (message-setup-1): Call mail-add-payment-async when
24784         message-generate-hashcash is non-nil.
24785
24786 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
24787
24788         * message.el (message-use-alternative-email-as-from): Examine the
24789         From header as well; use message-make-from in order to include a
24790         user's full name.
24791
24792 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24793
24794         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
24795         default; improve customization type.
24796         (gnus-emphasis-custom-with-format): New macro.
24797         (gnus-emphasis-custom-value-to-external): New function.
24798         (gnus-emphasis-custom-value-to-internal): New function.
24799
24800 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24801
24802         * dns.el (query-dns): Resolve reverse addresses.
24803
24804 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24805
24806         * gnus-group.el (gnus-group-get-new-news): Use it.
24807
24808         * gnus-start.el (gnus-check-reasonable-setup): New function.
24809
24810 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
24811
24812         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
24813         "Args out of range" error.  Reported by Arnaud Giersch
24814         <arnaud.giersch@free.fr>.
24815
24816 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
24817
24818         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
24819
24820 2004-11-04  Richard M. Stallman  <rms@gnu.org>
24821
24822         * spam.el (spam group): Add :version.
24823
24824         * pgg-def.el (pgg group): Add :version.
24825
24826 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
24827
24828         * gnus-art.el (gnus-article-edit-article): Don't associate the
24829         article buffer with a draft file.  This is a temporary measure
24830         against the 2004-08-22 change to gnus-article-edit-mode.
24831
24832 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
24833
24834         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
24835         (html2text-format-tags): Remove unused variable `attr'.
24836
24837 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
24838
24839         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
24840
24841         * tls.el (tls-process-connection-type, tls-success)
24842         (tls-certtool-program): Add :version.
24843
24844         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
24845         (starttls-extra-arguments, starttls-process-connection-type)
24846         (starttls-connect, starttls-failure, starttls-success): Add :version.
24847
24848         * spam-stat.el (spam-stat): Add :version.
24849
24850         * sieve.el (sieve): Add :version.
24851
24852         * sha1.el (sha1): Add :version.
24853         (sha1-use-external): Remove redundant version.
24854
24855         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
24856         (nnmail-cache-ignore-groups, nnmail-spool-hook)
24857         (nnmail-split-fancy-match-partial-words)
24858         (nnmail-split-lowercase-expanded): Add :version.
24859
24860         * nndiary.el (nndiary): Add :version.
24861
24862         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
24863
24864         * mml-sec.el (mml-default-sign-method)
24865         (mml-default-encrypt-method, mml-signencrypt-style-alist):
24866         Add :version.
24867
24868         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
24869
24870         * mm-url.el (mm-url-use-external, mm-url-program)
24871         (mm-url-arguments): Add :version.
24872
24873         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
24874         (mm-attachment-file-modes, mm-decrypt-option)
24875         (mm-w3m-safe-url-regexp): Add :version.
24876
24877         * message.el (message-cite-prefix-regexp)
24878         (message-sendmail-envelope-from, message-minibuffer-local-map)
24879         (message-user-fqdn, message-completion-alist): Add :version.
24880
24881         * gnus-win.el (gnus-configure-windows-hook)
24882         (gnus-use-frames-on-any-display): Add :version.
24883
24884         * gnus-art.el (gnus-article-address-banner-alist)
24885         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
24886         (gnus-treat-from-picon, gnus-treat-mail-picon)
24887         (gnus-treat-x-pgp-sig): Add :version.
24888
24889         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
24890         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
24891         (gnus-summary-article-delete-hook)
24892         (gnus-summary-display-while-building): Add :version.
24893
24894         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
24895         (gnus-get-top-new-news-hook): Add :version.
24896
24897         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
24898         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
24899
24900         * gnus-registry.el (gnus-registry): Add :version.
24901
24902         * gnus-spec.el (gnus-use-correct-string-widths)
24903         (gnus-make-format-preserve-properties): Add :version.
24904
24905         * gnus.el (gnus-group-charter-alist)
24906         (gnus-group-fetch-control-use-browse-url)
24907         (gnus-install-group-spam-parameters): Add :version.
24908
24909         * gnus-diary.el (gnus-diary): Add :version.
24910
24911         * gnus-delay.el (gnus-delay): Add :version.
24912
24913         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
24914         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
24915         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
24916         Add :version.
24917
24918         * gnus-agent.el (gnus-agent-max-fetch-size)
24919         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
24920         (gnus-agent-prompt-send-queue): Add :version.
24921
24922         * deuglify.el (gnus-outlook-deuglify): Add :version.
24923
24924         * html2text.el: Beautify code.  Improve doc strings.
24925         Some checkdoc cleanup.
24926         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
24927
24928 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
24929
24930         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
24931
24932 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
24933
24934         * gnus-registry.el (gnus-registry-hashtb): Create the registry
24935         when package is loaded.
24936
24937         * spam.el (spam-summary-score-preferred-header): Add global preference
24938         for people who want to override the default SpamAssassin over
24939         Bogofilter preference (when both are set).
24940         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
24941         (spam-user-format-function-S):
24942         Check spam-summary-score-preferred-header.
24943         (spam-extra-header-to-number): Add X-Bogosity header parsing.
24944         (spam-user-format-function-S): Format the score correctly.
24945
24946 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
24947
24948         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
24949         signature file.  Suggested by Manoj Srivastava
24950         <srivasta@golden-gryphon.com>.
24951
24952         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
24953         iso-2022-jp even in the Japanese language environment.
24954         Suggested by Jason Rumney <jasonr@gnu.org>.
24955
24956 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24957
24958         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
24959         use the same characters as the dummy marks; make it free from
24960         getting affected by the language environment.
24961         (gnus-summary-read-group-1): Update mark positions only when the
24962         format spec is updated.
24963
24964         * gnus-spec.el (gnus-update-format-specifications): Return a list
24965         of updated types.
24966
24967 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24968
24969         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
24970         of boundp to check if display-warning is available.
24971
24972 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
24973
24974         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
24975
24976 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24977
24978         * nnspool.el (nnspool-spool-directory): Use news-path if the
24979         news-directory variable is not bound.
24980
24981         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
24982         function instead of display-warning if it is not available.
24983
24984 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
24985
24986         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
24987         v5-10: Use `point-at-bol'.
24988
24989 2004-10-26  Simon Josefsson  <jas@extundo.com>
24990
24991         * hashcash.el: Fix URL in comment, reported by Cheng Gao
24992         <chenggao@gmail.com>.
24993
24994 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
24995
24996         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
24997         instead.
24998
24999 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
25000
25001         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
25002         to remove a server from the nnimap-server-buffer-alist.
25003         (nnimap-open-connection, nnimap-close-server): Use it.
25004
25005         * gnus-encrypt.el: Remove file in favor of encrypt.el.
25006
25007 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25008
25009         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
25010         running the major-mode function.
25011
25012 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25013
25014         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
25015         dummy marks in the right way.
25016
25017 2004-10-18  David Edmondson  <dme@dme.org>
25018
25019         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
25020         excessively.
25021
25022 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
25023
25024         * gnus-util.el (gnus-split-references): Accept a nil references
25025         string and go on blissfully.
25026
25027         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
25028         cases where the references string is non-nil but has no references.
25029
25030         * encrypt.el: Add autoload tags.
25031
25032         * spam.el (spam-resolve-registrations-routine): Remove article
25033         from unregistration list too.  Reported by David Hanak
25034         <dhanak@isis.vanderbilt.edu>
25035
25036 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
25037
25038         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
25039         nil.  Change custom type.
25040
25041 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
25042
25043         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
25044
25045         * gnus-sum.el (gnus-summary-move-article): Use it.
25046
25047 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
25048
25049         * encrypt.el: Add autoload cookies.
25050
25051         * spam.el (spam-backend-article-list-property)
25052         (spam-backend-get-article-todo-list)
25053         (spam-backend-put-article-todo-list)
25054         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
25055         Resolve registrations separately.
25056         (spam-register-routine): Format comments.
25057         (spam-unregister-routine, spam-register-routine): Always call with
25058         specific-articles, no default list.
25059         (spam-summary-prepare-exit): Use the spam-classifications function.
25060
25061         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
25062         gnus-encrypt.el.
25063
25064         * encrypt.el: Copied from gnus-encrypt.el.
25065
25066         * gnus-encrypt.el: Commented that it's obsolete.
25067
25068 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
25069
25070         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
25071         (gnus-score-save): Use it.
25072
25073         * message.el (message-bury): Use `window-dedicated-p'.
25074
25075 2004-10-15  Simon Josefsson  <jas@extundo.com>
25076
25077         * pop3.el (top-level): Don't require nnheader.
25078         (pop3-read-timeout): Add.
25079         (pop3-accept-process-output): Add.
25080         (pop3-read-response, pop3-retr): Use it.
25081
25082 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
25083
25084         * spam.el (spam-register-routine): Move comment.
25085         (spam-verify-bogofilter): Use 'unknown for the initial
25086         spam-bogofilter-valid state, not 'never.
25087
25088         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
25089         for netrc-machine.
25090
25091         * nnimap.el (nnimap-open-connection):
25092         Use netrc-machine-user-or-password.
25093
25094 2004-10-17  Richard M. Stallman  <rms@gnu.org>
25095
25096         * gnus-registry.el (gnus-registry-unload-hook):
25097         Set as a variable with add-hook.
25098
25099         * nnspool.el (nnspool-spool-directory): Use news-directory instead
25100         of news-path.
25101
25102         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
25103
25104         * spam.el: Delete duplicate `provide'.
25105         (spam-unload-hook): Set as a variable with add-hook.
25106
25107 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
25108
25109         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
25110         in the doc string.
25111
25112         * message.el (message-ignored-news-headers)
25113         (message-ignored-supersedes-headers)
25114         (message-ignored-resent-headers)
25115         (message-forward-ignored-headers): Improve custom type.
25116
25117 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
25118
25119         * message.el (message-tokenize-header): Fix 2004-09-06 change
25120         which used point-min in the wrong place.
25121
25122 2004-10-12  Simon Josefsson  <jas@extundo.com>
25123
25124         * tls.el (tls-certtool-program): New variable.
25125         (tls-certificate-information): New function, based on
25126         ssl-certificate-information.
25127
25128 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25129
25130         * compface.el: Move the version of ELisp-based uncompface program
25131         to the contrib directory because of the copyright problem.
25132
25133 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
25134
25135         * message.el (message-kill-buffer): Raise the current frame.
25136
25137 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
25138
25139         * gnus-sum.el: Mention that multibyte characters don't work as marks.
25140
25141         * gnus.el (message-y-or-n-p): Autoload.
25142
25143         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
25144         (pop3-password-required, pop3-authentication-scheme)
25145         (pop3-leave-mail-on-server): Make customizable.
25146         (pop3): New custom group.
25147         (pop3-retr): Remove `sleep-for' statements.
25148         Suggested by Dave Love <fx@gnu.org>.
25149
25150         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
25151         Windows/DOS.
25152
25153         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
25154         (imap-parse-body): Fix incorrect use of `assert'.
25155         Suggested by Dave Love <fx@gnu.org>.
25156
25157         * mml.el (mml-minibuffer-read-disposition): Require match.
25158         Suggested by Dave Love <fx@gnu.org>.
25159
25160 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
25161
25162         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
25163         doc string.
25164
25165 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25166
25167         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
25168
25169 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25170
25171         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
25172         instead of calling `mm-insert-inline', to decode text/* parts
25173         before displaying them.
25174
25175 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25176
25177         * mm-uu.el (mm-uu-text-plain-type): New variable.
25178         (mm-uu-pgp-signed-extract-1): Use it.
25179         (mm-uu-pgp-encrypted-extract-1): Use it.
25180         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
25181         bind mm-uu-text-plain-type with that value.
25182         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
25183         mm-uu-dissect.
25184
25185 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
25186
25187         * gnus-group.el (gnus-update-group-mark-positions):
25188         * gnus-sum.el (gnus-update-summary-mark-positions):
25189         * message.el (message-check-news-body-syntax):
25190         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
25191         of string-as-multibyte.
25192
25193 2004-10-05  Juri Linkov  <juri@jurta.org>
25194
25195         * gnus-group.el (gnus-update-group-mark-positions):
25196         * gnus-sum.el (gnus-update-summary-mark-positions):
25197         * message.el (message-check-news-body-syntax):
25198         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
25199         8-bit unibyte values to a multibyte string for search functions.
25200
25201 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
25202
25203         * mm-uu.el (mm-uu-dissect): Allow optional arg.
25204         (mm-uu-dissect-text-parts): New function.
25205
25206         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
25207         dissect text parts.
25208
25209         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
25210         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
25211
25212         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
25213
25214         * gnus-topic.el (gnus-topic-hierarchical-parameters):
25215         Use gnus-current-topics instead of gnus-current-topic.
25216
25217 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
25218
25219         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
25220
25221 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
25222
25223         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
25224         where appropriate.
25225
25226         * nnml.el (nnml-generate-active-info): do.
25227
25228         * nndiary.el (nndiary-generate-active-info): do.
25229
25230         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
25231         (gnus-topic-move): do.
25232
25233         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
25234         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
25235
25236         * gnus-srvr.el (gnus-server-prepare)
25237         (gnus-server-open-all-servers): do.
25238
25239         * gnus-msg.el (gnus-summary-cancel-article)
25240         (gnus-summary-resend-message)
25241         (gnus-summary-mail-crosspost-complaint): do.
25242
25243         * gnus-move.el (gnus-change-server): do.
25244
25245         * gnus-group.el (gnus-group-unmark-all-groups)
25246         (gnus-group-set-current-level): do.
25247
25248 2004-10-04  Simon Josefsson  <jas@extundo.com>
25249
25250         * message.el (message-generate-hashcash): Doc fix.
25251
25252 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
25253
25254         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
25255         avoid infinite recursion via gnus-get-function.
25256
25257 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
25258
25259         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
25260
25261         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
25262
25263         * nnmail.el (nnmail-split-history): do.
25264
25265         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
25266         (nnml-request-delete-group): do.
25267
25268         * nnslashdot.el (nnslashdot-read-groups): do.
25269
25270         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
25271         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
25272
25273         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
25274         (nnspool-sift-nov-with-sed): Use last.
25275         (nnspool-retrieve-headers-with-nov): Use mapc.
25276         (nnspool-request-newgroups): Use dolist.
25277         (nnspool-request-group): Use last.
25278
25279         * nntp.el (nntp-read-server-type): Use dolist.
25280
25281         * nnvirtual.el (nnvirtual-create-mapping)
25282         (nnvirtual-update-read-and-marked): Use dolist.
25283         (nnvirtual-convert-headers): Simplify.
25284
25285 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
25286
25287         * gnus-agent.el (gnus-agent-synchronize-group-flags):
25288         Add support for sync'ing tick marks.
25289
25290 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
25291
25292         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
25293         there's no visible header.
25294
25295 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
25296
25297         * gnus-agent.el (gnus-agent-synchronize-group-flags):
25298         When necessary, pass full group name to gnus-request-set-marks.
25299
25300 2004-10-01  Simon Josefsson  <jas@extundo.com>
25301
25302         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
25303         acroread.
25304
25305 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25306
25307         * spam-report.el (spam-report-gmane): Fix interactive.
25308
25309         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
25310
25311         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
25312         when writing file.
25313         (gnus-agent-synchronize-flags): Don't default to being
25314         interactive.
25315
25316 2004-09-30  Simon Josefsson  <jas@extundo.com>
25317
25318         * message.el (message-generate-hashcash): Add.
25319         (message-send-mail): Use it, call mail-add-payment.
25320
25321 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
25322
25323         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
25324
25325 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
25326
25327         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
25328         gnus-requst-update-info with explicit code to sync the in-memory
25329         info read flags with the marks being sync'd to the backend.
25330
25331         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
25332
25333 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
25334
25335         * spam.el (spam-verify-bogofilter): Add new function.
25336         (spam-check-bogofilter)
25337         (spam-bogofilter-register-with-bogofilter): Use it.
25338         (spam-verify-bogofilter): Add small fixes.
25339
25340 2004-09-28  Simon Josefsson  <jas@extundo.com>
25341
25342         * hashcash.el (hashcash-generate-payment): Revert.
25343
25344 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
25345
25346         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25347         Use gnus-extract-references instead of gnus-split-references.
25348
25349         * gnus-util.el (gnus-extract-references): Add new function, analogous
25350         to gnus-split-references but extracts only the message-ID without
25351         anything extra.
25352
25353         * hashcash.el (hashcash-generate-payment)
25354         (hashcash-check-payment): Do the right thing if hashcash-path is
25355         nil (because the hashcash program could not be found).
25356
25357         * spam.el (spam-use-hashcash): Remove comment.
25358
25359 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
25360
25361         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
25362         (gnus-cache-enter-article, gnus-cache-remove-article)
25363         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
25364
25365         * gnus-async.el (gnus-async-prefetch-remove-group): do.
25366
25367         * gnus-art.el (article-hide-boring-headers)
25368         (article-translate-strings, article-display-face)
25369         (gnus-article-mime-match-handle-first)
25370         (gnus-article-highlight-headers)
25371         (gnus-article-add-buttons-to-head): do.
25372
25373 2004-09-27  Simon Josefsson  <jas@extundo.com>
25374
25375         * hashcash.el: New version, from
25376         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
25377         ../contrib/.
25378
25379 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25380
25381         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
25382
25383 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
25384
25385         * gnus-dup.el (gnus-dup-open): Use mapc.
25386         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
25387
25388         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
25389         Reported by Stefan Wiens <s.wi@gmx.net>.
25390
25391         * gnus.el (gnus-shutdown): Use dolist.
25392
25393         * gnus-undo.el (gnus-undo): Use mapc.
25394
25395         * nnrss.el (nnrss-generate-active): do.
25396
25397         * message.el (message-cite-original-without-signature)
25398         (message-cite-original): Use mapc.
25399         (message-do-actions, message-make-forward-subject): Use dolist.
25400
25401 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
25402
25403         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
25404         deletion to remove entire duplicate line.  Fixes merged article
25405         number bug.
25406
25407 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
25408
25409         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
25410         servers that are offline.  Avoids having gnus-agent-toggle-plugged
25411         first ask if you want to open a server and then, even when you
25412         responded with no, asking if you want to synchronize the server's
25413         flags.
25414         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
25415         multi-line expressions.
25416         (gnus-agent-synchronize-group-flags): New internal function.
25417         Updates marks in memory (in the info structure) AND in the
25418         backend.
25419
25420         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
25421
25422         * nnagent.el (nnagent-request-set-mark):
25423         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
25424         method, to ensure that synchronization updates marks in the
25425         backend and in the info (in memory) structure.
25426
25427 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25428
25429         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
25430         convention fully; don't miss the root article of a thread; make
25431         the X-Draft-From header with correct article numbers.
25432
25433 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
25434
25435         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
25436         unless plugged.  Disable the agent so that an open failure causes
25437         an error.
25438
25439         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
25440         Revert 2004-09-21 change.  The backend must be opened while
25441         synchronizing flags even when the backend stores the flags
25442         locally.
25443
25444 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
25445
25446         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
25447         in `header' match.  Reported by Svend Tollak Munkejord.
25448
25449         * message.el (message-cite-original): Fix use of
25450         `message-cite-articles-with-x-no-archive'.
25451
25452 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
25453
25454         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
25455         (gnus-window-to-buffer): Ditto.
25456
25457         * mml.el (mml-preview-buffer): New variable.
25458         (mml-preview): Manage window layout with gnus-buffer-configuration.
25459
25460         * gnus-msg.el (gnus-setup-message): Put article numbers into the
25461         X-Draft-From header even if those articles aren't quoted.
25462
25463 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
25464
25465         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
25466         (gnus-request-set-mark, gnus-request-update-mark): Use new
25467         g-s-t-u-l-m to decide to use backend even when unplugged.
25468
25469 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25470
25471         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
25472         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
25473
25474 2004-09-20  Simon Josefsson  <jas@extundo.com>
25475
25476         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
25477         "utf-16-le".
25478
25479 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
25480
25481         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
25482
25483 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
25484
25485         * uudecode.el (uudecode-use-external): Add :version.
25486
25487         * smime.el (smime-CA-file, smime-encrypt-cipher)
25488         (smime-dns-server): Add :version.
25489
25490         * smiley.el (gnus-smiley-file-types): Add :version.
25491
25492         * sha1.el (sha1-use-external): Add :version.
25493
25494         * pgg-def.el (pgg-query-keyserver): Add :version.
25495
25496         * nnmail.el (nnmail-fancy-expiry-targets)
25497         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
25498         Add :version.
25499
25500         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
25501         (nnimap-retrieve-groups-asynchronous): Add :version.
25502         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
25503
25504         * mml.el (mml-content-disposition-parameters)
25505         (mml-insert-mime-headers-always): Add :version.
25506
25507         * mm-util.el (mm-coding-system-priorities): Add :version.
25508
25509         * mm-decode.el (mm-inline-text-html-with-images)
25510         (mm-keep-viewer-alive-types, mm-external-terminal-program)
25511         (mm-verify-option): Add :version.
25512         (mm-text-html-renderer): Change :version.
25513
25514         * message.el (message-fcc-externalize-attachments)
25515         (message-required-headers, message-draft-headers)
25516         (message-subject-trailing-was-query)
25517         (message-subject-trailing-was-ask-regexp)
25518         (message-subject-trailing-was-regexp, message-mark-insert-begin)
25519         (message-mark-insert-end, message-archive-header)
25520         (message-archive-note, message-cross-post-default)
25521         (message-cross-post-note, message-followup-to-note)
25522         (message-cross-post-note-function, message-use-mail-followup-to)
25523         (message-subscribed-address-functions)
25524         (message-subscribed-address-file, message-subscribed-addresses)
25525         (message-subscribed-regexps, message-allow-no-recipients)
25526         (message-yank-cited-prefix, message-signature-insert-empty-line)
25527         (message-hidden-headers, message-hierarchical-addresses)
25528         (message-mail-user-agent, message-use-idna)
25529         (message-valid-fqdn-regexp)
25530         (message-strip-special-text-properties, message-header-synonyms)
25531         (message-beginning-of-line, message-tab-body-function): Add :version.
25532         (message-insert-canlock, message-wide-reply-confirm-recipients):
25533         Change :version.
25534
25535         * mail-source.el (mail-source-ignore-errors): Add :group, :type
25536         and :version.
25537         (mail-source-delete-old-incoming-confirm)
25538         (mail-source-movemail-program): Add :version.
25539
25540         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
25541         (gnus-agent-cache, gnus-agent): Change :version.
25542
25543         * gnus-util.el (gnus-use-byte-compile): Change :version.
25544
25545         * gnus-sum.el (gnus-summary-make-false-root-always)
25546         (gnus-summary-default-high-score)
25547         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
25548         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
25549         (gnus-read-all-available-headers, gnus-article-emulate-mime)
25550         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
25551         (gnus-sum-thread-tree-single-indent)
25552         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
25553         (gnus-sum-thread-tree-leaf-with-other)
25554         (gnus-sum-thread-tree-single-leaf): Add :version.
25555         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
25556         (gnus-article-loose-mime): Change :version.
25557
25558         * gnus-start.el (gnus-backup-startup-file)
25559         (gnus-save-startup-file-via-temp-buffer): Add :version.
25560
25561         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
25562         (gnus-server-offline-face): Add :version.
25563
25564         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
25565
25566         * gnus-msg.el (gnus-gcc-externalize-attachments)
25567         (gnus-debug-files, gnus-debug-exclude-variables)
25568         (gnus-discouraged-post-methods): Change :version.
25569         (gnus-confirm-mail-reply-to-news)
25570         (gnus-confirm-treat-mail-like-news): Add :version.
25571
25572         * gnus-int.el (gnus-server-unopen-status): Add :version.
25573
25574         * gnus-group.el (gnus-group-jump-to-group-prompt)
25575         (gnus-large-ephemeral-newsgroup)
25576         (gnus-fetch-old-ephemeral-headers): Add :version.
25577
25578         * gnus-fun.el (gnus-x-face-directory)
25579         (gnus-convert-pbm-to-x-face-command)
25580         (gnus-convert-image-to-x-face-command)
25581         (gnus-convert-image-to-face-command): Add :version.
25582
25583         * gnus-delay.el (gnus-delay-default-hour): Add :version.
25584
25585         * gnus-cite.el (gnus-cite-blank-line-after-header)
25586         (gnus-article-boring-faces): Add :version.
25587
25588         * gnus-art.el (gnus-buttonized-mime-types)
25589         (gnus-inhibit-mime-unbuttonizing)
25590         (gnus-treat-display-face)
25591         (gnus-treat-body-boundary): Change :version.
25592         (gnus-body-boundary-delimiter, gnus-picon-databases)
25593         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
25594         (gnus-treat-date-english, gnus-treat-fold-headers)
25595         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
25596         (gnus-treat-mail-picon, gnus-treat-wash-html)
25597         (gnus-article-encrypt-protocol)
25598         (gnus-use-idna, gnus-article-over-scroll)
25599         (gnus-mime-display-multipart-alternative-as-mixed)
25600         (gnus-mime-display-multipart-related-as-mixed)
25601         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
25602         (gnus-ctan-url, gnus-button-ctan-handler)
25603         (gnus-button-handle-ctan-bogus-regexp)
25604         (gnus-button-ctan-directory-regexp)
25605         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
25606         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
25607         (gnus-button-man-level, gnus-button-emacs-level)
25608         (gnus-button-message-level, gnus-button-browse-level): Add :version.
25609
25610         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
25611         (gnus-agent-go-online): Change :version.
25612         (gnus-agent-expire-unagentized-dirs)
25613         (gnus-agent-auto-agentize-methods): Add :version.
25614
25615         * flow-fill.el (fill-flowed-display-column)
25616         (fill-flowed-encode-column): Add :version.
25617
25618         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
25619         (gnus-outlook-deuglify-unwrap-max)
25620         (gnus-outlook-deuglify-cite-marks)
25621         (gnus-outlook-deuglify-unwrap-stop-chars)
25622         (gnus-outlook-deuglify-no-wrap-chars)
25623         (gnus-outlook-deuglify-attrib-cut-regexp)
25624         (gnus-outlook-deuglify-attrib-verb-regexp)
25625         (gnus-outlook-deuglify-attrib-end-regexp)
25626         (gnus-outlook-display-hook): Add :version.
25627
25628         * binhex.el (binhex-use-external): Add :version.
25629
25630 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
25631
25632         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
25633         and `invisible'.
25634
25635 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
25636
25637         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
25638         in gnus-registry-trim.
25639
25640 2004-09-13  Simon Josefsson  <jas@extundo.com>
25641
25642         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
25643
25644         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
25645
25646         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
25647         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
25648         <yamaoka@jpl.org>.
25649         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
25650         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
25651         <yamaoka@jpl.org>.
25652
25653         * sieve.el (sieve-manage-mode): Ditto.
25654
25655 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
25656
25657         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
25658
25659 2004-09-11  Simon Josefsson  <jas@extundo.com>
25660
25661         * dns-mode.el: Add.
25662
25663         * mm-view.el (mm-display-dns-inline): Add.
25664
25665         * mm-decode.el (mm-inline-media-tests): Add text/dns.
25666         (mm-automatic-display): Ditto.
25667
25668         * mailcap.el (mailcap-mime-data): Add text/dns.
25669         (mailcap-mime-extensions): Map .soa to text/dns.
25670
25671 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
25672
25673         * gnus-art.el (article-decode-mime-words, article-babel)
25674         (gnus-article-highlight-signature, gnus-article-add-buttons)
25675         (gnus-signature-toggle): Remove unnecessary bindings of
25676         `inhibit-read-only' inherited from v5.10 merge.
25677
25678 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
25679
25680         * nntp.el (nntp): New customization group.
25681         (nntp-authinfo-file): Add customization group.
25682
25683         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
25684
25685         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
25686
25687         * gnus.el (to-address, to-list, subscribed)
25688         (large-newsgroup-initial): Ditto.
25689
25690         * flow-fill.el (fill-flowed-display-column)
25691         (fill-flowed-encode-column): Ditto.
25692
25693 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
25694
25695         * message.el (message-tokenize-header, message-send-mail-with-qmail):
25696         Use point-min rather than 1.
25697         (message-send-mail): Use buffer-size rather than point-max.
25698
25699         * gnus-sum.el (gnus-summary-search-article-forward):
25700         Signal a specific `search-failed' rather than a generic `error'.
25701
25702         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
25703         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
25704         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
25705
25706 2004-09-10  Simon Josefsson  <jas@extundo.com>
25707
25708         * nndb.el (require): Remove tcp and duplicate cl.
25709
25710 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
25711
25712         * gnus-agent.el (directory-files-and-attributes): Move forward.
25713
25714 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
25715
25716         * gnus-agent.el (directory-files-and-attributes):
25717         Optionally defined to support XEmacs.
25718
25719 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
25720
25721         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
25722         to avoid run-time CL dependencies.
25723         (gnus-agent-unfetch-articles): New function.
25724         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
25725         article numbers even when local .overview file is missing.
25726         (gnus-agent-read-article-number): New function.  Only accepts
25727         27-bit article numbers.
25728         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
25729         Use gnus-agent-read-article-number.
25730         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
25731         from backend while recognizing that article numbers in .overview
25732         must be valid.
25733         (gnus-agent-update-files-total-fetched-for):
25734         Use directory-files-and-attributes to improve performance.
25735         * gnus-int.el (gnus-request-move-article):
25736         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
25737         improve performance.
25738
25739         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
25740         some users confused by references to .newsrc when they only have a
25741         .newsrc.eld file.
25742         (gnus-convert-mark-converter-prompt)
25743         (gnus-convert-converter-needs-prompt): Fix use of property list.
25744         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
25745         New function.  Used internally to only display 'gnus converting
25746         files' message when actually necessary.
25747
25748         * gnus-sum.el (): Remove (require 'gnus-agent) as required
25749         methods now autoloaded.
25750
25751 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
25752
25753         * gnus-sum.el (gnus-summary-insert-subject): Remove list
25754         identifiers.
25755
25756 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
25757
25758         * gnus-picon.el: Fix indentation and closing parenthesis.
25759
25760 2004-09-01  Simon Josefsson  <jas@extundo.com>
25761
25762         * message.el (message-canlock-generate): Require sha1, not
25763         sha1-el.  (Can we get rid of this require altogether?  It is ugly
25764         to require within a function.  Sadly, if sha1.el isn't loaded, the
25765         let binding in m-c-g will hide the defcustom definition, which is
25766         bad.)
25767
25768         * canlock.el: Require sha1, not sha1-el.
25769
25770         * message.el: Don't autoload sha1 (there is a autoload cookie in
25771         sha1.el).
25772
25773         * sha1-el.el: Rename to sha1.el.
25774
25775 2004-08-30  Juanma Barranquero  <lektu@terra.es>
25776
25777         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
25778
25779 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
25780
25781         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
25782
25783 2004-08-30  Kim F. Storm  <storm@cua.dk>
25784
25785         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
25786
25787         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
25788         Add :group 'nnimap.
25789
25790 2004-08-30  Andreas Schwab  <schwab@suse.de>
25791
25792         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
25793         ?* and ?\;.
25794
25795         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
25796         and ?\' to symbol instead of whitespace.
25797
25798 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
25799
25800         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
25801
25802         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
25803         instead of re-search-forward.
25804
25805         * gnus-uu.el (gnus-uu-save-article): Ditto.
25806         (gnus-uu-post-encode-uuencode): Ditto.
25807
25808         * html2text.el (html2text-clean-list-items): Ditto.
25809         (html2text-clean-dtdd): Ditto.
25810         (html2text-format-tags): Ditto.
25811
25812         * message.el (message-send-mail-with-sendmail): Fix regexp.
25813         (message-fill-field-general): Use search-forward instead of
25814         re-search-forward.
25815         (unbold-region): Ditto.
25816
25817         * nnrss.el (nnrss-request-article): Ditto.
25818
25819         * nnslashdot.el (nnslashdot-request-article): Ditto.
25820
25821         * nnweb.el (nnweb-gmane-wash-article): Ditto.
25822
25823         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
25824         "Unrecognized menu descriptor" error in XEmacs.
25825
25826 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
25827
25828         * gnus-sum.el (gnus-read-header): Don't remove a header for the
25829         parent article of a sparse article in the thread hashtb.
25830
25831 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
25832
25833         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
25834         (nnmail-expand-newtext): Lowercase expanded entries if
25835         nnmail-split-lowercase-expanded is non-nil.
25836
25837 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25838
25839         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
25840
25841         * gnus-group.el (gnus-group-line-format-alist): Convert the value
25842         of gnus-tmp-news-method into string under XEmacs.  It will be
25843         passed to gnus-correct-length which takes only a string argument.
25844
25845 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25846
25847         * gnus-util.el (gnus-bind-print-variables): New macro.
25848         (gnus-prin1): Use it.
25849         (gnus-prin1-to-string): Use it.
25850         (gnus-pp): New function.
25851         (gnus-pp-to-string): New function.
25852
25853         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
25854         Replace pp-to-string with gnus-pp-to-string.
25855         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
25856         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
25857         * gnus-msg.el (gnus-debug): Ditto.
25858         * gnus-score.el (gnus-score-save): Ditto.
25859         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
25860         gnus-pp-to-string.
25861         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
25862         with gnus-pp.
25863         * score-mode.el (gnus-score-pretty-print): Ditto.
25864         * webmail.el (webmail-debug): Ditto.
25865
25866 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25867
25868         * gnus-art.el (article-display-face, article-display-x-face):
25869         Use buffer-read-only.
25870
25871 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
25872
25873         * gnus-art.el (article-hide-list-identifiers):
25874         Bind inhibit-read-only as t.
25875
25876 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
25877
25878         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
25879
25880 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
25881
25882         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
25883         (gnus-narrow-to-page): Don't assume point-min == 1.
25884         (gnus-article-edit-mode): Derive from message-mode.
25885
25886         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
25887         point-min == 1.
25888
25889         * imap.el (imap-parse-address-list, imap-parse-body-ext):
25890         Disable incorrect use of `assert'.
25891
25892         * message.el (message-mode): Set comment-start-skip.
25893
25894
25895 2004-08-22  Sam Steingold  <sds@gnu.org>
25896
25897         * pop3.el (pop3-leave-mail-on-server): New user variable.
25898         (pop3-movemail): Delete mail only when it is nil.
25899
25900 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
25901
25902         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
25903
25904         * mml.el (mml-preview): Use `pop-to-buffer'.
25905
25906         * message.el (message-goto-mail-followup-to): Insert after "To".
25907         (message-carefully-insert-headers): Add comment.
25908
25909         * gnus.el: Remove unused variable `gnus-article-check-size'.
25910
25911         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
25912
25913         * gnus-art.el (gnus-button-alist):
25914         Improve `gnus-button-handle-library' entry.
25915
25916 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
25917
25918         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
25919         Use downcase, since XEmacs capitalizes error messages differently.
25920
25921 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
25922
25923         * nntp.el: Add (require 'gnus) due to reference to
25924         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
25925
25926 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
25927
25928         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
25929         Bind `mm-fill-flowed'.
25930
25931         * mm-decode.el (mm-dissect-singlepart): Check it.
25932
25933 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
25934
25935         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
25936         'imap' for netrc parsing.
25937
25938 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
25939
25940         * mailcap.el (mailcap-mime-data): Mark as risky.
25941
25942 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25943
25944         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
25945         may be included in the encoded word.
25946         (rfc2047-encode): Don't append a space if the encoded word
25947         includes close parenthesis.
25948
25949 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25950
25951         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
25952         of text within parentheses.
25953
25954 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
25955
25956         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
25957         (gnus-encrypt-write-file-contents): Make the password key the file
25958         name PLUS the cipher, not just the cipher.  Also remove failed
25959         passwords from the cache.
25960
25961 2004-08-06  Simon Josefsson  <jas@extundo.com>
25962
25963         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
25964         Doc fix.
25965
25966 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
25967
25968         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
25969         LWSP.
25970
25971 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
25972
25973         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25974         Try to append in-reply-to: data to the references: header.
25975
25976         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
25977         (netrc-parse): Use gnus-encrypt.el functions.
25978
25979         * gnus-encrypt.el: Add new file for encryption support; currently
25980         does only a few GPG ciphers and an internal XOR cipher.
25981
25982         * password.el: Add comments on using password-read-and-add.
25983         (password-read-and-add): Add function to read and add the
25984         password to the cache at once.
25985
25986 2004-07-28  Simon Josefsson  <jas@extundo.com>
25987
25988         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
25989         parameter (but don't use it, for now).
25990
25991         * imap.el (imap-ssl-open): Use imap-process-connection-type,
25992         instead of hard coding to nil.
25993
25994 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
25995
25996         * mm-view.el (mm-inline-image-emacs): Open lines under an image
25997         as mm-inline-image-xemacs does.
25998
25999 2004-07-26  Simon Josefsson  <jas@extundo.com>
26000
26001         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
26002         Revert part of 2004-07-17 change below.
26003
26004 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
26005
26006         * rfc2047.el (rfc2047-encode-region): Don't infloop.
26007         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
26008
26009 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26010
26011         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
26012         quotes that actually start with ">" at the beginning of the
26013         lines.
26014
26015 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26016
26017         * rfc2047.el (rfc2047-encode-region): Fix last change.
26018         (rfc2047-encode-parameter): Remove useless concat.
26019
26020 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
26021
26022         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
26023         encode special characters; fix some kind of misconfigured headers;
26024         signal a real error if debug-on-quit or debug-on-error is non-nil.
26025         (rfc2047-encode-max-chars): New variable.
26026         (rfc2047-encode-1): Use it.
26027         (rfc2047-encode-parameter): New function.
26028
26029         * mml.el (mml-insert-parameter): Remove an excessive space.
26030
26031 2004-07-17  Simon Josefsson  <jas@extundo.com>
26032
26033         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
26034         Kai Grossjohann <kai@emptydomain.de>.
26035         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
26036         (gnus-group-make-menu-bar): Ditto.
26037
26038         * gnus-util.el (gnus-group-server): Add.
26039
26040 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
26041
26042         * message.el (message-clone-locals): Clone sendmail and smtp
26043         variables.
26044
26045 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26046
26047         * rfc2047.el (rfc2047-encode-region): Fix last change.
26048
26049 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26050
26051         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
26052         characters as non-special.
26053
26054 2004-07-09  Simon Josefsson  <jas@extundo.com>
26055
26056         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
26057         Users will lose all flag changes made while unplugged with
26058         e.g. nntp unless flag synchronization happens, thus `nil' is not a
26059         good default.  See numerous reports on ding mailing list.
26060
26061 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
26062
26063         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
26064         add generate-head-function and generate-article-function to the
26065         rfc822-forward entry.
26066         (nndoc-rfc822-forward-generate-article): New function.
26067         (nndoc-rfc822-forward-generate-head): New function.
26068
26069         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
26070
26071 2004-07-06  Dan Christensen  <jdc@uwo.ca>
26072
26073         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
26074         respect display group parameter and gnus-summary-expunge-below.
26075         (gnus-articles-to-read): Remove unused reference to display group
26076         parameter.
26077
26078 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26079
26080         * nnheader.el (nnheader-uniquify-message-id): New experimental
26081         variable.
26082         (nnheader-nov-read-message-id): Use it.
26083
26084         * spam-report.el (spam-report-gmane): Add interactive.
26085
26086 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
26087
26088         * mm-encode.el (mm-content-transfer-encoding-defaults):
26089         Use qp-or-base64 for the application/* types.
26090
26091 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
26092
26093         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
26094
26095 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
26096
26097         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
26098         trim value.
26099
26100 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
26101
26102         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
26103         New macro and function.
26104         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
26105
26106 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
26107
26108         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
26109         after-load-alist.
26110
26111 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26112
26113         * gnus-group.el (gnus-group-get-new-news-this-group):
26114         Don't update info that isn't there.
26115
26116 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
26117
26118         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
26119         entry.
26120
26121 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
26122
26123         * mm-view.el (mm-inline-render-with-function): Use multibyte
26124         buffer; decode html source by charset.
26125
26126         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
26127
26128         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
26129         Mule-UCS is loaded under XEmacs.
26130         (mm-mime-mule-charset-alist): Avoid duplicated entries.
26131
26132 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
26133
26134         * nnheader.el (nnheader-max-head-length): Increase to 8192.
26135
26136 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
26137
26138         * mm-util.el (mm-coding-system-p): Return a coding-system.
26139         (mm-mime-mule-charset-alist): Use shift_jis instead of
26140         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
26141         entries for the mime charsets iso-2022-jp-3 and shift_jis.
26142         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
26143         instead of japanese-shift-jis and iso-latin-1 respectively in
26144         order to share the default value with both Emacs and XEmacs-mule.
26145         (mm-mule-charset-to-mime-charset):
26146         Make mm-coding-system-priorities effective.
26147         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
26148         while predicating of candidates upon the priorities.
26149
26150 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
26151
26152         * gnus-sum.el (gnus-summary-make-menu-bar):
26153         Add gnus-uu-invert-processable.
26154
26155         * gnus.el: Autoload gnus-uu-invert-processable.
26156
26157 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
26158
26159         * mm-util.el (mm-with-multibyte-buffer): New macro.
26160
26161         * rfc2047.el (rfc2047-encode-string): Use it.
26162         (rfc2047-encode-region): Move point to the end of the region after
26163         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
26164
26165 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26166
26167         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
26168         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
26169
26170 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26171
26172         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
26173         (gnus-cite-parse): Ignore quoted envelope From_.
26174         Suggested by Karl Chen <quarl@nospam.quarl.org>.
26175
26176 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
26177
26178         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
26179         invalid addresses.
26180
26181 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
26182
26183         * spam.el: Change section markers, revise TODO list.
26184         (spam-backends): Make new master list of all installed backends.
26185         (spam-summary-exit-behavior): Add new variable to determine how
26186         messages moves are done at summary exit.
26187         (spam-move-spam-nonspam-groups-only)
26188         (spam-process-ham-in-nonham-groups)
26189         (spam-process-ham-in-spam-groups): Remove variables, the
26190         spam-summary-exit-behavior variable should be used to manage this
26191         behavior.
26192         (spam-old-ham-articles, spam-old-spam-articles): Remove.
26193         (spam-old-articles): Add variable, replacing spam-old-ham-articles
26194         and spam-old-spam-articles.
26195         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
26196         Add empty variables, placeholders for the backends they represent.
26197         (spam-set-difference): Move, unchanged.
26198         (spam-list-of-processors): Declare OBSOLETE, not used anymore
26199         unless the user has a processor variable.
26200         (spam-classifications, spam-classification-valid-p)
26201         (spam-backend-properties, spam-backend-property-valid-p)
26202         (spam-backend-function-type-valid-p)
26203         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
26204         (spam-report-articles-gmane, spam-report-articles-resend):
26205         Remove functions, they are not needed.
26206         (spam-install-backend-super, spam-backend-list)
26207         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
26208         (spam-backend-function, spam-backend-ham-registration-function)
26209         (spam-backend-spam-registration-function)
26210         (spam-backend-ham-unregistration-function)
26211         (spam-backend-spam-unregistration-function)
26212         (spam-backend-statistical-p, spam-backend-mover-p)
26213         (spam-install-backend-alias, spam-install-checkonly-backend)
26214         (spam-install-mover-backend, spam-install-nocheck-backend)
26215         (spam-install-backend, spam-install-statistical-backend)
26216         (spam-install-statistical-checkonly-backend): Add backend installation
26217         support.
26218         (spam-summary-prepare-exit): Rewrite to use the new backend code.
26219         (spam-group-processor-p): Use the new backend code and respect the
26220         summary exit behavior.
26221         (spam-mark-spam-as-expired-and-move-routine): Remove.
26222         (spam-summary-prepare): Change to use the new spam-old-articles
26223         variable.
26224         (spam-copy-or-move-routine, spam-copy-spam-routine)
26225         (spam-move-spam-routine, spam-copy-ham-routine)
26226         (spam-move-ham-routine): Add code to copy/move ham or spam.
26227         (spam-fetch-field-fast): Improve doc and code, plus allow the
26228         'number request.
26229         (spam-list-of-checks, spam-list-of-statistical-checks):
26230         Remove variables.
26231         (spam-split, spam-find-spam): Use the new backend code.
26232         (spam-registration-functions): Remove variable.
26233         (spam-unregister-routine): Add convenience wrapper.
26234         (spam-log-undo-registration, spam-register-routine)
26235         (spam-log-processing-to-registry)
26236         (spam-log-unregistration-needed-p): Rename "check" to "backend"
26237         where possible.
26238         (spam-check-gmane-xref, spam-check-regex-headers)
26239         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
26240         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
26241         (spam-check-bogofilter-headers, spam-check-spamoracle)
26242         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
26243         (spam-check-crm114-headers): Use the spam-split-group that
26244         spam-split prepares, no need to determine it every time.
26245
26246         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
26247         to the nnheader-parse-naked-head call.
26248
26249         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
26250
26251         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
26252         the nnheader-nov-read-message-id call.
26253
26254 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
26255
26256         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
26257         gnus-activate-group twice.  Suggested by Markus Peter
26258         <warp@spin.de>.
26259
26260 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
26261
26262         * gnus-art.el (gnus-article-time-format): Exchange the order of
26263         day and month in the default value; fix customization type.
26264         (article-date-ut): Use add-text-properties.
26265         (article-make-date-line): Use message-make-date instead of
26266         current-time-string.
26267
26268         * message.el (message-fetch-field): Don't use set-text-properties.
26269         (message-make-date): Simplify.
26270
26271         * messagexmas.el (message-xmas-make-date): New function.
26272         (message-xmas-redefine): Defalias message-make-date to it.
26273
26274 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
26275
26276         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
26277         (rfc2047-encode-region): Treat text within parentheses as special;
26278         show the original text when error has occurred.
26279
26280         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
26281         already-computed method to gnus-activate-group.
26282
26283         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
26284         same select-methods identical Lisp objects.
26285
26286         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
26287         object when modifying the info.
26288
26289 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
26290
26291         * gnus-srvr.el (gnus-server-set-info): Remove the server from
26292         gnus-opened-servers since it has never been opened with the new
26293         configuration yet.
26294
26295 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
26296
26297         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
26298         arg to nnheader-generate-fake-message-id.
26299
26300 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
26301
26302         * nnheader.el (nnheader-generate-fake-message-id): Accept a
26303         number and build a fake message ID localized to a group and
26304         article number (so it's repeatable from that point on).
26305         (nnheader-fake-message-id-p): Change regex to accomodate new fake
26306         ID format.
26307
26308         * gnus-sum.el (gnus-get-newsgroup-headers):
26309         Call nnheader-generate-fake-message-id with the article number.
26310
26311 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
26312
26313         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
26314         end-of-buffer.
26315
26316 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26317
26318         * message.el (message-ignored-supersedes-headers): Add Approved.
26319
26320 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
26321
26322         * rfc2047.el (rfc2047-encode-message-header): Remove useless
26323         goto-char.
26324         (rfc2047-encode): Fold the line before encoding.
26325
26326 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26327
26328         * rfc2047.el (rfc2047-encode-message-header): Disabled header
26329         folding -- not all headers can be folded, and this should be done
26330         by the message composition mode.  Probably.  I think.
26331
26332 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
26333
26334         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
26335         fast.
26336
26337         * gnus-ems.el (gnus-remove-image): Don't use
26338         message-text-with-property; remove only the image found first.
26339
26340         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
26341         found first.
26342
26343 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
26344
26345         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
26346
26347 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
26348
26349         * message.el (message-text-with-property): Make it fast and accept
26350         optional arguments.
26351         (message-strip-forbidden-properties): Use it.
26352         (message-fix-before-sending): Follow the m-t-w-p change.
26353
26354         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
26355
26356 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
26357
26358         * gnus-art.el (article-hide-headers): Don't change the buffer
26359         mistakenly when performing mml-preview even if
26360         gnus-single-article-buffer is nil.
26361
26362 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
26363
26364         * message.el (message-expand-name-databases): New user option.
26365         (message-expand-name): Use it.
26366
26367 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
26368
26369         * spam.el (spam-report-articles-resend)
26370         (spam-report-resend-register-routine): Allow ham reporting.
26371         (spam-report-resend-register-ham-routine): Add wrapper.
26372         (spam-registration-functions): Add ham resending functions.
26373         (spam-list-of-processors): Add ham resend processor.
26374
26375         * gnus.el (ham-resend-to): Add new group parameter.
26376         (spam-process): Add ham resend option.
26377
26378         * spam-report.el (spam-report-resend): Allow reporting ham.
26379         (spam-report-resend-ham): Add wrapper.
26380
26381 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26382
26383         * message.el (message-cite-articles-with-x-no-archive):
26384         New variable.
26385         (message-cite-original): Use it.
26386
26387 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26388
26389         * message.el (message-cite-original): Respect X-No-Archive.
26390
26391 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
26392
26393         * gnus-art.el (article-hide-headers): Refer to the values for
26394         gnus-ignored-headers and gnus-visible-headers in the summary
26395         buffer since a user may have set them as group parameters.
26396
26397 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
26398
26399         * assistant.el (assistant-node-name): Add convenience function.
26400         (assistant-render-text, assistant-render-node): Add error handling,
26401         plus handle multiple next nodes.
26402         (assistant-find-next-node): Comment out for now.
26403         (assistant-find-next-nodes): Add function, returns list of next
26404         nodes.
26405
26406 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
26407
26408         * mail-source.el (mail-source-directory): Fix doc-string.
26409
26410 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
26411
26412         * assistant.el (assistant-render-text, assistant-eval): Add :set
26413         widget type, which is different because it takes and returns a
26414         list.  Much hilarity ensues.
26415
26416 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
26417
26418         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
26419
26420         * gnus-group.el (gnus-group-get-new-news-this-group):
26421         Add doc-string.
26422
26423         * gnus-start.el (gnus-activate-group): Add doc-string.
26424
26425 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
26426
26427         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
26428
26429 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
26430
26431         * assistant.el (assistant-render-text): Try to add a :set
26432         widget, more to come.
26433
26434         * spam.el (spam-group-spam-contents-p): Handle empty groupname
26435         strings.
26436         (spam-report-articles-resend)
26437         (spam-register-routine): Do registration iff any articles warrant
26438         it.
26439         (spam-summary-prepare-exit): Change log message for nil group
26440         destinations.
26441
26442 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
26443
26444         * spam.el (spam-report-resend-register-routine):
26445         Allow spam-report-resend-to to be a group parameter or a global value.
26446
26447 2004-05-26  Simon Josefsson  <jas@extundo.com>
26448
26449         * starttls.el: Merge with my GNUTLS based starttls.el.
26450         (starttls-gnutls-program, starttls-use-gnutls)
26451         (starttls-extra-arguments, starttls-process-connection-type)
26452         (starttls-connect, starttls-failure, starttls-success):
26453         New variables.
26454         (starttls-program, starttls-extra-args): Doc fix.
26455         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
26456         New functions.
26457         (starttls-negotiate, starttls-open-stream):
26458         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
26459         function if it is set.
26460
26461 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26462
26463         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
26464         structured fields.
26465
26466 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26467
26468         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
26469
26470 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
26471
26472         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
26473         Add variable.
26474         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
26475         assigning the spam-mark to new messages.
26476
26477 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
26478
26479         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
26480
26481 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26482
26483         * dgnushack.el: Autoload customize-set-variable for XEmacs.
26484
26485         * rfc2047.el (rfc2047-encodable-p): Don't move point.
26486         (rfc2047-decode): Treat the ascii coding-system as raw-text by
26487         default.
26488
26489 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
26490
26491         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
26492         correct data.
26493
26494 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
26495
26496         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
26497         (spam-group-processor-p): Fix function.
26498         (spam-group-processor-multiple-p)
26499         (spam-group-spam-processor-report-gmane-p)
26500         (spam-group-spam-processor-report-resend-p)
26501         (spam-group-spam-processor-bogofilter-p)
26502         (spam-group-spam-processor-blacklist-p)
26503         (spam-group-spam-processor-ifile-p)
26504         (spam-group-ham-processor-ifile-p)
26505         (spam-group-spam-processor-spamoracle-p)
26506         (spam-group-spam-processor-crm114-p)
26507         (spam-group-ham-processor-bogofilter-p)
26508         (spam-group-spam-processor-stat-p)
26509         (spam-group-ham-processor-stat-p)
26510         (spam-group-ham-processor-whitelist-p)
26511         (spam-group-ham-processor-BBDB-p)
26512         (spam-group-ham-processor-spamoracle-p)
26513         (spam-group-ham-processor-copy-p): Remove functions with some
26514         prejudice against unneeded code.
26515         (spam-report-articles-resend)
26516         (spam-report-resend-register-routine): Allow the group/topic
26517         spam-resend-to value to override spam-report-resend-to.
26518         (spam-summary-prepare-exit): Invoke spam-group-processor-p
26519         properly now.
26520
26521         * gnus.el (spam-resend-to): Add group/topic parameter.
26522         (spam-process): Move the OBSOLETE processors to the end of the
26523         choices.
26524
26525 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
26526
26527         * spam-report.el (spam-report-resend-to, spam-report-resend):
26528         Start with resend-to set to nil, and then ask the user if necessary.
26529         (spam-report-resend): spam-report-resend takes a list of articles, not
26530         separate article numbers.
26531
26532 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26533
26534         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
26535         addition to emacs-w3m.
26536
26537 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26538
26539         * assistant.el (assistant-authinfo-data): New function.
26540         (assistant-eval): Eval for entire assistant.
26541
26542         * netrc.el (netrc-services-file): New variable.
26543         (netrc-parse-services): New function.
26544         (netrc-find-service-name): New function.
26545         (netrc-find-service-number): New function.
26546         (netrc-port-equal): New function.
26547         (netrc-machine): Use it.
26548
26549         * nnimap.el (nnimap-open-connection): Use netrc.
26550
26551         * gnus-util.el (gnus-netrc-get): Remove aliases.
26552
26553         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
26554
26555         * assistant.el (wid-edit): Fix compilation.
26556
26557         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
26558
26559 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
26560
26561         * gnus-util.el (gnus-set-file-modes): New function.  (small
26562         patch).
26563
26564 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26565
26566         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
26567
26568         * assistant.el (assistant-render-node): Fix up rendering and
26569         read-only text.
26570         (assistant-render-node): Reset.
26571         (assistant-make-read-only): Not sticky.
26572
26573 2004-05-20  Danny Siu  <dsiu@adobe.com>
26574
26575         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
26576         centered even when gnus-auto-center-summary is t.
26577
26578 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26579
26580         * dns.el (dns-get-txt-answer): New function.
26581         (dns-read-txt): Ditto.
26582         (query-dns): Use it.
26583
26584 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
26585
26586         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
26587         active for foreign groups even if the group level is higher than
26588         the specified value.
26589
26590 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26591
26592         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
26593         non-active groups.
26594
26595         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
26596
26597 2004-05-20  Magnus Henoch  <mange@freemail.hu>
26598
26599         * dns.el (dns-read-type): Add support for SVR.  (small patch)
26600
26601 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
26602
26603         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
26604         (spam-crm114-header, spam-crm114-spam-switch)
26605         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
26606         (spam-crm114-positive-spam-header)
26607         (spam-crm114-database-directory, spam-list-of-processors)
26608         (spam-group-spam-processor-crm114-p)
26609         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
26610         (spam-generic-score, spam-list-of-checks)
26611         (spam-list-of-statistical-checks, spam-registration-functions)
26612         (spam-check-crm114-headers, spam-crm114-score)
26613         (spam-check-crm114, spam-crm114-register-with-crm114)
26614         (spam-crm114-register-spam-routine)
26615         (spam-crm114-unregister-spam-routine)
26616         (spam-crm114-register-ham-routine)
26617         (spam-crm114-unregister-ham-routine): Add CRM114 support.
26618
26619 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
26620
26621         * gnus.el: Add spam-use-crm114.
26622
26623         * spam.el (spam-list-of-processors, spam-registration-functions):
26624         Add spam-use-resend.
26625         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
26626         (spam-report-articles-gmane): Add doc fix.
26627         (spam-report-articles-resend, spam-report-resend-register-routine):
26628         Add wrappers around spam-report-resend-to.
26629
26630         * spam-report.el (spam-report-resend-to, spam-report-resend):
26631         Add support for resending spam.
26632         (spam-report-gmane): Fix line length >80.
26633
26634         * gnus.el (spam-process): Add spam-use-resend.
26635
26636 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26637
26638         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
26639         number of processed spam messages.
26640         (spam-ham-copy-or-move-routine): Return the number of processed
26641         ham messages.
26642         (spam-summary-prepare-exit): Use the above values to decide
26643         whether status messages should be displayed.
26644
26645 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
26646
26647         * rfc2047.el (rfc2047-encode-function-alist): Rename from
26648         `rfc2047-encoding-function-alist' in order to avoid conflicting
26649         with the old version.
26650         (rfc2047-encode-region): Concatenate words containing non-ASCII
26651         characters in structured fields; don't encode space-delimited
26652         ASCII words even in unstructured fields; don't break words at
26653         char-category boundaries.
26654         (rfc2047-encode-1): New function.
26655         (rfc2047-encode): Use it; encode text so that it occupies the
26656         maximum width within 76-column; work correctly on Q encoding for
26657         iso-2022-* charsets.
26658         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
26659         sure not to break a line just after the header name.
26660         (rfc2047-b-encode-region): Remove.
26661         (rfc2047-b-encode-string): New function.
26662         (rfc2047-q-encode-region): Remove.
26663         (rfc2047-q-encode-string): New function.
26664
26665         * mm-util.el (mm-replace-in-string): New function.
26666
26667 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26668
26669         * gnus-msg.el (gnus-inews-make-draft-meta-information):
26670         Really get it right.
26671         (gnus-inews-make-draft): Really.
26672
26673 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
26674
26675         * nnmh.el (nnmh-request-list-1): Don't check the link count
26676         before descending.  (small patch)
26677
26678 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26679
26680         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
26681         stuff.
26682
26683         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
26684         Match on real group name.
26685
26686         * gnus-art.el (gnus-signature-limit): Doc fix.
26687
26688         * gnus-msg.el (gnus-inews-make-draft): Quote list.
26689
26690         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
26691
26692 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
26693
26694         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
26695         isn't a string.
26696
26697 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26698
26699         * gnus-draft.el (gnus-draft-send):
26700         Bind rfc2047-encode-encoded-words.
26701
26702         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
26703         (rfc2047-encodable-p): Say that =? needs encoding.
26704         (rfc2047-encode-encoded-words): New variable.
26705
26706         * gnus-group.el (gnus-group-select-group): Doc fix.
26707
26708         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
26709
26710         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
26711         to nil.
26712
26713         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
26714
26715         * nnheader.el (nnheader-get-lines-and-char): New function.
26716
26717 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
26718
26719         * gnus-msg.el (gnus-summary-followup-with-original):
26720         Document yanking of region when active.
26721
26722 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
26723
26724         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
26725         groups if the group level is higher than the specified value.
26726
26727 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
26728
26729         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
26730         (gnus-group-jump-to-group): Add prefix argument using
26731         `gnus-group-jump-to-group-prompt'.  Query before jumping to
26732         non-active group.
26733
26734         * compface.el (uncompface): Be verbose when changing
26735         `uncompface-use-external'.
26736
26737         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
26738         handle manual section.
26739
26740 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26741
26742         * gnus-art.el (gnus-button-alist): Revert previous change.
26743
26744 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
26745
26746         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
26747
26748 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26749
26750         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
26751         whether backend can accept message.
26752
26753         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
26754
26755 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
26756
26757         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
26758         Avoid creating directory when nntp-marks-is-evil is true.
26759         Reported by Reiner Steib.
26760
26761 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
26762
26763         * gnus-picon.el (gnus-picon-insert-glyph):
26764         Add optional `nostring' argument.
26765
26766 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
26767
26768         * gnus-picon.el (gnus-picon-style): New variable.
26769         (gnus-picon-transform-address): Support `gnus-picon-style'.
26770
26771 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26772
26773         * message.el (message-fill-field): Return point.
26774         (message-generate-headers): Go to end of field.
26775
26776         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
26777         stuff for non-living groups.
26778
26779 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
26780
26781         * gnus-art.el (gnus-article-followup-with-original)
26782         (gnus-article-reply-with-original): gnus-mark-active-p ->
26783         gnus-region-active-p.
26784
26785 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
26786
26787         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
26788         only when there is spam or ham to be processed.
26789
26790 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26791
26792         * mail-source.el (mail-source-delete-crash-box): Refactor.
26793         (mail-source-fetch): Use it.
26794         (mail-source-fetch-file): Ditto.
26795         (mail-source-fetch-directory): Run postscript in loop.
26796         (mail-source-fetch-pop): Delete.
26797         (mail-source-fetch-maildir): Ditto.
26798         (mail-source-fetch-imap): Ditto.
26799
26800         * imap.el (imap-authenticators): Comment out sasl.
26801
26802         * message.el (message-skip-to-next-address): New function.
26803         (message-fill-header-address): Refactor.
26804         (message-fill-address): Use it.
26805         (message-delete-address): Use it.
26806         (message-fill-header-general): Refactor.
26807         (message-fill-field-address): Rename.
26808         (message-narrow-to-field): Find the start of the header.
26809         (message-header-format-alist): Don't pre-fill.
26810         (message-fill-header): Remove.
26811         (message-insert-header): New function.
26812         (message-shorten-references): Use it.
26813
26814         * rfc2047.el (rfc2047-field-value): Strip props.
26815
26816         * mail-parse.el (mail-header-make-address): New alias.
26817
26818         * ietf-drums.el (ietf-drums-make-address): New function.
26819
26820         * imap.el: Add compiler directives.
26821
26822         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
26823
26824         * gnus-art.el (article-decode-idna-rhs): Don't use
26825         message-idna-inside-rhs-p.
26826
26827 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26828
26829         * message.el (message-idna-inside-rhs-p): Remove.
26830         (message-idna-to-ascii-rhs-1): Use proper address parsing.
26831
26832         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
26833         false positives.
26834
26835 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
26836
26837         * imap.el (imap-sasl-make-mechanisms): Use sasl.
26838
26839 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26840
26841         * nneething.el (nneething-file-name): Don't create spurious
26842         files.
26843
26844         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
26845         (gnus-inews-do-gcc): Remove sleep.
26846
26847         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
26848         part under point.
26849
26850         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
26851         (gnus-agent-regenerate-group): Using nil messages aren't valid.
26852
26853 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
26854
26855         * spam.el (spam-summary-prepare-exit): Fix (length).
26856
26857 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
26858
26859         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
26860         as expired without moving it" message when there are spam
26861         messages left.
26862
26863 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
26864
26865         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
26866         header is not nil.
26867
26868 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
26869
26870         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
26871         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
26872         (nntp-marks-changed-p): New arg SERVER.
26873         (nntp-request-update-info): Adjust caller.
26874
26875 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
26876
26877         * nntp.el (nntp-save-marks): Pass missing arg.
26878
26879 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
26880
26881         * nntp.el: Support marks.
26882         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
26883         (nntp-marks-modtime, nntp-marks-directory): New variables.
26884         (nntp-request-set-mark, nntp-request-update-info)
26885         (nntp-possibly-create-directory, nntp-marks-changed-p)
26886         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
26887         New functions.
26888
26889 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
26890
26891         * gnus-xmas.el (gnus-xmas-select-lowest-window)
26892         (gnus-xmas-redefine): Rename.
26893
26894         * gnus-score.el (gnus-score-insert-help):
26895         Use gnus-select-lowest-window.
26896
26897         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
26898         appt-select-lowest-window and rename to gnus-select-lowest-window.
26899
26900         * gnus.el: do.
26901
26902 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26903
26904         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
26905         encodings of MIME-encoded words, in order to improve
26906         interoperability with several broken MUAs.
26907
26908 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26909
26910         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
26911         tags, only when charsets are not specified in headers.
26912         (mm-inline-text-html-render-with-w3m): Ditto.
26913
26914         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
26915         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
26916
26917 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26918
26919         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
26920         instead of MIME-decoded from fields when checking
26921         `gnus-article-address-banner-alist'.
26922
26923 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
26924
26925         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
26926         description rather than subject.
26927
26928 2004-05-02  Steve Youngs  <steve@youngs.au.com>
26929
26930         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
26931
26932 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26933
26934         * gnus.el (gnus-version-number): Bump.
26935
26936 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26937
26938         * gnus.el: No Gnus v0.2 is released.
26939
26940 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26941
26942         * gnus-agent.el (gnus-agent-read-agentview):
26943         Inline gnus-uncompress-range.
26944
26945 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26946
26947         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
26948         `exec-installed-p'.
26949
26950 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26951
26952         * gnus.el (spam-process, spam-autodetect-methods):
26953         Add bsfilter and bsfilter-headers.
26954
26955         * spam.el (spam-bsfilter): New customize group.
26956         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
26957         (spam-bsfilter-header, spam-bsfilter-probability-header)
26958         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
26959         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
26960         (spam-bsfilter-database-directory): New options.
26961         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
26962         (spam-list-of-statistical-checks, spam-registration-functions):
26963         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
26964         (spam-bsfilter-score): New command.
26965         (spam-check-bsfilter-headers, spam-check-bsfilter)
26966         (spam-bsfilter-register-with-bsfilter)
26967         (spam-bsfilter-register-spam-routine)
26968         (spam-bsfilter-unregister-spam-routine)
26969         (spam-bsfilter-register-ham-routine)
26970         (spam-bsfilter-unregister-ham-routine): New functions.
26971         (spam-generic-score): Support bsfilter; Accept an optional argument
26972         to recalcurate spam score even if scoring header has already been
26973         added.
26974         (spam-bogofilter-score, spam-spamassassin-score): Accept an
26975         optional argument to recalcurate spam score even if scoring header
26976         has already been added.
26977
26978 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
26979
26980         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
26981         strings!  Reported by David D. Smith <davidsmith@acm.org>.
26982         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
26983         link is missing.
26984
26985 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
26986
26987         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
26988         (html2text-get-attr): Rewrite.
26989
26990         * message.el (message-setup-1): Remove redundant put-text-property
26991         on mail-header-separator.
26992
26993 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
26994
26995         * gnus-registry.el (gnus-registry-cache-whitespace)
26996         (gnus-registry-action, gnus-registry-spool-action)
26997         (gnus-registry-split-fancy-with-parent): Change message levels
26998         from 5 to 3 or 7, as needed.
26999
27000         * spam.el (spam-summary-prepare-exit)
27001         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
27002         (spam-split, spam-find-spam, spam-log-undo-registration)
27003         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
27004         level from 5 to 6.
27005
27006 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
27007
27008         * gnus-ems.el: Autoload appt-select-lowest-window (revert
27009         2004-03-04 change).
27010
27011 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
27012
27013         * sieve-manage.el (sieve-manage-open):
27014         * nnweb.el (nnweb-insert-html):
27015         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
27016         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
27017         * nnspool.el (nnspool-request-group):
27018         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
27019         * nnml.el (nnml-request-update-info):
27020         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
27021         (nnmh-request-create-group, nnmh-update-gnus-unreads):
27022         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
27023         (nnimap-request-set-mark):
27024         * nnfolder.el (nnfolder-request-update-info):
27025         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
27026         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
27027         * gnus-uu.el (gnus-uu-find-articles-matching):
27028         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
27029         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
27030         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
27031         * gnus-nocem.el (gnus-nocem-scan-groups):
27032         * gnus-int.el (gnus-start-news-server):
27033         * gnus-group.el (gnus-group-make-kiboze-group)
27034         (gnus-group-browse-foreign-server):
27035         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
27036         Use mapc when appropriate.
27037
27038 2004-04-22  Dan Christensen  <jdc@uwo.ca>
27039             Adam Sjøgren  <asjo@koldfront.dk>
27040             Wes Hardaker  <wes@hardakers.net>
27041             Michael Shields  <shields@msrl.com>
27042
27043         * spam.el (spam-necessary-extra-headers): Get the extra headers we
27044         may need for spam sorting and scoring.
27045         (spam-user-format-function-S): Add user format function suitable for
27046         general use.
27047         (spam-article-sort-by-spam-status): Add sorting function for summary
27048         sorting.
27049         (spam-extra-header-to-number): Add function to get a score from a
27050         header.
27051         (spam-summary-score): Add function to get a numeric score from the
27052         headers.
27053         (spam-generic-score): Fix function doc, was in wrong place.
27054         (spam-initialize): Take symbols when it's run, and install the
27055         extra headers that spam-necessary-extra-headers thinks we need.
27056
27057 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
27058
27059         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
27060         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
27061
27062 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
27063
27064         * gnus-sum.el (gnus-set-global-variables)
27065         (gnus-build-all-threads, gnus-get-newsgroup-headers)
27066         (gnus-article-get-xrefs, gnus-summary-best-group)
27067         (gnus-summary-next-article, gnus-summary-enter-digest-group)
27068         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
27069         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
27070         Use with-current-buffer.
27071
27072 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
27073
27074         * spam.el (spam-summary-prepare-exit): Simplify logic.
27075         (spam-fetch-article-header): Read the article header if it's not
27076         available.
27077         (spam-list-articles): Simplify logic.
27078         (spam-filelist-register-routine): Fix bug with unregister-list.
27079
27080         * gnus-registry.el: Fix comments at beginning.
27081
27082 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
27083
27084         * message.el (message-cater-to-broken-inn): Remove.
27085         (message-shorten-references): Make sure the total folded length of
27086         References is shorter than 998 characters to cater to a bug in INN
27087         2.3.  Also, don't pretend that references aren't folded -- this
27088         hasn't worked for a while.
27089
27090 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27091
27092         * gnus-agent.el (gnus-agentize):
27093         gnus-agent-send-mail-real-function no longer set to current value
27094         of message-send-mail-function but rather a lambda that calls
27095         message-send-mail-function.  The change makes the agent real-time
27096         responsive to user changes to message-send-mail-function.
27097
27098 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27099
27100         * legacy-gnus-agent.el
27101         (gnus-agent-convert-to-compressed-agentview): Fix typos with
27102         help from Florian Weimer <fw@deneb.enyo.de>
27103
27104 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
27105
27106         * nnmail.el (nnmail-cache-insert): Revert last change.
27107
27108 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
27109
27110         * nnmail.el (nnmail-cache-insert): Always check whether
27111         nnmail-cache-ignore-groups matches a group name.
27112
27113 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
27114
27115         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
27116         (spam-find-spam, spam-log-processing-to-registry)
27117         (spam-log-registered-p, spam-log-unregistration-needed-p)
27118         (spam-log-undo-registration): Use gnus-message instead of
27119         gnus-error, none of these errors are fatal.
27120
27121         * gnus-registry.el (gnus-registry-clean-empty-function)
27122         (gnus-registry-clean-empty): Remove only empty entries without
27123         extra data.
27124
27125 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
27126
27127         * spam-stat.el (spam-stat-buffer-change-to-spam)
27128         (spam-stat-buffer-change-to-non-spam): Change (error) to
27129         (gnus-message 8) invocation.
27130
27131 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
27132
27133         * nntp.el (nntp-via-netcat-command): New variable.
27134         (nntp-via-netcat-switches): New variable.
27135         (nntp-open-via-rlogin-and-netcat): New function.
27136         (nntp-open-connection-function): Doc fix.
27137         (nntp-telnet-command): Doc fix.
27138         (nntp-end-of-line): Doc fix.
27139         (nntp-via-rlogin-command): Doc fix.
27140         (nntp-via-user-name): Doc fix.
27141         (nntp-via-address): Doc fix.
27142
27143 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
27144
27145         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
27146         error in Emacs 21.1.
27147
27148 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
27149
27150         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
27151
27152 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27153
27154         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
27155         (gnus-agent-with-refreshed-group): New macro.
27156         (gnus-agent-rename-group): New function.
27157         (gnus-agent-delete-group): New function.
27158         (gnus-agent-save-group-info): Use gnus-command-method when
27159         `method' parameter is nil.  Don't write nil entries into the
27160         active file.
27161         (gnus-agent-get-group-info): New function.
27162         (gnus-agent-fetch-articles):
27163         Use gnus-agent-update-files-total-fetched-for to increment disk space
27164         used.
27165         (gnus-agent-fetch-headers, gnus-agent-save-alist):
27166         Use gnus-agent-update-view-total-fetched-for to increment disk space
27167         used.
27168         (gnus-agent-get-local): Add optional parameters to avoid calling
27169         gnus-group-real-name and gnus-find-method-for-group.
27170         (gnus-agent-set-local): Delete stored entry if either min, or max,
27171         are nil.
27172         (gnus-agent-fetch-session): Reworded error/quit messages.
27173         On quit, use gnus-agent-regenerate-group to record existance of any
27174         articles fetched to disk before the quit occurred.
27175         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
27176         gnus-agent-update-view-total-fetched-for, and
27177         gnus-agent-update-files-total-fetched-for to decrement disk space
27178         used.
27179         (gnus-agent-retrieve-headers):
27180         Use gnus-agent-update-view-total-fetched-for to increment disk space
27181         used.
27182         (gnus-agent-regenerate-group): Replace gnus-group-update-group
27183         with gnus-agent-update-files-total-fetched-for to decrement disk
27184         space and fresh group buffer.
27185         (gnus-agent-inhibit-update-total-fetched-for): New variable.
27186         (gnus-agent-need-update-total-fetched-for): New variable.
27187         (gnus-agent-update-files-total-fetched-for): New function.
27188         (gnus-agent-update-view-total-fetched-for): New function.
27189         (gnus-agent-total-fetched-for): New function.
27190
27191         * gnus-cache.el (gnus-cache-save-buffers):
27192         Use gnus-cache-update-overview-total-fetched-for to change disk space
27193         used by this group.
27194         (gnus-cache-possibly-enter-article):
27195         Use gnus-cache-update-file-total-fetched-for to increment disk space
27196         used by this group.
27197         (gnus-cache-possibly-remove-article):
27198         Use gnus-cache-update-file-total-fetched-for to decrement disk space
27199         used by this group.
27200         (gnus-cache-generate-nov-databases): Purge total fetched cache.
27201         (gnus-cache-rename-group): New function.
27202         (gnus-cache-delete-group): New function.
27203         (gnus-cache-inhibit-update-total-fetched-for): New variable.
27204         (gnus-cache-need-update-total-fetched-for): New variable.
27205         (gnus-cache-with-refreshed-group): New macro.
27206         (gnus-cache-update-file-total-fetched-for): New function.
27207         (gnus-cache-update-overview-total-fetched-for): New function.
27208         (gnus-cache-rename-group-total-fetched-for): New function.
27209         (gnus-cache-delete-group-total-fetched-for): New function.
27210         (gnus-cache-total-fetched-for): New function.
27211
27212         * gnus-group.el: Require gnus-sum and autoload functions to
27213         resolve warnings when gnus-group.el compiled alone.
27214         (gnus-group-line-format): Document new %F.
27215         (size of Fetched data) group line format; identifies disk space
27216         used by agent and cache.
27217         (gnus-group-line-format-alist): Define new F format.
27218         (gnus-total-fetched-for): New function.
27219         (gnus-group-delete-group): No longer update
27220         gnus-cache-active-altered as gnus-request-delete-group now keeps
27221         the cache in sync.
27222         (gnus-group-list-active): Let the agent store a server's active
27223         list if currently plugged.
27224
27225         * gnus-int.el (gnus-request-delete-group):
27226         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
27227         local disk in sync with the server.
27228         (gnus-request-rename-group):
27229         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
27230         local disk in sync with the server.
27231
27232         * gnus-start.el (gnus-get-unread-articles):
27233         Cosmetic simplification to logic.
27234
27235         * gnus-util.el (gnus-rename-file): New function.
27236
27237 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
27238
27239         * mm-util.el (mm-image-load-path): Handle nil in load-path.
27240
27241 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
27242
27243         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
27244         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
27245
27246 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
27247
27248         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
27249         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
27250
27251 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
27252
27253         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
27254
27255 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
27256
27257         * spam.el (spam-set-difference): Add function to replace
27258         gnus-set-difference in spam.el.
27259         (spam-summary-prepare-exit): Use spam-set-difference.
27260
27261 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
27262
27263         * gnus-registry.el (gnus-registry-cache-file): Update to use
27264         gnus-dribble-directory OR gnus-home-directory OR ~.
27265         (gnus-registry-split-fancy-with-parent): Fix doc.
27266
27267 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
27268
27269         * message.el (message-exchange-point-and-mark):
27270         Use message-mark-active-p.  Suggested by Jesper Harder
27271         <harder@ifa.au.dk>.
27272
27273 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
27274
27275         * message.el (message-exchange-point-and-mark): Don't activate
27276         region if it was inactive.  Suggested by Hiroshi Fujishima
27277         <pooh@nature.tsukuba.ac.jp>.
27278
27279 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
27280
27281         * gnus-art.el (article-display-face): Display Faces in the same
27282         order as X-Faces.
27283
27284 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
27285
27286         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
27287
27288 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
27289
27290         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
27291         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
27292         (gnus-article-mime-hierarchy): Remove.
27293         (gnus-article-mime-hierarchy-next): Remove.
27294         (gnus-article-mode): Revert 2004-03-19 change.
27295         (gnus-article-setup-buffer): Revert 2004-03-19 change.
27296         (gnus-insert-mime-button): Revert 2004-03-19 change.
27297         (gnus-mime-accumulate-hierarchy): Remove.
27298         (gnus-mime-enter-multipart): Remove.
27299         (gnus-mime-leave-multipart): Remove.
27300         (gnus-mime-display-part): Revert 2004-03-19 change.
27301         (gnus-mime-display-alternative): Revert 2004-03-19 change.
27302
27303         * mml.el (mml-preview): Revert 2004-03-19 change.
27304
27305 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
27306
27307         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
27308
27309 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
27310
27311         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
27312         t while entering a file name using the mm-with-multibyte macro.
27313         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
27314
27315         * mm-util.el (mm-with-multibyte): New macro.
27316
27317 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
27318
27319         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
27320         New user option.
27321         (gnus-mime-multipart-functions): Doc and customization fix.
27322         (gnus-article-mime-hierarchy): New variable.
27323         (gnus-article-mime-hierarchy-next): New variable.
27324         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
27325         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
27326         gnus-article-mime-hierarchy-next to nil.
27327         (gnus-insert-mime-button): Show hierarchy numbers.
27328         (gnus-mime-accumulate-hierarchy): New function.
27329         (gnus-mime-enter-multipart): New function.
27330         (gnus-mime-leave-multipart): New function.
27331         (gnus-mime-display-part): Recompute hierarchical MIME structure.
27332         (gnus-mime-display-alternative): Show hierarchy numbers.
27333
27334         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
27335         gnus-article-mime-hierarchy-next to nil.
27336
27337 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
27338
27339         * dns.el: Don't require gnus-xmas.
27340
27341 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
27342
27343         * mml.el (mml-generate-mime-1): Don't use format=flowed with
27344         inline PGP.
27345         (mml-menu): Disable mml-quote-region if mark is inactive.
27346
27347 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
27348
27349         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
27350         when the group's active is not available.
27351
27352 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
27353
27354         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
27355         error.
27356
27357 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
27358
27359         * imap.el (imap-store-password): New variable.
27360         (imap-interactive-login): Use it.
27361         Suggested by Mark Plaksin <happy@mcplaksin.org>.
27362
27363 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
27364
27365         * gnus-art.el (gnus-article-read-summary-keys): Restore new
27366         window-start and hscroll to summary window.
27367
27368 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27369
27370         * gnus-start.el (gnus-convert-old-newsrc): Only write the
27371         conversion message to newsrc-dribble when an actual conversion is
27372         performed.
27373
27374 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
27375
27376         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
27377
27378 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
27379
27380         * mm-decode.el (mm-complicated-handles): New function reviving
27381         former definition of mm-multiple-handles.
27382
27383         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
27384         (gnus-mime-delete-part): Use it.
27385
27386 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27387
27388         * gnus-agent.el (gnus-agent-read-local):
27389         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
27390         avoid the implicit assumption that they will always be equal.
27391         (gnus-agent-save-local): Bind buffer-file-coding-system, not
27392         coding-system-for-write, as the with-temp-file macro first prints
27393         to a buffer then saves the buffer.
27394
27395 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
27396
27397         * gnus-art.el (gnus-article-edit-part): New function.
27398         (gnus-mime-save-part-and-strip): Use it; do query instead of
27399         signaling an error; don't use mm-multiple-handles.
27400         (gnus-mime-delete-part): Ditto.
27401
27402 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27403
27404         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
27405         old file versions.
27406         (gnus-group-prepare-hook): Remove function that converted list
27407         form of gnus-agent-expire-days to group properties.
27408
27409         * gnus-int.el: Autoload gnus-agent-regenerate-group.
27410         (gnus-request-accept-article): Re-indented.
27411
27412         * gnus-start.el (gnus-convert-old-newsrc): Registered new
27413         converters to handle old agent file formats.  Add logic for a
27414         "backup before upgrading warning".
27415         (gnus-convert-mark-converter-prompt): Developers can mark
27416         functions as needing (default), or not needing,
27417         gnus-convert-old-newsrc's "backup before upgrading warning".
27418         (gnus-convert-converter-needs-prompt): Tests whether the user
27419         should be protected from potentially irreversable changes by the
27420         function.
27421
27422         * legacy-gnus-agent.el: New.  Provides converters that are only
27423         loaded when gnus-convert-old-newsrc needs to call them.
27424
27425 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
27426
27427         * mail-source.el (mail-source-touch-pop): Doc fix.
27428
27429         * message.el (message-smtpmail-send-it): Doc fix.
27430
27431 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
27432
27433         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
27434
27435         * nnmail.el (nnmail-split-fancy): do.
27436
27437         * gnus-kill.el (gnus-kill, gnus-execute): do.
27438
27439 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
27440
27441         * gnus-sum.el (gnus-widget-reversible-match)
27442         (gnus-widget-reversible-to-internal)
27443         (gnus-widget-reversible-to-external): New functions.
27444         (gnus-widget-reversible): New widget.
27445         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
27446
27447 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
27448
27449         * gnus-sum.el (gnus-thread-sort-functions)
27450         (gnus-article-sort-functions): Document `(not F)' items.
27451
27452 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
27453
27454         * spam.el (spam-use-gmane-xref): Add new backend.
27455         (spam-gmane-xref-spam-group): Add variable to control the name of the
27456         Gmane spam group.
27457         (spam-blackhole-servers, spam-blackhole-good-server-regex)
27458         (spam-regex-headers-spam, spam-regex-headers-ham)
27459         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
27460         (spam-list-of-checks): Add spam-use-gmane-xref to list of
27461         backends and checks.
27462         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
27463
27464         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
27465         an autodetect method.
27466
27467 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27468
27469         * gnus-int.el (gnus-request-accept-article): Inform the agent that
27470         articles are being added to a group.
27471         (gnus-request-replace-article): Inform the agent that articles
27472         need to be uncached as the cached contents are no longer valid.
27473
27474 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
27475
27476         * binhex.el: Don't autoload executable-find.
27477
27478         * canlock.el: Don't autoload mail-fetch-field.
27479
27480         * dgnushack.el: Autoload c-mode for XEmacs.
27481
27482         * gnus-ems.el: Don't autoload appt-select-lowest-window.
27483
27484         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
27485         rmail-dont-reply-to and rmail-output.
27486
27487         * gnus-score.el: Don't autoload ffap-string-at-point.
27488
27489         * gnus-setup.el: Don't autoload sc-cite-original.
27490
27491         * imap.el: Don't autoload base64-decode-string,
27492         base64-encode-string and md5.
27493
27494         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
27495         and rmail-msg-restore-non-pruned-header.
27496
27497         * mm-decode.el: Don't autoload executable-find.
27498
27499         * mm-url.el: Don't autoload executable-find.
27500
27501         * mm-view.el: Don't autoload diff-mode.
27502
27503         * nndb.el: Don't autoload news-reply-mode, news-setup,
27504         cancel-timer and telnet.
27505
27506         * password.el: Don't autoload run-at-time for Emacs.
27507
27508         * sha1-el.el: Don't autoload executable-find.
27509
27510         * sieve-mode.el: Don't autoload c-mode.
27511
27512         * uudecode.el: Don't autoload executable-find.
27513
27514 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27515
27516         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
27517         (gnus-agent-possibly-alter-active): Avoid null in numeric
27518         comparison.
27519         (gnus-agent-set-local): Refuse to save null in local object table.
27520         (gnus-agent-regenerate-group): The REREAD parameter can now be a
27521         list of articles that will be marked as unread.
27522
27523 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
27524
27525         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
27526
27527 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
27528
27529         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
27530         language tags.
27531
27532 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
27533
27534         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
27535         Don't bind "obarray".
27536
27537         * gnus-sum.el (gnus-thread-sort-functions):
27538         Add `gnus-thread-sort-by-most-recent-number' and
27539         `gnus-thread-sort-by-most-recent-date'.
27540         Reported by Kai Grossjohann <kai@emptydomain.de>.
27541
27542 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
27543
27544         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
27545
27546 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27547
27548         * gnus-cus.el (gnus-agent-customize-category):
27549         Remove ignore-errors macro reference that required cl to be loaded at
27550         run-time.
27551
27552         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
27553         single-interval range of the form (min . max).  Previously the
27554         range had to look like ((min . max)).  Likewise, return
27555         (min . max) rather than ((min . max)).
27556         (gnus-range-map): Use gnus-range-normalize to accept
27557         single-interval range.
27558
27559         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
27560         the cache, but not the agent, now appear with their usual face.
27561
27562         * dgnushack.el (loaddir): New variable that is bound to the
27563         directory containing the dgnushack.el file.  Use loaddir, rather
27564         than srcdir, to update load-path.  Change lets dgnushack compile
27565         code in directories other than GNUS/lisp.
27566
27567 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
27568
27569         * lpath.el: Don't bind w3m-safe-url-regexp.
27570
27571         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
27572         w3m-safe-url-regexp variable buffer-local.
27573
27574         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
27575
27576 2004-02-27  Simon Josefsson  <jas@extundo.com>
27577
27578         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
27579         gnus-group-real-prefix.
27580         (gnus-summary-move-article): Use it, instead of
27581         gnus-group-real-prefix.
27582
27583 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
27584
27585         * lpath.el: Bind w3m-safe-url-regexp.
27586
27587         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
27588         w3m-safe-url-regexp variable buffer-local and set it as the value
27589         of mm-w3m-safe-url-regexp.
27590
27591         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
27592
27593         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
27594         parsing gnus-posting-styles when the message is not for replying.
27595
27596         * dgnushack.el: Autoload sgml-mode for XEmacs.
27597
27598         * nnrss.el (nnrss-opml-export):
27599         Use mm-set-buffer-file-coding-system instead of
27600         set-buffer-file-coding-system.
27601
27602 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
27603
27604         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
27605         of checkdoc.el).
27606         * nnrss.el: do.
27607         * gnus-mlspl.el: do.
27608         * gnus-ml.el: do.
27609         * gnus-srvr.el: do.
27610
27611         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
27612
27613 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
27614
27615         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
27616         Corrections to custom-manual links.
27617
27618         * gnus-art.el (gnus-article): Ditto.
27619
27620         * mm-decode.el (mime-display, mime-security): Ditto.
27621
27622 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
27623
27624         * flow-fill.el: Typo.
27625
27626 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
27627
27628         * spam-wash.el: New file.
27629
27630 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
27631
27632         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
27633
27634 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
27635
27636         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
27637         to be run with new-articles as LIST1, not LIST2.
27638         (spam-registration-functions): Add spam-use-ham-copy as a nil
27639         registration backend.
27640
27641 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
27642
27643         * spam-stat.el (spam-stat-washing-hook): New option.
27644         (spam-stat-buffer-words): Use it.
27645         (spam-stat-process-directory, spam-stat-test-directory):
27646         Use insert-file-contents-literally.
27647         (spam-stat-coding-system): New variable.
27648         (spam-stat-load, spam-stat-save): Use it.
27649
27650 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
27651
27652         * spam-report.el (spam-report-plug-agent):
27653         Quote spam-report-url-to-file and spam-report-url-ping-plain.
27654
27655 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
27656
27657         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
27658         Allow / in mailto URLs.
27659
27660 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
27661
27662         * spam-report.el (spam-report-process-queue): Fix interactive use.
27663         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
27664         (spam-report-unplug-agent): Doc fixes.
27665         (spam-report-url-ping-mm-url, spam-report-url-to-file)
27666         (spam-report-agentize, spam-report-deagentize): Autoload.
27667
27668 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
27669
27670         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
27671
27672         * message.el (message-setup-fill-variables): Add mml tags to
27673         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
27674         <ajk@iu.edu>.
27675         (message-mode): Don't modify paragraph-separate there.
27676
27677 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
27678
27679         * compface.el (uncompface-use-external): Default to undecided.
27680         (uncompface-use-external-threshold): New variable.
27681         (uncompface-float-time): New macro.
27682         (uncompface): Determine whether to use the external decoder if
27683         uncompface-use-external is undecided.
27684
27685 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27686
27687         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
27688         after images.
27689
27690         * gnus-art.el (gnus-mime-display-single): Remove dead code.
27691
27692 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
27693
27694         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
27695
27696         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
27697
27698         * gnus-sum.el (gnus-summary-limit-to-age)
27699         (gnus-summary-limit-children): do.
27700
27701         * gnus-int.el (gnus-request-scan): do.
27702
27703         * gnus-group.el (gnus-group-suspend): do.
27704
27705         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
27706
27707         * gnus-cite.el (gnus-cite-parse-attributions): do.
27708
27709         * gnus-agent.el (gnus-summary-set-agent-mark)
27710         (gnus-agent-regenerate-group): do.
27711
27712         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
27713
27714         * binhex.el (binhex-decode-region-internal): do.
27715
27716 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
27717
27718         * gnus-fun.el (gnus-face-properties-alist): New user option.
27719         (gnus-display-x-face-in-from): Use it.
27720
27721         * gnus-art.el (article-display-face): Ditto.
27722
27723         * compface.el (uncompface-use-external): Default to nil.
27724
27725 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
27726
27727         * nntp.el (nntp-erase-buffer): New function.
27728         (nntp-retrieve-data, nntp-send-command)
27729         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
27730         (nntp-possibly-change-group): Use it.
27731
27732         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
27733         Use with-current-buffer.
27734
27735 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
27736
27737         * compface.el: Merge the ELisp-based uncompface program.
27738         (compface): New customization group.
27739         (uncompface-use-external): New user option.
27740         (uncompface): Call uncompface-internal if uncompface-use-external
27741         is nil.
27742         (uncompface-internal): New function.  Note that there are also
27743         some other functions and variables added for this function.
27744
27745 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
27746
27747         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
27748         if necessary.
27749
27750 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
27751
27752         * spam-report.el (spam-report-unplug-agent)
27753         (spam-report-plug-agent, spam-report-deagentize)
27754         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
27755         Add support for the Agent in spam-report: when unplugged, report to a
27756         file; when plugged, submit all the requests.
27757
27758         * spam.el (spam-register-routine): Fix message about
27759         registration.
27760
27761 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
27762
27763         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
27764         dependencies.
27765         (rfc2047-encode): Use it.
27766
27767         * gnus-art.el (gnus-button-marker-list): Move before first
27768         reference.
27769
27770         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
27771         (imap-parse-body): Fix format string mismatch.
27772
27773         * gnus-score.el (gnus-summary-increase-score): do.
27774
27775         * nnrss.el (nnrss-close): New function.
27776
27777 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
27778
27779         * nnrss.el (nnrss-make-filename): New function.
27780         (nnrss-request-delete-group, nnrss-read-server-data)
27781         (nnrss-save-server-data, nnrss-read-group-data)
27782         (nnrss-save-group-data): Use it.
27783         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
27784         (nnrss-read-server-data, nnrss-read-group-data): Use load.
27785         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
27786
27787 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
27788
27789         * mml.el (mml-compute-boundary-1): Don't uncompress files.
27790
27791 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
27792
27793         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
27794         files.
27795
27796         * message.el (message-generate-headers-first): Don't quote nil
27797         and t in docstrings.
27798
27799         * imap.el (imap-id): do.
27800
27801         * gnus-agent.el (gnus-agent-consider-all-articles)
27802         (gnus-agent-queue-mail): do.
27803
27804 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
27805
27806         * spam-report.el (spam-report-process-queue): New function.
27807         Process requests from `spam-report-requests-file'.
27808         (spam-report-process-queue): Doc fix.
27809
27810 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
27811
27812         * spam.el (spam-register-routine)
27813         (spam-log-processing-to-registry, spam-log-registered-p)
27814         (spam-log-unregistration-needed-p, spam-log-undo-registration):
27815         Change "check" to "spam-check" for semi-clarity.
27816
27817 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
27818
27819         * pop3.el: Require nnheader.
27820
27821         * mml-smime.el: Require cl.  Autoload message-fetch-field.
27822
27823         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
27824
27825         * gnus-picon.el: Require cl.
27826
27827         * gnus-fun.el: Require gnus-ems and gnus-util.
27828
27829         * gnus.el (gnus-method-to-server): Move defsubst before first use.
27830
27831         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
27832
27833         * gnus-art.el (gnus-article-edit-mode): Define before first
27834         reference.
27835
27836 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
27837
27838         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
27839         (gnus-uu-post-encoded): Use point-at-bol.
27840
27841         * gnus-topic.el (gnus-group-active-topic-p): do.
27842
27843         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
27844
27845         * gnus-group.el (gnus-group-kill-region): do.
27846
27847         * gnus-art.el (article-date-ut): do.
27848
27849         * message.el (message-fetch-field): Remove redundant
27850         case-fold-search binding.
27851         (message-narrow-to-field): Simplify.
27852
27853 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
27854
27855         * spam.el (spam-directory): Derive from `gnus-directory'.
27856
27857         * spam-report.el (spam-report-url-to-file)
27858         (spam-report-requests-file): New function and variable for offline
27859         reporting.
27860         (spam-report-url-ping-function): Add `spam-report-url-to-file'
27861         and user defined function.
27862         (spam-report-url-ping-mm-url): Remove doubled slash.
27863
27864 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
27865
27866         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
27867
27868 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
27869
27870         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
27871         Fix format string mismatch.
27872
27873         * sieve.el (sieve-deactivate-all): do.
27874
27875         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
27876
27877         * nnlistserv.el (nnlistserv-kk-wash-article): do.
27878
27879         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
27880
27881         * mm-bodies.el (mm-7bit-chars): Don't include \r.
27882
27883 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
27884
27885         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
27886         the list of checks.
27887
27888 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
27889
27890         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
27891         padding.
27892
27893 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
27894
27895         * mm-view.el (mm-fill-flowed): New variable.
27896         (mm-inline-text): Use it.
27897
27898 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
27899
27900         * spam.el (spam-spamassassin-register-ham-routine)
27901         (spam-spamassassin-register-spam-routine): Fix function names.
27902
27903 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
27904
27905         * gnus.el (gnus-tmp-grouplens): Remove.
27906         (gnus-summary-line-format): Remove grouplens.
27907
27908         * gnus-group.el (gnus-group-line-format): Ditto.
27909
27910         * gnus-spec.el (gnus-format-specs): Ditto.
27911         (gnus-update-format-specifications): Flush the group format spec
27912         cache if there's the grouplens stuff.
27913         (gnus-parse-simple-format): Replace %l with the empty string.
27914
27915 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
27916
27917         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
27918         omission.
27919
27920 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
27921
27922         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
27923         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
27924
27925 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
27926
27927         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
27928         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
27929         New macros and functions.
27930         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
27931         Handle > NLINK_MAX messages.
27932         * nnmaildir.el (nnmaildir-request-set-mark):
27933         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
27934
27935 2004-01-25  Alex Schroeder  <alex@gnu.org>
27936
27937         * spam-stat.el (spam-stat-process-directory-age): New option.
27938         (spam-stat-process-directory): Use it.
27939
27940 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
27941
27942         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
27943         (spam-stat-save): Accept prefix argument.
27944
27945 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
27946
27947         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
27948         links" error.
27949
27950 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
27951
27952         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
27953         the rest of the and/or forms.
27954
27955 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
27956
27957         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
27958         compatibility with old .newsrc.eld files.
27959
27960         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
27961
27962         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
27963
27964         * gnus-start.el (gnus-1): do.
27965
27966         * gnus-group.el (gnus-group-line-format-alist): do.
27967
27968         * gnus.el (gnus-use-grouplens, gnus-visual): do.
27969
27970         * gnus-gl.el: Remove.
27971
27972 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27973
27974         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
27975         marks consisting of a single range {for example, (3 . 5)} rather
27976         than a list of a single range { ((3 . 5)) }.
27977
27978 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
27979
27980         * spam-stat.el (spam-stat-store-gnus-article-buffer):
27981         Use with-current-buffer.
27982         (spam-stat-store-current-buffer): Use insert-buffer-substring to
27983         avoid consing a string.
27984
27985         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
27986         Remove obsolete entries for big5 and gb2312.
27987
27988 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27989
27990         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
27991         uncompressed list.
27992
27993 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
27994
27995         * spam-stat.el (spam-stat-strip-xref): New function.
27996         (spam-stat-process-directory): Use it.
27997
27998         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
27999         here -- it's done in message-fetch-field.
28000
28001 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
28002
28003         * gnus-agent.el (gnus-agent-queue-mail)
28004         (gnus-agent-prompt-send-queue): New variables.
28005         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
28006         * gnus-draft.el (gnus-group-send-queue): Pass the group name
28007         "nndraft:queue" along to gnus-draft-send.
28008         Use gnus-agent-prompt-send-queue.
28009         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
28010         is "nndraft:queue".  Suggested by Gaute Strokkenes
28011         <gs234@srcf.ucam.org>
28012
28013         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
28014         (agent-enable-undownloaded-faces): Add.
28015         (gnus-agent-cat-groups): Use eval-and-compile, not
28016         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
28017         method of gnus-agent-cat-groups even when the buffer has been
28018         evaled.
28019         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
28020         delete gnus-agent-save-active-1.
28021         (gnus-agent-save-groups): Delete.  Identical to
28022         gnus-agent-save-active.
28023         (gnus-agent-write-active): No longer adjust agent's copy of active
28024         file as agent's adjustments are now stored in their own
28025         file.  Remove optional parameter.
28026         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
28027         servers.  Add use of min/max range limits from server's local
28028         file.
28029         (gnus-agent-save-alist): Remove unused optional argument.
28030         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
28031         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
28032         (gnus-agent-set-local): A per-server file that keeps min/max range
28033         limits for articles known to the agent.  Provides a fast mechanism
28034         for altering many active ranges.
28035         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
28036         active file (local makes it unnecessary).
28037         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
28038
28039         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
28040         (agent-enable-undownloaded-faces): Add.
28041
28042         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
28043         disable it when sending to "nndraft:queue".
28044         (gnus-group-send-queue): Add safety check to avoid sending queue
28045         when unplugged.
28046
28047         * gnus-group.el (gnus-group-catchup): Use new
28048         gnus-sequence-of-unread-articles, not
28049         gnus-list-of-unread-articles, to avoid exhausting memory with huge
28050         numbers of articles.  Use gnus-range-map to avoid having to
28051         uncompress the unread list.
28052         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
28053         Fix invalid ange-ftp reference.
28054
28055         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
28056         (gnus-sorted-range-intersection): Intersection of two ranges
28057         without requiring that they first be uncompressed.
28058
28059         * gnus-start.el (gnus-activate-group): Unless blocked by the
28060         caller, possibly expand the active range to include both cached
28061         and agentized articles.
28062         (gnus-convert-old-newsrc): Rewrote in anticipation of having
28063         multiple version-dependent converters.
28064         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
28065         gnus-agent-save-active.
28066         (gnus-save-newsrc-file): Save dirty agent range limits.
28067
28068         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
28069         gnus-agent-possibly-alter-active.
28070         (gnus-adjust-marked-articles): Faster handling of simple lists.
28071
28072 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
28073
28074         * spam-stat.el (spam-stat-test-directory): New optional argument
28075         displays a list of files detected.  Suggested by Andrew Cohen
28076         <cohen@andy.bu.edu>.
28077         (spam-stat-buffer-words-with-scores): Don't narrow and change
28078         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
28079
28080 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
28081
28082         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
28083         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
28084         (spam-spamassassin-arguments)
28085         (spam-spamassassin-spam-flag-header)
28086         (spam-spamassassin-positive-spam-flag-header)
28087         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
28088         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
28089         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
28090         (spam-list-of-processors, spam-list-of-checks)
28091         (spam-list-of-statistical-checks, spam-registration-functions)
28092         (spam-check-spamassassin-headers, spam-check-spamassassin)
28093         (spam-spamassassin-score)
28094         (spam-spamassassin-register-with-sa-learn)
28095         (spam-spamassassin-register-spam-routine)
28096         (spam-spamassassin-register-ham-routine)
28097         (spam-assassin-register-spam-routine)
28098         (spam-assassin-register-ham-routine): Add SpamAssassin support.
28099         (spam-bogofilter-score): Fix to show article before scoring.
28100
28101 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
28102
28103         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
28104         default scoring function.
28105         (spam-generic-score): Call spam-spamassassin-score if
28106         spam-use-spamassassin or spam-use-spamassassin-headers is on;
28107         spam-bogofilter-score otherwise.
28108
28109         * gnus.el (spam-process, spam-autodetect-methods):
28110         Add spamassassin and spamassassin-headers.
28111
28112 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
28113
28114         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
28115         Suppress unnecessary messages.
28116
28117 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
28118
28119         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
28120         make-hash-table.
28121
28122 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
28123
28124         * canlock.el (base64-encode-string): Don't autoload it.
28125
28126 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
28127
28128         * run-at-time.el: Remove useless (require 'itimer),
28129         eval-and-compile and (featurep 'xemacs).
28130
28131 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
28132
28133         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
28134         GROUP is a virtual group.
28135
28136 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
28137
28138         * gnus.el: Autoload `message-y-or-n-p'.
28139
28140 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
28141
28142         * pgg-parse.el: Remove unnecessary (require 'custom).
28143
28144         * pgg-def.el: do.
28145
28146         * nnmail.el: do.
28147
28148         * gnus-undo.el: do.
28149
28150         * gnus-picon.el: do.
28151
28152         * gnus-util.el: do.
28153
28154 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
28155
28156         * gnus-sum.el (gnus-pick-line-number): Add autoload.
28157
28158 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
28159
28160         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
28161         handle, as well as a list.
28162
28163         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
28164         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
28165         (mm-w3m-cid-retrieve): Simplify.
28166
28167 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
28168
28169         * message.el (message-kill-to-signature): Allow prefix arg to
28170         specify number of lines to keep before signature.
28171
28172 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
28173
28174         * message.el (message-kill-to-signature): Change docstring.
28175
28176 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
28177
28178         * canlock.el: Always require sha1-el.
28179         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
28180
28181         * message.el: Autoload sha1 only when compiling.
28182
28183         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
28184         eudc-expand-inline for XEmacs.
28185
28186 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
28187
28188         * message.el (message-canlock-generate): Require sha1-el.
28189
28190 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
28191
28192         * message.el (message-expand-name): Silence the byte compiler.
28193
28194         * lpath.el: Add detect-coding-system.
28195
28196         * dgnushack.el (dgnushack-compile): Remove obsolete check for
28197         cus-edit.
28198
28199 2004-01-13  Simon Josefsson  <jas@extundo.com>
28200
28201         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
28202         Invoke gnus-score-mode.
28203         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
28204
28205         * gnus-range.el (gnus-compress-sequence): Doc fix.
28206         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
28207
28208 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
28209
28210         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
28211
28212 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
28213
28214         * spam.el (spam-get-article-as-string): Update to use
28215         gnus-request-article-this-buffer, much simpler.
28216         (spam-get-article-as-buffer): Remove.
28217
28218 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
28219
28220         * message.el (message-expand-name): Use EUDC if the user uses that.
28221
28222 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
28223
28224         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
28225         character for the encoding to avoid consing a string.
28226
28227         * rfc2047.el (rfc2047-decode-string): Don't cons a string
28228         unnecessarily.
28229
28230         * mm-util.el (mm-replace-chars-in-string): Remove.
28231
28232         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
28233         of mm-replace-chars-in-string.
28234
28235 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
28236
28237         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
28238
28239         * mm-util.el (mm-subst-char-in-string): Support inplace.
28240
28241         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
28242         a new string in every iteration.  Use shy groups.
28243
28244 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
28245
28246         * gnus-srvr.el (gnus-browse-unsubscribe-group):
28247         * gnus-soup.el (gnus-soup-group-brew):
28248         * gnus-msg.el (gnus-put-message):
28249         * gnus-move.el (gnus-group-move-group-to-server):
28250         * gnus-kill.el (gnus-batch-score):
28251         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
28252         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
28253         (gnus-group-update-group, gnus-group-read-group)
28254         (gnus-group-make-group, gnus-group-make-help-group)
28255         (gnus-group-make-archive-group, gnus-group-make-directory-group)
28256         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
28257         (gnus-group-sort-by-unread, gnus-group-catchup)
28258         (gnus-group-unsubscribe-group, gnus-group-kill-group)
28259         (gnus-group-yank-group, gnus-group-set-info)
28260         (gnus-group-list-groups):
28261         * gnus.el (gnus-generate-new-group-name):
28262         * gnus-delay.el (gnus-delay-send-queue):
28263         * nnvirtual.el (nnvirtual-catchup-group):
28264         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
28265         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
28266         (gnus-group-prepare-topics, gnus-topic-check-topology):
28267         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
28268         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
28269         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
28270         (gnus-group-make-articles-read):
28271         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
28272         (gnus-group-change-level, gnus-kill-newsgroup)
28273         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
28274         (gnus-get-unread-articles, gnus-make-articles-unread)
28275         (gnus-make-ascending-articles-unread): Use accessor
28276         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
28277         to get group information for improved readability.
28278
28279
28280 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
28281
28282         * gnus-art.el (article-decode-mime-words, article-babel)
28283         (gnus-article-highlight-signature, gnus-article-add-buttons)
28284         (gnus-signature-toggle): Use gnus-with-article-buffer.
28285
28286         * gnus-art.el (gnus-article-highlight-headers)
28287         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
28288
28289         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
28290         (gnus-article-set-globals, gnus-request-article-this-buffer)
28291         (gnus-button-message-id, gnus-article-maybe-hide-headers)
28292         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
28293         (gnus-mime-display-alternative): Use with-current-buffer.
28294
28295 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
28296
28297         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
28298         also under 80 char limit, and call gnus-error if needed.
28299         (spam-fetch-article-header): Fix - it was a
28300         buffer-local variable (gnus-newsgroup-data).
28301         (spam-find-spam): Use spam-generate-fake-headers, forget about
28302         spam-insert-fake-headers.
28303         (spam-insert-fake-headers): Remove.
28304
28305 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
28306
28307         * deuglify.el (gnus-article-outlook-unwrap-lines)
28308         (gnus-outlook-rearrange-article)
28309         (gnus-outlook-repair-attribution-outlook)
28310         (gnus-outlook-repair-attribution-block)
28311         (gnus-outlook-repair-attribution-other): Remove redundant
28312         save-excursion.
28313
28314 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
28315
28316         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
28317         (spam-fetch-field-subject-fast)
28318         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
28319         (spam-fetch-article-header): Add functions to deal with Gnus
28320         internals for fast retrieval of article header data.
28321         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
28322
28323 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
28324
28325         * pop3.el (pop3-md5): Remove.
28326         (pop3-apop): Replace pop3-md5 with md5.
28327
28328         * mm-bodies.el: base64 is always built-in.
28329
28330         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
28331         Use with-current-buffer.
28332
28333 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
28334
28335         * canlock.el (canlock-insert-header): Remove excessive grouping in
28336         regexp.
28337
28338         * gnus-sum.el (gnus-summary-read-document): Ditto.
28339
28340         * gnus-uu.el (gnus-uu-part-number): Ditto.
28341
28342         * html2text.el (html2text-remove-tags): Ditto.
28343         (html2text-format-tags): Ditto.
28344         (html2text-format-single-elements): Ditto.
28345
28346         * mml.el (mml-parse-1): Ditto.
28347
28348 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
28349
28350         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
28351
28352         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
28353
28354         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
28355
28356         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
28357
28358 2003-11-15  Simon Josefsson  <jas@extundo.com>
28359
28360         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
28361         (pgg-gpg-lookup-key): Use regexp match instead of
28362         split-string (split-string is different between emacs 21.2 and
28363         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
28364
28365 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
28366
28367         * gnus-art.el (gnus-mime-view-all-parts)
28368         (gnus-article-part-wrapper, gnus-article-view-part):
28369         Use with-current-buffer.
28370
28371 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
28372
28373         * spam.el (spam-disable-spam-split-during-ham-respool)
28374         (spam-spamoracle-database, spam-cache-lookups)
28375         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
28376         (spam-group-ham-mark-p, spam-group-spam-mark-p)
28377         (spam-group-ham-marks, spam-group-spam-marks)
28378         (spam-group-spam-contents-p, spam-group-ham-contents-p)
28379         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
28380         also add spam-use-blackholes to the statistical checks.
28381         (spam-fetch-field-fast): Add interface to fetching fields, may
28382         become a macro.
28383         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
28384         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
28385         (spam-insert-fake-headers): Fake an article when needed.
28386         (spam-find-spam): Fake article when possible.
28387         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
28388         (spam-check-bogofilter-headers): Use message-fetch-field instead
28389         of nnmail-fetch-field.
28390
28391 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
28392
28393         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
28394
28395 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
28396
28397         * spam.el (spam-split): Do not require spam-use-CHECK to be
28398         enabled if that check is passed to spam-split explicitly; also
28399         fix so 'spam doesn't get converted to spam-split-group when
28400         spam-split-symbolic-return is t.
28401         (spam-find-spam): Find registrations of the article and use those
28402         instead of re-running spam-split to find the spam/ham
28403         classification of the article.
28404         (spam-log-processing-to-registry, spam-log-registered-p)
28405         (spam-log-unregistration-needed-p, spam-log-undo-registration):
28406         Use gnus-error instead of gnus-message.
28407         (spam-log-registration-type): Add function to determine the
28408         classification of a message based on registry entries; will
28409         return nil if both 'spam and 'ham are found.
28410         (spam-check-BBDB): Expand all the BBDB macros here so we can have
28411         a reasonably fast local cache without the loading errors.
28412         (spam-cache-lookups): Set to t by default.
28413         (spam-find-spam): Don't try to guess spam-cache-lookups.
28414         (spam-enter-whitelist, spam-enter-blacklist): Clear the
28415         spam-caches entry.
28416         (spam-filelist-build-cache, spam-filelist-check-cache):
28417         Fix caching of whitelist/blacklist entries.
28418         (spam-check-whitelist, spam-check-blacklist):
28419         Invoke spam-from-listed-p with a type, not a cache variable.
28420         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
28421
28422 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
28423
28424         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
28425
28426         * nnmail.el (nnmail-split-fancy): do.
28427
28428         * mml.el (mml-parse): do.
28429
28430         * gnus-score.el (gnus-enter-score-words-into-hashtb)
28431         (gnus-score-adaptive): do.
28432
28433 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
28434
28435         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
28436         (gnus-mime-button-map): Don't set keymap parent.
28437         (gnus-button-ctan-directory-regexp): Use shy grouping.
28438         (gnus-prev-page-map): Don't set keymap parent.
28439         (gnus-prev-page-map): Remove duplicated one.
28440         (gnus-next-page-map): Don't set keymap parent.
28441         (gnus-mime-security-button-map): Ditto.
28442
28443         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
28444         version number.
28445
28446         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
28447
28448 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
28449
28450         * canlock.el (canlock-sha1-function): Remove.
28451         (canlock-sha1-function-for-verify): Remove.
28452         (canlock-openssl-program): Remove.
28453         (canlock-openssl-args): Remove.
28454         (canlock-ignore-errors): Remove.
28455         (canlock-sha1-with-openssl): Remove.
28456         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
28457         (canlock-verify): Don't use canlock-ignore-errors.
28458
28459         * sha1-el.el (sha1-string-external): Make it can return a string
28460         in binary form.
28461         (sha1-region-external): Ditto.
28462         (sha1-string-internal): Ditto.
28463         (sha1-region-internal): Ditto.
28464         (sha1-region): Ditto.
28465         (sha1-string): Ditto.
28466         (sha1): Ditto.
28467
28468 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28469
28470         * spam.el (spam-report-articles-gmane): New command.
28471
28472 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
28473
28474         * gnus.el: Don't make unnecessary *Group* buffer when loading.
28475
28476         * run-at-time.el (run-at-time-saved): Remove.
28477         (run-at-time): Doc fix.
28478
28479 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
28480
28481         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
28482         (gnus-summary-limit-map): Add it.
28483         (gnus-summary-make-menu-bar): do.
28484
28485 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
28486
28487         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
28488         Make attempt at some caching support (done for BBDB only now).
28489         (spam-find-spam): Set spam-cache-lookups if there are more than 2
28490         addresses to be checked.
28491         (spam-clear-cache-BBDB): Add function, to be invoked by
28492         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
28493         (spam-check-BBDB): Check and use the caches, if
28494         spam-cache-lookups is on, remove superfluous (provide).
28495
28496 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
28497
28498         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
28499
28500 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
28501
28502         * run-at-time.el (run-at-time-saved): Move to after the definition
28503         of `run-at-time'.
28504
28505         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
28506
28507 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
28508
28509         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
28510         mm-w3m-local-map-property.
28511
28512         * mm-view.el (mm-w3m-mode-map): Remove.
28513         (mm-w3m-local-map-property): Remove.
28514         (mm-inline-text-html-render-with-w3m): Don't use
28515         mm-w3m-local-map-property.
28516
28517 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28518
28519         * run-at-time.el: New file.
28520
28521         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
28522         under Emacs.
28523
28524         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
28525         of gnus-set-text-properties.
28526
28527         * gnus-uu.el (gnus-uu-save-article): Ditto.
28528
28529         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
28530
28531         * gnus-cite.el (gnus-cite-parse): Ditto.
28532
28533         * gnus-art.el (gnus-button-push): Use set-text-properties instead
28534         of gnus-.
28535
28536         * gnus-xmas.el (run-at-time): Require run-at-time.
28537
28538         * gnus.el: Change calls to nnheader-run-at-time and
28539         password-run-at-time throughout to use run-at-time directly.
28540
28541         * password.el: Remove definition of run-at-time.
28542
28543         * nnheaderxm.el: Remove definition of run-at-time.
28544
28545 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
28546
28547         * mml.el (mml-minibuffer-read-disposition): Show attachment type
28548         in prompt.
28549
28550 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
28551
28552         * messagexmas.el (message-xmas-redefine): Alias
28553         `message-make-caesar-translation-table' to
28554         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
28555         version.
28556
28557         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
28558         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
28559         `gnus-xmas-set-text-properties'.
28560         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
28561         `gnus-xmas-completing-read'.
28562         (gnus-xmas-completing-read): Removed.
28563         (gnus-xmas-open-network-stream): Removed.
28564
28565         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
28566         XEmacs version.
28567
28568         * dns.el (dns-make-network-process): Use `open-network-stream'
28569         instead of `gnus-xmas-open-network-stream'.
28570
28571         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
28572
28573         * .cvsignore: Add auto-autoloads.el, custom-load.el.
28574
28575 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
28576
28577         * gnus-art.el (gnus-mime-display-alternative)
28578         (gnus-insert-mime-button, gnus-insert-mime-security-button)
28579         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
28580         Don't use gnus-local-map-property.
28581
28582         * gnus-util.el (gnus-local-map-property): Remove.
28583
28584         * mm-view.el (mm-view-pkcs7-decrypt):
28585         Replace gnus-completing-read-maybe-default with completing-read.
28586
28587         * gnus-util.el (gnus-completing-read): do.
28588         (gnus-completing-read-maybe-default): Remove.
28589
28590 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
28591
28592         * password.el: Only autoload `run-at-time' if not XEmacs.
28593         Only autoload the itimer functions if XEmacs.
28594
28595 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
28596
28597         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
28598         XEmacsen.
28599
28600         * dgnushack.el: Autoload executable-find for XEmacs.
28601
28602 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
28603
28604         * gnus-art.el (gnus-read-string): Remove.
28605         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
28606         read-string.
28607
28608 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
28609
28610         * netrc.el: Autoload password-read.
28611         (netrc): Add configuration group.
28612         (netrc-encoding-method, netrc-openssl-path):
28613         Add variables for encoding and decoding of files with symmetric
28614         ciphers.
28615         (netrc-encode): Add assistant function to encode a file with
28616         netrc-encoding-method.
28617         (netrc-parse): Add interactive parameter, added optional
28618         decoding if netrc-encoding-method is non-nil but otherwise
28619         behavior is standard.
28620         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
28621         Do s/encode/encrypt/ everywhere.
28622
28623         * spam.el: Remove executable-find autoload.
28624
28625 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
28626
28627         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
28628
28629         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
28630
28631 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
28632
28633         * gnus-art.el (gnus-treat-ansi-sequences)
28634         (article-treat-ansi-sequences): New variable and function.
28635         Suggested by Dan Jacobson <jidanni@jidanni.org>.
28636
28637         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
28638         Use it.
28639
28640 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
28641
28642         * mm-util.el (mm-quote-arg): Remove.
28643
28644         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
28645         shell-quote-argument.
28646
28647         * gnus-uu.el (gnus-uu-command): do.
28648
28649         * gnus-sum.el (gnus-summary-insert-pseudos): do.
28650
28651         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
28652         with make-char.
28653
28654         * mm-util.el (mm-make-char): Remove.
28655
28656         * mml.el (mml-mode): Replace gnus-add-minor-mode with
28657         add-minor-mode.
28658
28659         * gnus-undo.el (gnus-undo-mode): do.
28660
28661         * gnus-topic.el (gnus-topic-mode): do.
28662
28663         * gnus-sum.el (gnus-dead-summary-mode): do.
28664
28665         * gnus-start.el (gnus-slave-mode): do.
28666
28667         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
28668
28669         * gnus-ml.el (gnus-mailing-list-mode): do.
28670
28671         * gnus-gl.el (gnus-grouplens-mode): do.
28672
28673         * gnus-draft.el (gnus-draft-mode): do.
28674
28675         * gnus-dired.el (gnus-dired-mode): do.
28676
28677         * gnus-ems.el (gnus-add-minor-mode): Remove.
28678
28679         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
28680         Replace gnus-char-width with char-width.
28681
28682         * gnus-ems.el (gnus-char-width): Remove.
28683
28684         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
28685         Replace gnus-char-width with char-width.
28686
28687         * gnus-ems.el (gnus-char-width): Remove.
28688
28689         * spam-stat.el (with-syntax-table): Remove with-syntax-table
28690         definition.
28691         Remove Emacs 20 hash table compatibility code.
28692
28693         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
28694         20 compatibility code.
28695
28696         * spam.el (spam-point-at-eol): Replace with point-at-eol.
28697
28698         * smime.el (smime-point-at-eol): Replace with point-at-eol.
28699
28700         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
28701         Replace with point-at-{eol,bol}.
28702
28703         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
28704
28705         * imap.el (imap-point-at-eol): Replace with point-at-eol.
28706
28707         * flow-fill.el (fill-flowed-point-at-bol)
28708         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
28709
28710         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
28711         Replace with point-at-{eol,bol} throughout all files.
28712
28713 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
28714
28715         * ntlm.el (ntlm-string-as-unibyte): New macro.
28716         (ntlm-build-auth-response): Use it.
28717
28718         Remove Emacs 20 stuff:
28719         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
28720         (butlast, mapc, remove): Remove the compiler macros.
28721         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
28722         of delq and copy-sequence.
28723         * gnus-art.el (popup-menu): Remove the compiler macro.
28724         * nnmail.el (nnmail-split-fancy): Don't support customizing with
28725         Emacs 20.
28726
28727 2004-01-05  Simon Josefsson  <jas@extundo.com>
28728
28729         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
28730         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
28731         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
28732         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
28733         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
28734         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
28735         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
28736         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
28737         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
28738         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
28739         ntlm-string-permute, string-lshift into ntlm-string-lshift,
28740         string-xor into ntlm-string-xor.
28741         Suggested by Jesper Harder <harder@myrealbox.com>.
28742
28743         * ntlm.el: Don't include poem.
28744
28745         * md4.el (print-int32, print-string-hexa): Remove.
28746         Suggested by Jesper Harder <harder@myrealbox.com>.
28747
28748         * sasl-ntlm.el, ntlm.el, md4.el: New files.
28749
28750         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
28751         probably breaks emacs with DL patch, but do we care? Is anyone
28752         still using the DL stuff?)
28753
28754         * sieve-manage.el: Use the password package.
28755         (sieve-manage-read-passwd): Remove.
28756         (sieve-manage-interactive-login): Use password.  Re-add
28757         condition-case around loop.
28758
28759         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
28760         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
28761         Use the password package.
28762
28763 2003-02-19  Simon Josefsson  <jas@extundo.com>
28764
28765         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
28766         token.
28767
28768 2002-08-07  Simon Josefsson  <jas@extundo.com>
28769
28770         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
28771         (sieve-manage-authenticators)
28772         (sieve-manage-authenticator-alist): Add some SASL mechs.
28773         (sieve-sasl-auth): New function.
28774         (sieve-manage-cram-md5-auth)
28775         (sieve-manage-plain-auth): Rewrite using SASL library.
28776         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
28777         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
28778         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
28779         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
28780
28781 2004-01-05  Simon Josefsson  <jas@extundo.com>
28782
28783         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
28784         New files.
28785
28786 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28787
28788         * gnus-group.el (gnus-no-groups-message): Update.
28789
28790         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
28791
28792 2003-11-09  Simon Josefsson  <jas@extundo.com>
28793
28794         * imap.el: Support for ID IMAP extension (RFC 2971).
28795         (imap-local-variables): Add imap-id.
28796         (imap-id): New variable.
28797         (imap-id): New function.
28798         (imap-parse-response): Parse untagged ID response.
28799         * nnimap.el (nnimap-id): New variable.
28800         (nnimap-open-connection): Use it.
28801
28802 2003-12-28  Simon Josefsson  <jas@extundo.com>
28803
28804         * gnus-score.el (gnus-score-edit-all-score): New.
28805         * gnus-group.el (gnus-group-score-map): Bind it to W e.
28806
28807 2004-01-04  Simon Josefsson  <jas@extundo.com>
28808
28809         * password.el: Add.
28810
28811 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
28812
28813         * dns.el (dns-query-types): Fix typo.
28814         (dns-query-types): New function.
28815         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
28816         PTR and SOA replies, see RFC 1035.
28817
28818 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28819
28820         * gnus.el (gnus-logo-color-style): Change colors to `no'.
28821
28822         * Move to Changelog.2.
28823
28824 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28825
28826         * gnus.el (gnus-version-number): Bump version.
28827
28828 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
28829
28830         * gnus.el: No Gnus v0.1 is released.
28831
28832 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
28833
28834         * gnus.el: No Gnus v0.0 is released.
28835
28836 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28837
28838         * gnus.el (gnus-version-number): Bump.
28839         (gnus-version): No.
28840
28841 See ChangeLog.2 for earlier changes.
28842
28843   Copyright (C) 2004-2015 Free Software Foundation, Inc.
28844
28845   This file is part of GNU Emacs.
28846
28847   GNU Emacs is free software: you can redistribute it and/or modify
28848   it under the terms of the GNU General Public License as published by
28849   the Free Software Foundation, either version 3 of the License, or
28850   (at your option) any later version.
28851
28852   GNU Emacs is distributed in the hope that it will be useful,
28853   but WITHOUT ANY WARRANTY; without even the implied warranty of
28854   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28855   GNU General Public License for more details.
28856
28857   You should have received a copy of the GNU General Public License
28858   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
28859
28860 ;; Local Variables:
28861 ;; coding: utf-8
28862 ;; fill-column: 79
28863 ;; add-log-time-zone-rule: t
28864 ;; End: